From 98d51001719fe1216a091a6dcb85617db5328bf2 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Tue, 28 Sep 2021 13:03:19 +0200 Subject: [PATCH 01/21] Add proto DeepVertex like inputs --- DeepNtuplizer/bin/mergeSamples.cc | 3 +- DeepNtuplizer/bin/mergeSamples_parallel.cc | 2 + DeepNtuplizer/bin/printBranches.cc | 2 + DeepNtuplizer/interface/ntuple_GraphB.h | 30 + DeepNtuplizer/plugins/DeepNtuplizer.cc | 7 +- DeepNtuplizer/production/DeepNtuplizer.py | 4 +- .../production/DeepVertexing_campaign.cfg | 18 + DeepNtuplizer/production/samples_phase2.cfg | 12 +- DeepNtuplizer/scripts/jobSub.py | 4 +- DeepNtuplizer/src/mergeDescriptor.cc | 2 +- DeepNtuplizer/src/ntuple_GraphB.cc | 527 ++++++++++++++++-- 11 files changed, 554 insertions(+), 57 deletions(-) create mode 100644 DeepNtuplizer/production/DeepVertexing_campaign.cfg diff --git a/DeepNtuplizer/bin/mergeSamples.cc b/DeepNtuplizer/bin/mergeSamples.cc index 574d07a05ad..3749d7155e7 100644 --- a/DeepNtuplizer/bin/mergeSamples.cc +++ b/DeepNtuplizer/bin/mergeSamples.cc @@ -40,6 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" #include #include @@ -99,7 +100,7 @@ int main(int argc, char *argv[]){ branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - + branchinfos.push_back(new ntuple_GraphB()); //simple opt parsing diff --git a/DeepNtuplizer/bin/mergeSamples_parallel.cc b/DeepNtuplizer/bin/mergeSamples_parallel.cc index d8d400b005a..ac5ed5e9aa7 100644 --- a/DeepNtuplizer/bin/mergeSamples_parallel.cc +++ b/DeepNtuplizer/bin/mergeSamples_parallel.cc @@ -40,6 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_FatJetInfo.h" #include @@ -123,6 +124,7 @@ std::vector createChains(const std::vector >& inf branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); + branchinfos.push_back(new ntuple_GraphB()); branchinfos.push_back(new ntuple_FatJetInfo()); std::vector chains; diff --git a/DeepNtuplizer/bin/printBranches.cc b/DeepNtuplizer/bin/printBranches.cc index 1b5a72072a2..80ada5b46e4 100644 --- a/DeepNtuplizer/bin/printBranches.cc +++ b/DeepNtuplizer/bin/printBranches.cc @@ -6,6 +6,7 @@ #include "../interface/ntuple_pfCands.h" #include "../interface/ntuple_FatJetInfo.h" #include "../interface/ntuple_DeepVertex.h" +#include "../interface/ntuple_GraphB.h" #include "TFile.h" #include #include "TH1F.h" @@ -25,6 +26,7 @@ int main(int argc, char *argv[]) { branchinfos.push_back(new ntuple_pfCands()); // branchinfos.push_back(new ntuple_FatJetInfo()); // branchinfos.push_back(new ntuple_DeepVertex()); + branchinfos.push_back(new ntuple_GraphB()); if (argc < 3) return -1; diff --git a/DeepNtuplizer/interface/ntuple_GraphB.h b/DeepNtuplizer/interface/ntuple_GraphB.h index 36a916b662d..966c1d75327 100644 --- a/DeepNtuplizer/interface/ntuple_GraphB.h +++ b/DeepNtuplizer/interface/ntuple_GraphB.h @@ -40,16 +40,45 @@ class ntuple_GraphB: public ntuple_content{ private: // seed candidates + float jetradius_; + float min_candidate_pt_ = -1; + + unsigned int n_Cpfcand_; + float nCpfcand_; + unsigned int n_Npfcand_; + float nNpfcand_; + static constexpr size_t max_gtracks=100; unsigned int n_gtracks=0; + unsigned int n_match10=0; + unsigned int n_match20=0; + unsigned int n_match30=0; + unsigned int n_match40=0; + unsigned int n_match50=0; + + unsigned int n_gen_match10=0; + unsigned int n_gen_match20=0; + unsigned int n_gen_match30=0; + unsigned int n_gen_match40=0; + unsigned int n_gen_match50=0; + float nGtracks=0; + float n_daughters=0; + float n_gen_daughters=0; + float n_gen_constit=0; + float gtrack_isMatched10[max_gtracks]; + float gtrack_isMatched20[max_gtracks]; + float gtrack_isMatched30[max_gtracks]; + float gtrack_isMatched40[max_gtracks]; + float gtrack_isMatched50[max_gtracks]; float gtrack_pt[max_gtracks]; float gtrack_eta[max_gtracks]; float gtrack_phi[max_gtracks]; float gtrack_mass[max_gtracks]; float gtrack_dR[max_gtracks]; + float gtrack_dist_neigh[max_gtracks]; float gtrack_dz[max_gtracks]; float gtrack_dxy[max_gtracks]; float gtrack_3D_ip[max_gtracks]; @@ -88,6 +117,7 @@ class ntuple_GraphB: public ntuple_content{ bool m_computeProbabilities=1; unsigned long long m_calibrationCacheId2D; unsigned long long m_calibrationCacheId3D; + float mindrsvpfcand(const pat::PackedCandidate* pfcand); }; diff --git a/DeepNtuplizer/plugins/DeepNtuplizer.cc b/DeepNtuplizer/plugins/DeepNtuplizer.cc index 761bd99e7ca..80ef68eaf43 100644 --- a/DeepNtuplizer/plugins/DeepNtuplizer.cc +++ b/DeepNtuplizer/plugins/DeepNtuplizer.cc @@ -156,9 +156,10 @@ DeepNtuplizer::DeepNtuplizer(const edm::ParameterSet& iConfig): } */ - //ntuple_GraphB* deepvertexmodule=new ntuple_GraphB(jetR); - //deepvertexmodule->setCandidatesToken(consumes >(iConfig.getParameter("candidates"))); - //addModule(deepvertexmodule); + + ntuple_GraphB* deepvertexmodule=new ntuple_GraphB(jetR); + deepvertexmodule->setCandidatesToken(consumes >(iConfig.getParameter("candidates"))); + addModule(deepvertexmodule, "DeepVertextuple"); ntuple_JetInfo* jetinfo=new ntuple_JetInfo(); diff --git a/DeepNtuplizer/production/DeepNtuplizer.py b/DeepNtuplizer/production/DeepNtuplizer.py index a4729d6b610..3b4c24cca1e 100644 --- a/DeepNtuplizer/production/DeepNtuplizer.py +++ b/DeepNtuplizer/production/DeepNtuplizer.py @@ -9,11 +9,11 @@ options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',-1,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('maxEvents',15001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 100, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") diff --git a/DeepNtuplizer/production/DeepVertexing_campaign.cfg b/DeepNtuplizer/production/DeepVertexing_campaign.cfg new file mode 100644 index 00000000000..e8cb9253563 --- /dev/null +++ b/DeepNtuplizer/production/DeepVertexing_campaign.cfg @@ -0,0 +1,18 @@ + + +14 /TTToHadronic_TuneCP5_13TeV-powheg-pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_ttbar_had_puppi_102X + +2 /QCD_Pt_15to30_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15_ext1-v2/MINIAODSIM ntuple_qcd_15_30_puppi_102X +2 /QCD_Pt_30to50_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_30_50_puppi_102X +2 /QCD_Pt_50to80_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_50_80_puppi_102X +2 /QCD_Pt_80to120_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_80_120_puppi_102X +2 /QCD_Pt_120to170_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_120_170_puppi_102X +2 /QCD_Pt_170to300_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_170_300_puppi_102X +2 /QCD_Pt_300to470_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_300_470_puppi_102X +2 /QCD_Pt_470to600_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_470_600_puppi_102X +2 /QCD_Pt_600to800_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_600_800_puppi_102X +2 /QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15_ext1-v2/MINIAODSIM ntuple_qcd_800_1000_puppi_102X +2 /QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_1000_1400_puppi_102X +2 /QCD_Pt_1400to1800_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_1400_1800_puppi_102X +2 /QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_1800_2400_puppi_102X +2 /QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8/RunIIAutumn18MiniAOD-102X_upgrade2018_realistic_v15-v1/MINIAODSIM ntuple_qcd_2400_3200_puppi_102X \ No newline at end of file diff --git a/DeepNtuplizer/production/samples_phase2.cfg b/DeepNtuplizer/production/samples_phase2.cfg index 10c7708e18d..bc9ba01e103 100644 --- a/DeepNtuplizer/production/samples_phase2.cfg +++ b/DeepNtuplizer/production/samples_phase2.cfg @@ -1,7 +1,7 @@ -10000 /TT_TuneCUETP8M2T4_14TeV-powheg-pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2_ext1-v1/MINIAODSIM ntuple_tt_phase2_v2_ext1-v1 phase2=True -10000 /TT_TuneCUETP8M2T4_14TeV-powheg-pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v3/MINIAODSIM ntuple_tt_phase2_v2-v3 phase2=True -10000 /TT_TuneCUETP8M2T4_14TeV-powheg-pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v1/MINIAODSIM ntuple_tt_phase2_v2-v1 phase2=True -10000 /QCD_Flat_Pt-15to7000_TuneCUETP8M1_14TeV_pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v1/MINIAODSIM ntuple_qcd_15_7000_phase2_v2-v1 phase2=True -10000 /QCD_Flat_Pt-15to7000_TuneCUETP8M1_14TeV_pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v2/MINIAODSIM ntuple_qcd_15_7000_phase2_v2-v2 phase2=True -10000 /QCD_Flat_Pt-15to7000_TuneCUETP8M1_14TeV_pythia8/PhaseIITDRFall17MiniAOD-PU200FEVT_93X_upgrade2023_realistic_v2_ext1-v1/MINIAODSIM ntuple_qcd_15_7000_phase2_v2_ext-v1 phase2=True +3 /TT_TuneCUETP8M2T4_14TeV-powheg-pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2_ext1-v1/MINIAODSIM ntuple_tt_phase2_v2_ext1-v1 phase2=True +3 /TT_TuneCUETP8M2T4_14TeV-powheg-pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v3/MINIAODSIM ntuple_tt_phase2_v2-v3 phase2=True +3 /TT_TuneCUETP8M2T4_14TeV-powheg-pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v1/MINIAODSIM ntuple_tt_phase2_v2-v1 phase2=True +3 /QCD_Flat_Pt-15to7000_TuneCUETP8M1_14TeV_pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v1/MINIAODSIM ntuple_qcd_15_7000_phase2_v2-v1 phase2=True +3 /QCD_Flat_Pt-15to7000_TuneCUETP8M1_14TeV_pythia8/PhaseIITDRFall17MiniAOD-PU200_93X_upgrade2023_realistic_v2-v2/MINIAODSIM ntuple_qcd_15_7000_phase2_v2-v2 phase2=True +3 /QCD_Flat_Pt-15to7000_TuneCUETP8M1_14TeV_pythia8/PhaseIITDRFall17MiniAOD-PU200FEVT_93X_upgrade2023_realistic_v2_ext1-v1/MINIAODSIM ntuple_qcd_15_7000_phase2_v2_ext-v1 phase2=True diff --git a/DeepNtuplizer/scripts/jobSub.py b/DeepNtuplizer/scripts/jobSub.py index abedd1dd942..d8f012e3866 100755 --- a/DeepNtuplizer/scripts/jobSub.py +++ b/DeepNtuplizer/scripts/jobSub.py @@ -38,7 +38,9 @@ def doSub(): maxSize=args.maxsize #eosGlobalOutDir='/eos/user/'+os.environ['USER'][0]+'/'+os.environ['USER']+'/DeepNtuples' - eosGlobalOutDir='/eos/cms/store/cmst3/group/dehep/DeepJet/NTuples/' + #eosGlobalOutDir='/eos/cms/store/cmst3/group/dehep/DeepJet/NTuples/' + eosGlobalOutDir='/afs/cern.ch/work/a/ademoor/NTuples_DV/' + if len(args.outpath): eosGlobalOutDir=args.outpath if not os.path.isdir(eosGlobalOutDir): diff --git a/DeepNtuplizer/src/mergeDescriptor.cc b/DeepNtuplizer/src/mergeDescriptor.cc index 61f47edbcb5..2d5cb278f89 100644 --- a/DeepNtuplizer/src/mergeDescriptor.cc +++ b/DeepNtuplizer/src/mergeDescriptor.cc @@ -134,7 +134,7 @@ std::vector mergeDescriptor::createChains( branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); //branchinfos.push_back(new ntuple_DeepVertex()); - //branchinfos.push_back(new ntuple_GraphB()); + branchinfos.push_back(new ntuple_GraphB()); std::vector chains; for(size_t i=0;i & build): + builder(build), + trackMomentum_(0), + trackEta_(0), + trackEtaRel_(0), + trackPtRel_(0), + trackPPar_(0), + trackDeltaR_(0), + trackPtRatio_(0), + trackPParRatio_(0), + trackSip2dVal_(0), + trackSip2dSig_(0), + trackSip3dVal_(0), + trackSip3dSig_(0), + trackJetDistVal_(0), + trackJetDistSig_(0), + trackImpactPointState_(0) +{ + + +} + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + TVector3 trackMom3( + PackedCandidate_->momentum().x(), + PackedCandidate_->momentum().y(), + PackedCandidate_->momentum().z() + ); + trackMomentum_=PackedCandidate_->p(); + trackEta_= PackedCandidate_->eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); + trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); + trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); + trackSip2dVal_=0.; + trackSip2dSig_=0.; + trackSip3dVal_=0.; + trackSip3dSig_=0.; + trackJetDistVal_=0.; + trackJetDistSig_=0.; + //trackImpactPointState_=PackedCandidate_->impactPointState(); + return; + } + + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; + Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; + math::XYZVector trackMom = PseudoTrack.momentum(); + double trackMag = std::sqrt(trackMom.Mag2()); + TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + + + trackMomentum_=std::sqrt(trackMom.Mag2()); + trackEta_= trackMom.Eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(trackMom); + trackDeltaR_=reco::deltaR(trackMom, jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; + trackPParRatio_=jetDir.Dot(trackMom) / trackMag; + trackSip2dVal_=(meas_ip2d.value()); + + trackSip2dSig_=(meas_ip2d.significance()); + trackSip3dVal_=(meas_ip3d.value()); + + + trackSip3dSig_=meas_ip3d.significance(); + trackJetDistVal_= jetdist.value(); + trackJetDistSig_= jetdist.significance(); + trackImpactPointState_=transientTrack.impactPointState(); + + } + + const float& getTrackDeltaR() const {return trackDeltaR_;} + const float& getTrackEta() const {return trackEta_;} + const float& getTrackEtaRel() const {return trackEtaRel_;} + const float& getTrackJetDistSig() const {return trackJetDistSig_;} + const float& getTrackJetDistVal() const {return trackJetDistVal_;} + const float& getTrackMomentum() const {return trackMomentum_;} + const float& getTrackPPar() const {return trackPPar_;} + const float& getTrackPParRatio() const {return trackPParRatio_;} + const float& getTrackPtRatio() const {return trackPtRatio_;} + const float& getTrackPtRel() const {return trackPtRel_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + const float& getTrackSip2dVal() const {return trackSip2dVal_;} + const float& getTrackSip3dSig() const {return trackSip3dSig_;} + const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const TrajectoryStateOnSurface& getImpactPointState() const {return trackImpactPointState_;} + +private: + + edm::ESHandle& builder; + + float trackMomentum_; + float trackEta_; + float trackEtaRel_; + float trackPtRel_; + float trackPPar_; + float trackDeltaR_; + float trackPtRatio_; + float trackPParRatio_; + float trackSip2dVal_; + float trackSip2dSig_; + float trackSip3dVal_; + float trackSip3dSig_; + + float trackJetDistVal_; + float trackJetDistSig_; + TrajectoryStateOnSurface trackImpactPointState_; + +}; ntuple_GraphB::ntuple_GraphB(double jetR):ntuple_content(jetR){} ntuple_GraphB::~ntuple_GraphB(){} -void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){} +void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){ + min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); +} void ntuple_GraphB::initBranches(TTree* tree){ addBranch(tree,"n_gtracks",&n_gtracks, "n_gtracks/i"); + addBranch(tree,"n_match10",&n_match10, "n_match10/i"); + addBranch(tree,"n_match20",&n_match20, "n_match20/i"); + addBranch(tree,"n_match30",&n_match30, "n_match30/i"); + addBranch(tree,"n_match40",&n_match40, "n_match40/i"); + addBranch(tree,"n_match50",&n_match50, "n_match50/i"); + + addBranch(tree,"n_gen_match10",&n_gen_match10, "n_gen_match10/i"); + addBranch(tree,"n_gen_match20",&n_gen_match20, "n_gen_match20/i"); + addBranch(tree,"n_gen_match30",&n_gen_match30, "n_gen_match30/i"); + addBranch(tree,"n_gen_match40",&n_gen_match40, "n_gen_match40/i"); + addBranch(tree,"n_gen_match50",&n_gen_match50, "n_gen_match50/i"); + addBranch(tree,"nGtracks",&nGtracks, "nGtracks/f"); + addBranch(tree,"n_daughters",&n_daughters, "n_daughters/f"); + addBranch(tree,"n_gen_daughters",&n_gen_daughters, "n_gen_daughters/f"); + addBranch(tree,"n_gen_constit",&n_gen_constit, "n_gen_constit/f"); + + addBranch(tree,"gtrack_isMatched10",>rack_isMatched10, "gtrack_isMatched10[n_gtracks]/f"); + addBranch(tree,"gtrack_isMatched20",>rack_isMatched20, "gtrack_isMatched20[n_gtracks]/f"); + addBranch(tree,"gtrack_isMatched30",>rack_isMatched30, "gtrack_isMatched30[n_gtracks]/f"); + addBranch(tree,"gtrack_isMatched40",>rack_isMatched40, "gtrack_isMatched40[n_gtracks]/f"); + addBranch(tree,"gtrack_isMatched50",>rack_isMatched50, "gtrack_isMatched50[n_gtracks]/f"); addBranch(tree,"gtrack_pt",>rack_pt, "gtrack_pt[n_gtracks]/f"); addBranch(tree,"gtrack_eta",>rack_eta, "gtrack_eta[n_gtracks]/f"); addBranch(tree,"gtrack_phi",>rack_phi, "gtrack_phi[n_gtracks]/f"); @@ -45,6 +194,7 @@ void ntuple_GraphB::initBranches(TTree* tree){ addBranch(tree,"gtrack_2D_ip", >rack_2D_ip, "gtrack_2D_ip[n_gtracks]/f"); addBranch(tree,"gtrack_2D_sip", >rack_2D_sip, "gtrack_2D_sip[n_gtracks]/f"); addBranch(tree,"gtrack_dR", >rack_dR, "gtrack_dR[n_gtracks]/f"); + addBranch(tree,"gtrack_dist_neigh", >rack_dist_neigh, "gtrack_dist_neigh[n_gtracks]/f"); addBranch(tree,"gtrack_3D_TrackProbability", >rack_3D_TrackProbability, "gtrack_3D_TrackProbability[n_gtracks]/f"); addBranch(tree,"gtrack_2D_TrackProbability", >rack_2D_TrackProbability, "gtrack_2D_TrackProbability[n_gtracks]/f"); @@ -62,9 +212,10 @@ void ntuple_GraphB::initBranches(TTree* tree){ } -void ntuple_GraphB::readEvent(const edm::Event& iEvent) -{ +void ntuple_GraphB::readEvent(const edm::Event& iEvent){ iEvent.getByToken(CandidateToken, tracks); + n_Npfcand_=0; + n_Cpfcand_=0; } @@ -86,6 +237,7 @@ void ntuple_GraphB::readSetup(const edm::EventSetup& iSetup){ iSetup.get().get(calib2DHandle); ESHandle calib3DHandle; iSetup.get().get(calib3DHandle); + iSetup.get().get("TransientTrackBuilder", builder); const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); @@ -139,20 +291,44 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con const reco::Vertex &pv = vertices()->at(0); GlobalPoint pvp(pv.x(),pv.y(),pv.z()); - std::vector selectedTracks; std::vector masses; - + std::vector raw_gen_constituents; + std::vector raw_cpf_constituents; + std::vector raw_part_constituents; + float number_of_daughters = -1.0; + float number_of_gen_daughters = -1.0; + //float number_of_cpf_gen = -1.0; + float number_of_part_gen = -1.0; + size_t num_match10 = 0.0; + size_t num_match20 = 0.0; + size_t num_match30 = 0.0; + size_t num_match40 = 0.0; + size_t num_match50 = 0.0; + + size_t num_gen_match10 = 0.0; + size_t num_gen_match20 = 0.0; + size_t num_gen_match30 = 0.0; + size_t num_gen_match40 = 0.0; + size_t num_gen_match50 = 0.0; - for(size_t k = 0; ksize(); ++k) { - if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { - selectedTracks.push_back(builder->build(tracks->ptrAt(k))); - masses.push_back(tracks->ptrAt(k)->mass()); - } - } - double jet_radius = jetR(); + + math::XYZVector jetDir = jet.momentum().Unit(); GlobalVector direction(jet.px(), jet.py(), jet.pz()); + std::vector > sortedcharged; + std::vector sortedchargedindices; + + const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); + //const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); + + for(size_t k = 0; ksize(); ++k) { + if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { + selectedTracks.push_back(builder->build(tracks->ptrAt(k))); + masses.push_back(tracks->ptrAt(k)->mass()); + } + } + std::vector > sorted_tracks; for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ float angular_distance=reco::deltaR(jet,it->track()); @@ -165,55 +341,289 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con sorted_track_indices=sorting::invertSortingVector(sorted_tracks); //n_gtracks = std::min(sorted_tracks.size(),max_gtracks); //nGtracks = n_gtracks; + + + TrackInfoBuilder trackinfo(builder); + //create collection of cpf/npf for the seeding + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate){ + if(PackedCandidate->pt() < min_candidate_pt_) continue; + if(PackedCandidate->charge()!=0){ + trackinfo.buildTrackInfo(PackedCandidate,jetDir,direction,pv); + sortedcharged.push_back(sorting::sortingClass + (i, trackinfo.getTrackSip2dSig(), + -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); + } + } + } + std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); + long unsigned int max_cpf = 30; + n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); + sortedchargedindices = sorting::invertSortingVector(sortedcharged); + + //Count the number of gen_daughters and fill the raw_constituent + if (jet.genJet()){ + number_of_gen_daughters = jet.genJet()->numberOfDaughters(); + number_of_daughters = jet.numberOfDaughters(); + for (size_t i = 0; i < number_of_gen_daughters; ++i){ + const reco::Candidate* constit = jet.daughter(i); + raw_gen_constituents.push_back(constit); + } + } + + for (size_t j = 0; j < jet.numberOfDaughters(); j++){ + const reco::Candidate* constit = jet.daughter(j); + if(constit->charge() != 0){ + raw_cpf_constituents.push_back(constit); + } + } + //number_of_cpf_gen = raw_cpf_constituents.size(); + + /*if(jet.genJet()){ + for(size_t m = 0; m < jet.numberOfDaughters(); m++){ + bool gen_10 = false; + bool gen_20 = false; + bool gen_30 = false; + bool gen_40 = false; + bool gen_50 = false; + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(m)); + for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ + if((jet.genJet()->daughter(n)->charge() != 0) && (jet.daughter(m)->charge() != 0) && (PackedCandidate->hasTrackDetails())){ + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.10){ + gen_10 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.20){ + gen_20 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.30){ + gen_30 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.40){ + gen_40 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.50){ + gen_50 = true; + } + } + } + if(gen_10){ + num_gen_match10++; + } + if(gen_20){ + num_gen_match20++; + } + if(gen_30){ + num_gen_match30++; + } + if(gen_40){ + num_gen_match40++; + } + if(gen_50){ + num_gen_match50++; + } + } + }*/ + + + //Count the number of parton_daughters and fill the raw_constituent + if(jet.genParton()){ + //Prep jet-parton daughters + int keep = 1; + std::vector part_constituents; + std::vector daughters_constituents; + //int number_of_part_daughters = jet.genParton()->numberOfDaughters(); + for (size_t j = 0; j < jet.genParton()->numberOfDaughters(); ++j){ + const reco::Candidate* constit = jet.genParton()->daughter(j); + part_constituents.push_back(constit); + } + //Loop until we process all the constituents + while (keep != 0){ + keep = 0; + for (size_t k = 0; k < part_constituents.size(); ++k){ + if (part_constituents[k]->numberOfDaughters() != 0){ + keep = 1; + for (size_t m = 0; m < part_constituents[k]->numberOfDaughters(); ++m){ + daughters_constituents.push_back(part_constituents[k]->daughter(m)); + } + } + else{ + raw_part_constituents.push_back(part_constituents[k]); + } + } + part_constituents = daughters_constituents; + daughters_constituents.clear(); + } + number_of_part_gen = raw_part_constituents.size(); + } size_t counter= 0; + for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ //is the track in the jet cone? float angular_distance=reco::deltaR(jet,it->track()); //std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); bool hasNeighbour = false; bool include = false; - if (angular_distance>jet_radius) { - if(std::fabs(pvp.z()-it->track().vz())>0.1) continue; - for(std::vector::const_iterator tt = selectedTracks.begin();tt!=selectedTracks.end(); ++tt ) { - TwoTrackMinimumDistance dist; - float near_angular_distance=reco::deltaR(jet,tt->track()); - if(*tt==*it) continue; - if(near_angular_distance ip = IPTools::absoluteImpactParameter3D(*tt, pv); - if(ip.second.significance() < 1.0) continue; - if(dist.calculate(tt->impactPointState(),it->impactPointState())) { - float distance = dist.distance(); - if(distance < 0.02){ - hasNeighbour = true; + float dist_part = -0.01; + float is_matched10 = -1.0; + float is_matched20 = -1.0; + float is_matched30 = -1.0; + float is_matched40 = -1.0; + float is_matched50 = -1.0; + //matching the track with the jet radius + if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ + if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} + //matching the track with a cpf_seed of not + + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate->hasTrackDetails()){ + if(PackedCandidate->pt() < min_candidate_pt_) {continue;} + if(PackedCandidate->charge()!=0){ + const reco::Track & PseudoTrack = PackedCandidate->pseudoTrack(); + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + + TwoTrackMinimumDistance dist; + std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); + float near_angular_dist = reco::deltaR(jet,transientTrack.track()); + //std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); + //float length = 999; + //TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); + //if(closest.isValid()){ + // length = (closest.globalPosition() - pvp).mag(); + //} + if (transientTrack == *it) {continue;} + if (near_angular_dist < jet_radius){ + /*if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. + && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 + && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;}*/ + if(ip.second.significance() < 1.0) {continue;} + if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ + float distance = dist.distance(); + if(distance < 0.02){ + hasNeighbour = true; + dist_part = distance; + } + } + } } } } - } - if(hasNeighbour){ - int matched_jets = 0; - for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { - const auto& test_jet = coll->at(jet_n); - if(test_jet.pt() < 5.0){continue;} - float new_angular_distance=reco::deltaR(test_jet,it->track()); - if(new_angular_distance < jet_radius){ - matched_jets = matched_jets + 1; + if(hasNeighbour){ + int matched_jets = 0; + for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { + const auto& test_jet = coll->at(jet_n); + if(test_jet.pt() < 5.0){continue;} + float new_angular_distance=reco::deltaR(test_jet,it->track()); + if(new_angular_distance < jet_radius){ + matched_jets = matched_jets + 1; + } } + if(matched_jets != 0){continue;} + include = true; } - if(matched_jets != 0){continue;} - include = true; - } } - if(angular_distancenumberOfDaughters(); n++){ + if(jet.genJet()->daughter(n)->charge() != 0){ + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.10){ + is_gmatched10 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.20){ + is_gmatched20 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.30){ + is_gmatched30 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.40){ + is_gmatched40 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.50){ + is_gmatched50 = true; + } + } + } + if(is_gmatched10){ + num_gen_match10++; + } + if(is_gmatched20){ + num_gen_match20++; + } + if(is_gmatched30){ + num_gen_match30++; + } + if(is_gmatched40){ + num_gen_match40++; + } + if(is_gmatched50){ + num_gen_match50++; + } + } + + if(jet.genParton()){ + is_matched10 = 0; + is_matched20 = 0; + is_matched30 = 0; + is_matched40 = 0; + is_matched50 = 0; + + for(size_t n = 0; n < raw_part_constituents.size(); n++){ + if(raw_part_constituents.at(n)->charge() != 0){ + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.10){ + is_matched10 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.20){ + is_matched20 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.30){ + is_matched30 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.40){ + is_matched40 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.50){ + is_matched50 = 1.0; + } + } + } + if(is_matched10 == 1.0){ + num_match10++; + } + if(is_matched20 == 1.0){ + num_match20++; + } + if(is_matched30 == 1.0){ + num_match30++; + } + if(is_matched40 == 1.0){ + num_match40++; + } + if(is_matched50 == 1.0){ + num_match50++; + } + } + std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); if(counter >= max_gtracks){continue;} - gtrack_dR[counter] = catchInfsAndBound( reco::deltaR(jet,it->track()), -1.0,0.0,10.0); + gtrack_dR[counter] = catchInfsAndBound(reco::deltaR(jet,it->track()), -1.0,0.0,10.0); + gtrack_dist_neigh[counter] = catchInfsAndBound(dist_part, -10.0,-5.0,100.0); float length=999; if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); gtrack_jetAxisDlength[counter] = catchInfsAndBound(length,-1.0,-100.0,100.0); @@ -246,15 +656,46 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con gtrack_2D_TrackProbability[counter] = catchInfsAndBound(prob2D,-2.0,-100.0,100.0); gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); - gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); + gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); + gtrack_isMatched10[counter] = is_matched10; + gtrack_isMatched20[counter] = is_matched20; + gtrack_isMatched30[counter] = is_matched30; + gtrack_isMatched40[counter] = is_matched40; + gtrack_isMatched50[counter] = is_matched50; counter++; } } n_gtracks = counter; nGtracks = n_gtracks; - + n_daughters = number_of_daughters; + n_gen_daughters = number_of_gen_daughters; + n_gen_constit = number_of_part_gen; + n_match10 = num_match10; + n_match20 = num_match20; + n_match30 = num_match30; + n_match40 = num_match40; + n_match50 = num_match50; + + n_gen_match10 = num_gen_match10; + n_gen_match20 = num_gen_match20; + n_gen_match30 = num_gen_match30; + n_gen_match40 = num_gen_match40; + n_gen_match50 = num_gen_match50; + masses.clear(); return true; } +float ntuple_GraphB::mindrsvpfcand(const pat::PackedCandidate* pfcand) { + + float mindr_ = jetradius_; + for (unsigned int i=0; isize(); ++i) { + if(!pfcand) continue; + //if(!svs.at(i)) continue; + float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); + if (tempdr_ Date: Thu, 30 Sep 2021 08:59:32 +0200 Subject: [PATCH 02/21] Cleaning the code --- DeepNtuplizer/interface/ntuple_GraphB.cc | 453 ++++++++++++++++ DeepNtuplizer/interface/ntuple_GraphB.h | 25 - DeepNtuplizer/src/#ntuple_GraphB.cc# | 661 +++++++++++++++++++++++ DeepNtuplizer/src/ntuple_GraphB.cc | 131 +---- 4 files changed, 1117 insertions(+), 153 deletions(-) create mode 100644 DeepNtuplizer/interface/ntuple_GraphB.cc create mode 100644 DeepNtuplizer/src/#ntuple_GraphB.cc# diff --git a/DeepNtuplizer/interface/ntuple_GraphB.cc b/DeepNtuplizer/interface/ntuple_GraphB.cc new file mode 100644 index 00000000000..917fb0bcbe7 --- /dev/null +++ b/DeepNtuplizer/interface/ntuple_GraphB.cc @@ -0,0 +1,453 @@ +/* + * ntuple_GraphB.cc + * + * Created on: 23 June 2017 + * Author: Seth Moortgat + + */ + + +#include "../interface/ntuple_GraphB.h" + +#include "DataFormats/GeometrySurface/interface/Line.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" +#include "TrackingTools/Records/interface/TransientTrackRecord.h" +#include "TrackingTools/IPTools/interface/IPTools.h" +#include "TrackingTools/PatternTools/interface/TwoTrackMinimumDistance.h" +#include "../interface/sorting_modules.h" +#include "CondFormats/BTauObjects/interface/TrackProbabilityCalibration.h" +#include "CondFormats/DataRecord/interface/BTagTrackProbability2DRcd.h" +#include "CondFormats/DataRecord/interface/BTagTrackProbability3DRcd.h" +#include "FWCore/Framework/interface/EventSetupRecord.h" +#include "FWCore/Framework/interface/EventSetupRecordImplementation.h" +#include "FWCore/Framework/interface/EventSetupRecordKey.h" +#include "RecoVertex/VertexTools/interface/VertexDistance3D.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "TVector3.h" + +class TrackInfoBuilder{ +public: + TrackInfoBuilder(edm::ESHandle & build): + builder(build), + trackMomentum_(0), + trackEta_(0), + trackEtaRel_(0), + trackPtRel_(0), + trackPPar_(0), + trackDeltaR_(0), + trackPtRatio_(0), + trackPParRatio_(0), + trackSip2dVal_(0), + trackSip2dSig_(0), + trackSip3dVal_(0), + trackSip3dSig_(0), + trackJetDistVal_(0), + trackJetDistSig_(0), + trackImpactPointState_(0) +{ + + +} + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + TVector3 trackMom3( + PackedCandidate_->momentum().x(), + PackedCandidate_->momentum().y(), + PackedCandidate_->momentum().z() + ); + trackMomentum_=PackedCandidate_->p(); + trackEta_= PackedCandidate_->eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); + trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); + trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); + trackSip2dVal_=0.; + trackSip2dSig_=0.; + trackSip3dVal_=0.; + trackSip3dSig_=0.; + trackJetDistVal_=0.; + trackJetDistSig_=0.; + //trackImpactPointState_=PackedCandidate_->impactPointState(); + return; + } + + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; + Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; + math::XYZVector trackMom = PseudoTrack.momentum(); + double trackMag = std::sqrt(trackMom.Mag2()); + TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + + + trackMomentum_=std::sqrt(trackMom.Mag2()); + trackEta_= trackMom.Eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(trackMom); + trackDeltaR_=reco::deltaR(trackMom, jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; + trackPParRatio_=jetDir.Dot(trackMom) / trackMag; + trackSip2dVal_=(meas_ip2d.value()); + + trackSip2dSig_=(meas_ip2d.significance()); + trackSip3dVal_=(meas_ip3d.value()); + + + trackSip3dSig_=meas_ip3d.significance(); + trackJetDistVal_= jetdist.value(); + trackJetDistSig_= jetdist.significance(); + trackImpactPointState_=transientTrack.impactPointState(); + + } + + const float& getTrackDeltaR() const {return trackDeltaR_;} + const float& getTrackEta() const {return trackEta_;} + const float& getTrackEtaRel() const {return trackEtaRel_;} + const float& getTrackJetDistSig() const {return trackJetDistSig_;} + const float& getTrackJetDistVal() const {return trackJetDistVal_;} + const float& getTrackMomentum() const {return trackMomentum_;} + const float& getTrackPPar() const {return trackPPar_;} + const float& getTrackPParRatio() const {return trackPParRatio_;} + const float& getTrackPtRatio() const {return trackPtRatio_;} + const float& getTrackPtRel() const {return trackPtRel_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + const float& getTrackSip2dVal() const {return trackSip2dVal_;} + const float& getTrackSip3dSig() const {return trackSip3dSig_;} + const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const TrajectoryStateOnSurface& getImpactPointState() const {return trackImpactPointState_;} + +private: + + edm::ESHandle& builder; + + float trackMomentum_; + float trackEta_; + float trackEtaRel_; + float trackPtRel_; + float trackPPar_; + float trackDeltaR_; + float trackPtRatio_; + float trackPParRatio_; + float trackSip2dVal_; + float trackSip2dSig_; + float trackSip3dVal_; + float trackSip3dSig_; + + float trackJetDistVal_; + float trackJetDistSig_; + TrajectoryStateOnSurface trackImpactPointState_; + +}; + +ntuple_GraphB::ntuple_GraphB(double jetR):ntuple_content(jetR){} + +ntuple_GraphB::~ntuple_GraphB(){} + +void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){ + min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); +} + +void ntuple_GraphB::initBranches(TTree* tree){ + + addBranch(tree,"n_gtracks",&n_gtracks, "n_gtracks/i"); + addBranch(tree,"nGtracks",&nGtracks, "nGtracks/f"); + addBranch(tree,"gtrack_pt",>rack_pt, "gtrack_pt[n_gtracks]/f"); + addBranch(tree,"gtrack_eta",>rack_eta, "gtrack_eta[n_gtracks]/f"); + addBranch(tree,"gtrack_phi",>rack_phi, "gtrack_phi[n_gtracks]/f"); + addBranch(tree,"gtrack_mass",>rack_mass, "gtrack_mass[n_gtracks]/f"); + + addBranch(tree,"gtrack_dz", >rack_dz, "gtrack_dz[n_gtracks]/f"); + addBranch(tree,"gtrack_dxy", >rack_dxy, "gtrack_dxy[n_gtracks]/f"); + addBranch(tree,"gtrack_3D_ip", >rack_3D_ip, "gtrack_3D_ip[n_gtracks]/f"); + addBranch(tree,"gtrack_3D_sip", >rack_3D_sip, "gtrack_3D_sip[n_gtracks]/f"); + addBranch(tree,"gtrack_2D_ip", >rack_2D_ip, "gtrack_2D_ip[n_gtracks]/f"); + addBranch(tree,"gtrack_2D_sip", >rack_2D_sip, "gtrack_2D_sip[n_gtracks]/f"); + addBranch(tree,"gtrack_dR", >rack_dR, "gtrack_dR[n_gtracks]/f"); + addBranch(tree,"gtrack_dist_neigh", >rack_dist_neigh, "gtrack_dist_neigh[n_gtracks]/f"); + + addBranch(tree,"gtrack_3D_TrackProbability", >rack_3D_TrackProbability, "gtrack_3D_TrackProbability[n_gtracks]/f"); + addBranch(tree,"gtrack_2D_TrackProbability", >rack_2D_TrackProbability, "gtrack_2D_TrackProbability[n_gtracks]/f"); + + addBranch(tree,"gtrack_chi2reduced",>rack_chi2reduced, "gtrack_chi2reduced[n_gtracks]/f"); + addBranch(tree,"gtrack_nPixelHits",>rack_nPixelHits, "gtrack_nPixelHits[n_gtracks]/f"); + addBranch(tree,"gtrack_nHits",>rack_nHits, "gtrack_nHits[n_gtracks]/f"); + addBranch(tree,"gtrack_jetAxisDistance",>rack_jetAxisDistance, "gtrack_jetAxisDistance[n_gtracks]/f"); + addBranch(tree,"gtrack_jetAxisDlength",>rack_jetAxisDlength, "gtrack_jetAxisDlength[n_gtracks]/f"); + addBranch(tree,"gtrack_PCAtrackFromPV",>rack_PCAtrackFromPV, "gtrack_PCAtrackFromPV[n_gtracks]/f"); + addBranch(tree,"gtrack_dotProdTrack",>rack_dotProdTrack, "gtrack_dotProdTrack[n_gtracks]/f"); + addBranch(tree,"gtrack_dotProdTrack2D",>rack_dotProdTrack2D, "gtrack_dotProdTrack2D[n_gtracks]/f"); + +} + +void ntuple_GraphB::readEvent(const edm::Event& iEvent){ + iEvent.getByToken(CandidateToken, tracks); + n_Npfcand_=0; + n_Cpfcand_=0; +} + +void ntuple_GraphB::readSetup(const edm::EventSetup& iSetup){ + + //this part was to be in checkEventSetup, but idk how to call it + using namespace edm; + using namespace edm::eventsetup; + + const EventSetupRecord & re2D= iSetup.get(); + const EventSetupRecord & re3D= iSetup.get(); + unsigned long long cacheId2D= re2D.cacheIdentifier(); + unsigned long long cacheId3D= re3D.cacheIdentifier(); + + if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed + { + //iSetup.get().get(calib); + ESHandle calib2DHandle; + iSetup.get().get(calib2DHandle); + ESHandle calib3DHandle; + iSetup.get().get(calib3DHandle); + iSetup.get().get("TransientTrackBuilder", builder); + + const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); + const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); + + m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); + + } + + m_calibrationCacheId3D=cacheId3D; + m_calibrationCacheId2D=cacheId2D; + + //readEvent only line + iSetup.get().get("TransientTrackBuilder", builder); + +} + +void ntuple_GraphB::checkEventSetup(const edm::EventSetup & iSetup) { + + using namespace edm; + using namespace edm::eventsetup; + + const EventSetupRecord & re2D= iSetup.get(); + const EventSetupRecord & re3D= iSetup.get(); + unsigned long long cacheId2D= re2D.cacheIdentifier(); + unsigned long long cacheId3D= re3D.cacheIdentifier(); + + if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed + { + //iSetup.get().get(calib); + ESHandle calib2DHandle; + iSetup.get().get(calib2DHandle); + ESHandle calib3DHandle; + iSetup.get().get(calib3DHandle); + + const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); + const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); + + m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); + + } + + m_calibrationCacheId3D=cacheId3D; + m_calibrationCacheId2D=cacheId2D; + +} + + +bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ + + // pv info + const reco::Vertex &pv = vertices()->at(0); + GlobalPoint pvp(pv.x(),pv.y(),pv.z()); + + std::vector selectedTracks; + std::vector masses; + + double jet_radius = jetR(); + + math::XYZVector jetDir = jet.momentum().Unit(); + GlobalVector direction(jet.px(), jet.py(), jet.pz()); + std::vector > sortedcharged; + std::vector sortedchargedindices; + + const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); + //const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); + + for(size_t k = 0; ksize(); ++k) { + if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { + selectedTracks.push_back(builder->build(tracks->ptrAt(k))); + masses.push_back(tracks->ptrAt(k)->mass()); + } + } + + std::vector > sorted_tracks; + for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ + float angular_distance=reco::deltaR(jet,it->track()); + sorted_tracks.push_back(sorting::sortingClass + (it-selectedTracks.begin(), -angular_distance, + -1, -1)); + } + std::sort(sorted_tracks.begin(),sorted_tracks.end(),sorting::sortingClass::compareByABCInv); + std::vector sorted_track_indices; + sorted_track_indices=sorting::invertSortingVector(sorted_tracks); + //n_gtracks = std::min(sorted_tracks.size(),max_gtracks); + //nGtracks = n_gtracks; + + + TrackInfoBuilder trackinfo(builder); + //create collection of cpf/npf for the seeding + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate){ + if(PackedCandidate->pt() < min_candidate_pt_) continue; + if(PackedCandidate->charge()!=0){ + trackinfo.buildTrackInfo(PackedCandidate,jetDir,direction,pv); + sortedcharged.push_back(sorting::sortingClass + (i, trackinfo.getTrackSip2dSig(), + -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); + } + } + } + std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); + long unsigned int max_cpf = 30; + n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); + sortedchargedindices = sorting::invertSortingVector(sortedcharged); + + size_t counter= 0; + + for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ + //is the track in the jet cone? + float angular_distance=reco::deltaR(jet,it->track()); + //std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); + bool hasNeighbour = false; + bool include = false; + float dist_part = -0.01; + + //matching the track with the jet radius + if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ + if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} + //matching the track with a cpf_seed of not + + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate->hasTrackDetails()){ + if(PackedCandidate->pt() < min_candidate_pt_) {continue;} + if(PackedCandidate->charge()!=0){ + const reco::Track & PseudoTrack = PackedCandidate->pseudoTrack(); + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + + TwoTrackMinimumDistance dist; + std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); + float near_angular_dist = reco::deltaR(jet,transientTrack.track()); + //std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); + //float length = 999; + //TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); + //if(closest.isValid()){ + // length = (closest.globalPosition() - pvp).mag(); + //} + if (transientTrack == *it) {continue;} + if (near_angular_dist < jet_radius){ + /*if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. + && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 + && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;}*/ + if(ip.second.significance() < 1.0) {continue;} + if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ + float distance = dist.distance(); + if(distance < 0.02){ + hasNeighbour = true; + dist_part = distance; + } + } + } + } + } + } + if(hasNeighbour){ + int matched_jets = 0; + for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { + const auto& test_jet = coll->at(jet_n); + if(test_jet.pt() < 5.0){continue;} + float new_angular_distance=reco::deltaR(test_jet,it->track()); + if(new_angular_distance < jet_radius){ + matched_jets = matched_jets + 1; + } + } + if(matched_jets != 0){continue;} + include = true; + } + } + if(angular_distance<=jet_radius){ + include = true; + } + + if(include){ + + std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); + std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); + std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); + TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); + if(counter >= max_gtracks){continue;} + gtrack_dR[counter] = catchInfsAndBound(reco::deltaR(jet,it->track()), -1.0,0.0,10.0); + gtrack_dist_neigh[counter] = catchInfsAndBound(dist_part, -10.0,-5.0,100.0); + float length=999; + if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); + gtrack_jetAxisDlength[counter] = catchInfsAndBound(length,-1.0,-100.0,100.0); + gtrack_jetAxisDistance[counter] = catchInfsAndBound(jet_dist.second.value(),-1.0,-100.0,100.0); + gtrack_chi2reduced[counter] = catchInfsAndBound(it->track().normalizedChi2(),-1.0,-100.0,300.0); + gtrack_3D_ip[counter] = catchInfsAndBound(ip.second.value(),0.0,-500.0,500.0); + gtrack_3D_sip[counter] = catchInfsAndBound(ip.second.significance(),0.0,-500.0,500.0); + gtrack_2D_ip[counter] = catchInfsAndBound(ip2d.second.value(),0.0,-500.0,500.0); + gtrack_2D_sip[counter] = catchInfsAndBound(ip2d.second.significance(),0.0,-500.0,500.0); + gtrack_pt[counter] = catchInfsAndBound(it->track().pt(),0.0,-100.0,1000.0); + gtrack_eta[counter] = catchInfsAndBound(it->track().eta(),0.0,-2.5,2.5); + gtrack_phi[counter] = catchInfsAndBound(it->track().phi(),0.0,-5,5); + gtrack_mass[counter] = catchInfsAndBound(masses[it-selectedTracks.begin()],0.0,-1.0,500.0); + gtrack_dxy[counter] = catchInfsAndBound(it->track().dxy(pv.position()),0.0,-100.0,100.0); + gtrack_dz[counter] = catchInfsAndBound(it->track().dz(pv.position()),0.0,-100.0,100.0); + gtrack_PCAtrackFromPV[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).mag() , -1.0,-100.0,100.0); + gtrack_dotProdTrack[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).unit().dot(it->impactPointState().globalDirection().unit()), -3.0,-3.0,3.0); + GlobalVector trackDir2D(it->impactPointState().globalDirection().x(),it->impactPointState().globalDirection().y(),0.); + GlobalPoint pvp2d(pv.x(),pv.y(),0.0); + GlobalPoint trackPos2D(it->impactPointState().globalPosition().x(),it->impactPointState().globalPosition().y(),0.0); + gtrack_dotProdTrack2D[counter] = catchInfsAndBound( (trackPos2D-pvp2d).unit().dot(trackDir2D.unit()), -3.0,-3.0,3.0); + std::pair probability; + //probability with 3D ip + probability = m_probabilityEstimator->probability(0, 0,ip.second.significance(),it->track(),jet,pv); + double prob3D=(probability.first ? probability.second : -1.); + gtrack_3D_TrackProbability[counter] = catchInfsAndBound(prob3D,-2.0,-100.0,100.0); + //probability with 2D ip + probability = m_probabilityEstimator->probability(0, 1,ip2d.second.significance(),it->track(),jet,pv); + double prob2D=(probability.first ? probability.second : -1.); + gtrack_2D_TrackProbability[counter] = catchInfsAndBound(prob2D,-2.0,-100.0,100.0); + + gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); + gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); + counter++; + } + } + n_gtracks = counter; + nGtracks = n_gtracks; + masses.clear(); + + return true; +} + +float ntuple_GraphB::mindrsvpfcand(const pat::PackedCandidate* pfcand) { + + float mindr_ = jetradius_; + for (unsigned int i=0; isize(); ++i) { + if(!pfcand) continue; + //if(!svs.at(i)) continue; + float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); + if (tempdr_ > CandidateToken; @@ -121,6 +98,4 @@ class ntuple_GraphB: public ntuple_content{ }; - - #endif /* DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_GRAPHB_H_ */ diff --git a/DeepNtuplizer/src/#ntuple_GraphB.cc# b/DeepNtuplizer/src/#ntuple_GraphB.cc# new file mode 100644 index 00000000000..d98809608d6 --- /dev/null +++ b/DeepNtuplizer/src/#ntuple_GraphB.cc# @@ -0,0 +1,661 @@ +/* + * ntuple_GraphB.cc + * + * Created on: 23 June 2017 + * Author: Seth Moortgat + + */ + + +#include "../interface/ntuple_GraphB.h" + +#include "DataFormats/GeometrySurface/interface/Line.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" +#include "TrackingTools/Records/interface/TransientTrackRecord.h" +#include "TrackingTools/IPTools/interface/IPTools.h" +#include "TrackingTools/PatternTools/interface/TwoTrackMinimumDistance.h" +#include "../interface/sorting_modules.h" +#include "CondFormats/BTauObjects/interface/TrackProbabilityCalibration.h" +#include "CondFormats/DataRecord/interface/BTagTrackProbability2DRcd.h" +#include "CondFormats/DataRecord/interface/BTagTrackProbability3DRcd.h" +#include "FWCore/Framework/interface/EventSetupRecord.h" +#include "FWCore/Framework/interface/EventSetupRecordImplementation.h" +#include "FWCore/Framework/interface/EventSetupRecordKey.h" +#include "RecoVertex/VertexTools/interface/VertexDistance3D.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "TVector3.h" + +class TrackInfoBuilder{ +public: + TrackInfoBuilder(edm::ESHandle & build): + builder(build), + trackMomentum_(0), + trackEta_(0), + trackEtaRel_(0), + trackPtRel_(0), + trackPPar_(0), + trackDeltaR_(0), + trackPtRatio_(0), + trackPParRatio_(0), + trackSip2dVal_(0), + trackSip2dSig_(0), + trackSip3dVal_(0), + trackSip3dSig_(0), + trackJetDistVal_(0), + trackJetDistSig_(0), + trackImpactPointState_(0) +{ + + +} + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + TVector3 trackMom3( + PackedCandidate_->momentum().x(), + PackedCandidate_->momentum().y(), + PackedCandidate_->momentum().z() + ); + trackMomentum_=PackedCandidate_->p(); + trackEta_= PackedCandidate_->eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); + trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); + trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); + trackSip2dVal_=0.; + trackSip2dSig_=0.; + trackSip3dVal_=0.; + trackSip3dSig_=0.; + trackJetDistVal_=0.; + trackJetDistSig_=0.; + //trackImpactPointState_=PackedCandidate_->impactPointState(); + return; + } + + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; + Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; + math::XYZVector trackMom = PseudoTrack.momentum(); + double trackMag = std::sqrt(trackMom.Mag2()); + TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + + + trackMomentum_=std::sqrt(trackMom.Mag2()); + trackEta_= trackMom.Eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(trackMom); + trackDeltaR_=reco::deltaR(trackMom, jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; + trackPParRatio_=jetDir.Dot(trackMom) / trackMag; + trackSip2dVal_=(meas_ip2d.value()); + + trackSip2dSig_=(meas_ip2d.significance()); + trackSip3dVal_=(meas_ip3d.value()); + + + trackSip3dSig_=meas_ip3d.significance(); + trackJetDistVal_= jetdist.value(); + trackJetDistSig_= jetdist.significance(); + trackImpactPointState_=transientTrack.impactPointState(); + + } + + const float& getTrackDeltaR() const {return trackDeltaR_;} + const float& getTrackEta() const {return trackEta_;} + const float& getTrackEtaRel() const {return trackEtaRel_;} + const float& getTrackJetDistSig() const {return trackJetDistSig_;} + const float& getTrackJetDistVal() const {return trackJetDistVal_;} + const float& getTrackMomentum() const {return trackMomentum_;} + const float& getTrackPPar() const {return trackPPar_;} + const float& getTrackPParRatio() const {return trackPParRatio_;} + const float& getTrackPtRatio() const {return trackPtRatio_;} + const float& getTrackPtRel() const {return trackPtRel_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + const float& getTrackSip2dVal() const {return trackSip2dVal_;} + const float& getTrackSip3dSig() const {return trackSip3dSig_;} + const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const TrajectoryStateOnSurface& getImpactPointState() const {return trackImpactPointState_;} + +private: + + edm::ESHandle& builder; + + float trackMomentum_; + float trackEta_; + float trackEtaRel_; + float trackPtRel_; + float trackPPar_; + float trackDeltaR_; + float trackPtRatio_; + float trackPParRatio_; + float trackSip2dVal_; + float trackSip2dSig_; + float trackSip3dVal_; + float trackSip3dSig_; + + float trackJetDistVal_; + float trackJetDistSig_; + TrajectoryStateOnSurface trackImpactPointState_; + +}; + +ntuple_GraphB::ntuple_GraphB(double jetR):ntuple_content(jetR){} + +ntuple_GraphB::~ntuple_GraphB(){} + +void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){ + min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); +} + +void ntuple_GraphB::initBranches(TTree* tree){ + + addBranch(tree,"n_gtracks",&n_gtracks, "n_gtracks/i"); + addBranch(tree,"nGtracks",&nGtracks, "nGtracks/f"); + + addBranch(tree,"gtrack_pt",>rack_pt, "gtrack_pt[n_gtracks]/f"); + addBranch(tree,"gtrack_eta",>rack_eta, "gtrack_eta[n_gtracks]/f"); + addBranch(tree,"gtrack_phi",>rack_phi, "gtrack_phi[n_gtracks]/f"); + addBranch(tree,"gtrack_mass",>rack_mass, "gtrack_mass[n_gtracks]/f"); + + addBranch(tree,"gtrack_dz", >rack_dz, "gtrack_dz[n_gtracks]/f"); + addBranch(tree,"gtrack_dxy", >rack_dxy, "gtrack_dxy[n_gtracks]/f"); + addBranch(tree,"gtrack_3D_ip", >rack_3D_ip, "gtrack_3D_ip[n_gtracks]/f"); + addBranch(tree,"gtrack_3D_sip", >rack_3D_sip, "gtrack_3D_sip[n_gtracks]/f"); + addBranch(tree,"gtrack_2D_ip", >rack_2D_ip, "gtrack_2D_ip[n_gtracks]/f"); + addBranch(tree,"gtrack_2D_sip", >rack_2D_sip, "gtrack_2D_sip[n_gtracks]/f"); + addBranch(tree,"gtrack_dR", >rack_dR, "gtrack_dR[n_gtracks]/f"); + addBranch(tree,"gtrack_dist_neigh", >rack_dist_neigh, "gtrack_dist_neigh[n_gtracks]/f"); + + addBranch(tree,"gtrack_3D_TrackProbability", >rack_3D_TrackProbability, "gtrack_3D_TrackProbability[n_gtracks]/f"); + addBranch(tree,"gtrack_2D_TrackProbability", >rack_2D_TrackProbability, "gtrack_2D_TrackProbability[n_gtracks]/f"); + + addBranch(tree,"gtrack_chi2reduced",>rack_chi2reduced, "gtrack_chi2reduced[n_gtracks]/f"); + addBranch(tree,"gtrack_nPixelHits",>rack_nPixelHits, "gtrack_nPixelHits[n_gtracks]/f"); + addBranch(tree,"gtrack_nHits",>rack_nHits, "gtrack_nHits[n_gtracks]/f"); + addBranch(tree,"gtrack_jetAxisDistance",>rack_jetAxisDistance, "gtrack_jetAxisDistance[n_gtracks]/f"); + addBranch(tree,"gtrack_jetAxisDlength",>rack_jetAxisDlength, "gtrack_jetAxisDlength[n_gtracks]/f"); + addBranch(tree,"gtrack_PCAtrackFromPV",>rack_PCAtrackFromPV, "gtrack_PCAtrackFromPV[n_gtracks]/f"); + addBranch(tree,"gtrack_dotProdTrack",>rack_dotProdTrack, "gtrack_dotProdTrack[n_gtracks]/f"); + addBranch(tree,"gtrack_dotProdTrack2D",>rack_dotProdTrack2D, "gtrack_dotProdTrack2D[n_gtracks]/f"); + +} + + +void ntuple_GraphB::readEvent(const edm::Event& iEvent){ + iEvent.getByToken(CandidateToken, tracks); + n_Npfcand_=0; + n_Cpfcand_=0; +} + + +void ntuple_GraphB::readSetup(const edm::EventSetup& iSetup){ + + //this part was to be in checkEventSetup, but idk how to call it + using namespace edm; + using namespace edm::eventsetup; + + const EventSetupRecord & re2D= iSetup.get(); + const EventSetupRecord & re3D= iSetup.get(); + unsigned long long cacheId2D= re2D.cacheIdentifier(); + unsigned long long cacheId3D= re3D.cacheIdentifier(); + + if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed + { + //iSetup.get().get(calib); + ESHandle calib2DHandle; + iSetup.get().get(calib2DHandle); + ESHandle calib3DHandle; + iSetup.get().get(calib3DHandle); + iSetup.get().get("TransientTrackBuilder", builder); + + const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); + const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); + + m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); + + } + + m_calibrationCacheId3D=cacheId3D; + m_calibrationCacheId2D=cacheId2D; + + //readEvent only line + iSetup.get().get("TransientTrackBuilder", builder); + +} + +void ntuple_GraphB::checkEventSetup(const edm::EventSetup & iSetup) { + + using namespace edm; + using namespace edm::eventsetup; + + const EventSetupRecord & re2D= iSetup.get(); + const EventSetupRecord & re3D= iSetup.get(); + unsigned long long cacheId2D= re2D.cacheIdentifier(); + unsigned long long cacheId3D= re3D.cacheIdentifier(); + + if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed + { + //iSetup.get().get(calib); + ESHandle calib2DHandle; + iSetup.get().get(calib2DHandle); + ESHandle calib3DHandle; + iSetup.get().get(calib3DHandle); + + const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); + const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); + + m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); + + } + + m_calibrationCacheId3D=cacheId3D; + m_calibrationCacheId2D=cacheId2D; + +} + + +bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ + + // pv info + const reco::Vertex &pv = vertices()->at(0); + GlobalPoint pvp(pv.x(),pv.y(),pv.z()); + + std::vector selectedTracks; + std::vector masses; + + double jet_radius = jetR(); + + math::XYZVector jetDir = jet.momentum().Unit(); + GlobalVector direction(jet.px(), jet.py(), jet.pz()); + std::vector > sortedcharged; + std::vector sortedchargedindices; + + const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); + //const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); + + for(size_t k = 0; ksize(); ++k) { + if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { + selectedTracks.push_back(builder->build(tracks->ptrAt(k))); + masses.push_back(tracks->ptrAt(k)->mass()); + } + } + + std::vector > sorted_tracks; + for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ + float angular_distance=reco::deltaR(jet,it->track()); + sorted_tracks.push_back(sorting::sortingClass + (it-selectedTracks.begin(), -angular_distance, + -1, -1)); + } + std::sort(sorted_tracks.begin(),sorted_tracks.end(),sorting::sortingClass::compareByABCInv); + std::vector sorted_track_indices; + sorted_track_indices=sorting::invertSortingVector(sorted_tracks); + //n_gtracks = std::min(sorted_tracks.size(),max_gtracks); + //nGtracks = n_gtracks; + + + TrackInfoBuilder trackinfo(builder); + //create collection of cpf/npf for the seeding + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate){ + if(PackedCandidate->pt() < min_candidate_pt_) continue; + if(PackedCandidate->charge()!=0){ + trackinfo.buildTrackInfo(PackedCandidate,jetDir,direction,pv); + sortedcharged.push_back(sorting::sortingClass + (i, trackinfo.getTrackSip2dSig(), + -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); + } + } + } + std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); + long unsigned int max_cpf = 30; + n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); + sortedchargedindices = sorting::invertSortingVector(sortedcharged); + + //Count the number of gen_daughters and fill the raw_constituent + if (jet.genJet()){ + number_of_gen_daughters = jet.genJet()->numberOfDaughters(); + number_of_daughters = jet.numberOfDaughters(); + for (size_t i = 0; i < number_of_gen_daughters; ++i){ + const reco::Candidate* constit = jet.daughter(i); + raw_gen_constituents.push_back(constit); + } + } + + for (size_t j = 0; j < jet.numberOfDaughters(); j++){ + const reco::Candidate* constit = jet.daughter(j); + if(constit->charge() != 0){ + raw_cpf_constituents.push_back(constit); + } + } + //number_of_cpf_gen = raw_cpf_constituents.size(); + + /*if(jet.genJet()){ + for(size_t m = 0; m < jet.numberOfDaughters(); m++){ + bool gen_10 = false; + bool gen_20 = false; + bool gen_30 = false; + bool gen_40 = false; + bool gen_50 = false; + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(m)); + for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ + if((jet.genJet()->daughter(n)->charge() != 0) && (jet.daughter(m)->charge() != 0) && (PackedCandidate->hasTrackDetails())){ + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.10){ + gen_10 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.20){ + gen_20 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.30){ + gen_30 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.40){ + gen_40 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.50){ + gen_50 = true; + } + } + } + if(gen_10){ + num_gen_match10++; + } + if(gen_20){ + num_gen_match20++; + } + if(gen_30){ + num_gen_match30++; + } + if(gen_40){ + num_gen_match40++; + } + if(gen_50){ + num_gen_match50++; + } + } + }*/ + + + //Count the number of parton_daughters and fill the raw_constituent + if(jet.genParton()){ + //Prep jet-parton daughters + int keep = 1; + std::vector part_constituents; + std::vector daughters_constituents; + //int number_of_part_daughters = jet.genParton()->numberOfDaughters(); + for (size_t j = 0; j < jet.genParton()->numberOfDaughters(); ++j){ + const reco::Candidate* constit = jet.genParton()->daughter(j); + part_constituents.push_back(constit); + } + //Loop until we process all the constituents + while (keep != 0){ + keep = 0; + for (size_t k = 0; k < part_constituents.size(); ++k){ + if (part_constituents[k]->numberOfDaughters() != 0){ + keep = 1; + for (size_t m = 0; m < part_constituents[k]->numberOfDaughters(); ++m){ + daughters_constituents.push_back(part_constituents[k]->daughter(m)); + } + } + else{ + raw_part_constituents.push_back(part_constituents[k]); + } + } + part_constituents = daughters_constituents; + daughters_constituents.clear(); + } + number_of_part_gen = raw_part_constituents.size(); + } + + size_t counter= 0; + + for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ + //is the track in the jet cone? + float angular_distance=reco::deltaR(jet,it->track()); + //std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); + bool hasNeighbour = false; + bool include = false; + float dist_part = -0.01; + float is_matched10 = -1.0; + float is_matched20 = -1.0; + float is_matched30 = -1.0; + float is_matched40 = -1.0; + float is_matched50 = -1.0; + //matching the track with the jet radius + if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ + if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} + //matching the track with a cpf_seed of not + + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate->hasTrackDetails()){ + if(PackedCandidate->pt() < min_candidate_pt_) {continue;} + if(PackedCandidate->charge()!=0){ + const reco::Track & PseudoTrack = PackedCandidate->pseudoTrack(); + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + + TwoTrackMinimumDistance dist; + std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); + float near_angular_dist = reco::deltaR(jet,transientTrack.track()); + //std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); + //float length = 999; + //TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); + //if(closest.isValid()){ + // length = (closest.globalPosition() - pvp).mag(); + //} + if (transientTrack == *it) {continue;} + if (near_angular_dist < jet_radius){ + /*if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. + && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 + && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;}*/ + if(ip.second.significance() < 1.0) {continue;} + if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ + float distance = dist.distance(); + if(distance < 0.02){ + hasNeighbour = true; + dist_part = distance; + } + } + } + } + } + } + if(hasNeighbour){ + int matched_jets = 0; + for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { + const auto& test_jet = coll->at(jet_n); + if(test_jet.pt() < 5.0){continue;} + float new_angular_distance=reco::deltaR(test_jet,it->track()); + if(new_angular_distance < jet_radius){ + matched_jets = matched_jets + 1; + } + } + if(matched_jets != 0){continue;} + include = true; + } + } + if(angular_distance<=jet_radius){ + include = true; + } + + if(include){ + + if(jet.genJet()){ + bool is_gmatched10 = false; + bool is_gmatched20 = false; + bool is_gmatched30 = false; + bool is_gmatched40 = false; + bool is_gmatched50 = false; + + for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ + if(jet.genJet()->daughter(n)->charge() != 0){ + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.10){ + is_gmatched10 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.20){ + is_gmatched20 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.30){ + is_gmatched30 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.40){ + is_gmatched40 = true; + } + if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.50){ + is_gmatched50 = true; + } + } + } + if(is_gmatched10){ + num_gen_match10++; + } + if(is_gmatched20){ + num_gen_match20++; + } + if(is_gmatched30){ + num_gen_match30++; + } + if(is_gmatched40){ + num_gen_match40++; + } + if(is_gmatched50){ + num_gen_match50++; + } + } + + if(jet.genParton()){ + is_matched10 = 0; + is_matched20 = 0; + is_matched30 = 0; + is_matched40 = 0; + is_matched50 = 0; + + for(size_t n = 0; n < raw_part_constituents.size(); n++){ + if(raw_part_constituents.at(n)->charge() != 0){ + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.10){ + is_matched10 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.20){ + is_matched20 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.30){ + is_matched30 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.40){ + is_matched40 = 1.0; + } + if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.50){ + is_matched50 = 1.0; + } + } + } + if(is_matched10 == 1.0){ + num_match10++; + } + if(is_matched20 == 1.0){ + num_match20++; + } + if(is_matched30 == 1.0){ + num_match30++; + } + if(is_matched40 == 1.0){ + num_match40++; + } + if(is_matched50 == 1.0){ + num_match50++; + } + } + + std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); + std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); + std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); + TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); + if(counter >= max_gtracks){continue;} + gtrack_dR[counter] = catchInfsAndBound(reco::deltaR(jet,it->track()), -1.0,0.0,10.0); + gtrack_dist_neigh[counter] = catchInfsAndBound(dist_part, -10.0,-5.0,100.0); + float length=999; + if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); + gtrack_jetAxisDlength[counter] = catchInfsAndBound(length,-1.0,-100.0,100.0); + gtrack_jetAxisDistance[counter] = catchInfsAndBound(jet_dist.second.value(),-1.0,-100.0,100.0); + gtrack_chi2reduced[counter] = catchInfsAndBound(it->track().normalizedChi2(),-1.0,-100.0,300.0); + gtrack_3D_ip[counter] = catchInfsAndBound(ip.second.value(),0.0,-500.0,500.0); + gtrack_3D_sip[counter] = catchInfsAndBound(ip.second.significance(),0.0,-500.0,500.0); + gtrack_2D_ip[counter] = catchInfsAndBound(ip2d.second.value(),0.0,-500.0,500.0); + gtrack_2D_sip[counter] = catchInfsAndBound(ip2d.second.significance(),0.0,-500.0,500.0); + gtrack_pt[counter] = catchInfsAndBound(it->track().pt(),0.0,-100.0,1000.0); + gtrack_eta[counter] = catchInfsAndBound(it->track().eta(),0.0,-2.5,2.5); + gtrack_phi[counter] = catchInfsAndBound(it->track().phi(),0.0,-5,5); + gtrack_mass[counter] = catchInfsAndBound(masses[it-selectedTracks.begin()],0.0,-1.0,500.0); + gtrack_dxy[counter] = catchInfsAndBound(it->track().dxy(pv.position()),0.0,-100.0,100.0); + gtrack_dz[counter] = catchInfsAndBound(it->track().dz(pv.position()),0.0,-100.0,100.0); + gtrack_PCAtrackFromPV[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).mag() , -1.0,-100.0,100.0); + gtrack_dotProdTrack[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).unit().dot(it->impactPointState().globalDirection().unit()), -3.0,-3.0,3.0); + GlobalVector trackDir2D(it->impactPointState().globalDirection().x(),it->impactPointState().globalDirection().y(),0.); + GlobalPoint pvp2d(pv.x(),pv.y(),0.0); + GlobalPoint trackPos2D(it->impactPointState().globalPosition().x(),it->impactPointState().globalPosition().y(),0.0); + gtrack_dotProdTrack2D[counter] = catchInfsAndBound( (trackPos2D-pvp2d).unit().dot(trackDir2D.unit()), -3.0,-3.0,3.0); + std::pair probability; + //probability with 3D ip + probability = m_probabilityEstimator->probability(0, 0,ip.second.significance(),it->track(),jet,pv); + double prob3D=(probability.first ? probability.second : -1.); + gtrack_3D_TrackProbability[counter] = catchInfsAndBound(prob3D,-2.0,-100.0,100.0); + //probability with 2D ip + probability = m_probabilityEstimator->probability(0, 1,ip2d.second.significance(),it->track(),jet,pv); + double prob2D=(probability.first ? probability.second : -1.); + gtrack_2D_TrackProbability[counter] = catchInfsAndBound(prob2D,-2.0,-100.0,100.0); + + gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); + gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); + gtrack_isMatched10[counter] = is_matched10; + gtrack_isMatched20[counter] = is_matched20; + gtrack_isMatched30[counter] = is_matched30; + gtrack_isMatched40[counter] = is_matched40; + gtrack_isMatched50[counter] = is_matched50; + counter++; + } + } + n_gtracks = counter; + nGtracks = n_gtracks; + n_daughters = number_of_daughters; + n_gen_daughters = number_of_gen_daughters; + n_gen_constit = number_of_part_gen; + n_match10 = num_match10; + n_match20 = num_match20; + n_match30 = num_match30; + n_match40 = num_match40; + n_match50 = num_match50; + + n_gen_match10 = num_gen_match10; + n_gen_match20 = num_gen_match20; + n_gen_match30 = num_gen_match30; + n_gen_match40 = num_gen_match40; + n_gen_match50 = num_gen_match50; + + masses.clear(); + + return true; +} + +float ntuple_GraphB::mindrsvpfcand(const pat::PackedCandidate* pfcand) { + + float mindr_ = jetradius_; + for (unsigned int i=0; isize(); ++i) { + if(!pfcand) continue; + //if(!svs.at(i)) continue; + float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); + if (tempdr_ selectedTracks; std::vector masses; + std::vector raw_gen_constituents; std::vector raw_cpf_constituents; std::vector raw_part_constituents; @@ -300,17 +279,6 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con float number_of_gen_daughters = -1.0; //float number_of_cpf_gen = -1.0; float number_of_part_gen = -1.0; - size_t num_match10 = 0.0; - size_t num_match20 = 0.0; - size_t num_match30 = 0.0; - size_t num_match40 = 0.0; - size_t num_match50 = 0.0; - - size_t num_gen_match10 = 0.0; - size_t num_gen_match20 = 0.0; - size_t num_gen_match30 = 0.0; - size_t num_gen_match40 = 0.0; - size_t num_gen_match50 = 0.0; double jet_radius = jetR(); @@ -361,101 +329,6 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con long unsigned int max_cpf = 30; n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); sortedchargedindices = sorting::invertSortingVector(sortedcharged); - - //Count the number of gen_daughters and fill the raw_constituent - if (jet.genJet()){ - number_of_gen_daughters = jet.genJet()->numberOfDaughters(); - number_of_daughters = jet.numberOfDaughters(); - for (size_t i = 0; i < number_of_gen_daughters; ++i){ - const reco::Candidate* constit = jet.daughter(i); - raw_gen_constituents.push_back(constit); - } - } - - for (size_t j = 0; j < jet.numberOfDaughters(); j++){ - const reco::Candidate* constit = jet.daughter(j); - if(constit->charge() != 0){ - raw_cpf_constituents.push_back(constit); - } - } - //number_of_cpf_gen = raw_cpf_constituents.size(); - - /*if(jet.genJet()){ - for(size_t m = 0; m < jet.numberOfDaughters(); m++){ - bool gen_10 = false; - bool gen_20 = false; - bool gen_30 = false; - bool gen_40 = false; - bool gen_50 = false; - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(m)); - for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ - if((jet.genJet()->daughter(n)->charge() != 0) && (jet.daughter(m)->charge() != 0) && (PackedCandidate->hasTrackDetails())){ - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.10){ - gen_10 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.20){ - gen_20 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.30){ - gen_30 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.40){ - gen_40 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.50){ - gen_50 = true; - } - } - } - if(gen_10){ - num_gen_match10++; - } - if(gen_20){ - num_gen_match20++; - } - if(gen_30){ - num_gen_match30++; - } - if(gen_40){ - num_gen_match40++; - } - if(gen_50){ - num_gen_match50++; - } - } - }*/ - - - //Count the number of parton_daughters and fill the raw_constituent - if(jet.genParton()){ - //Prep jet-parton daughters - int keep = 1; - std::vector part_constituents; - std::vector daughters_constituents; - //int number_of_part_daughters = jet.genParton()->numberOfDaughters(); - for (size_t j = 0; j < jet.genParton()->numberOfDaughters(); ++j){ - const reco::Candidate* constit = jet.genParton()->daughter(j); - part_constituents.push_back(constit); - } - //Loop until we process all the constituents - while (keep != 0){ - keep = 0; - for (size_t k = 0; k < part_constituents.size(); ++k){ - if (part_constituents[k]->numberOfDaughters() != 0){ - keep = 1; - for (size_t m = 0; m < part_constituents[k]->numberOfDaughters(); ++m){ - daughters_constituents.push_back(part_constituents[k]->daughter(m)); - } - } - else{ - raw_part_constituents.push_back(part_constituents[k]); - } - } - part_constituents = daughters_constituents; - daughters_constituents.clear(); - } - number_of_part_gen = raw_part_constituents.size(); - } size_t counter= 0; @@ -466,11 +339,13 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con bool hasNeighbour = false; bool include = false; float dist_part = -0.01; + float is_matched10 = -1.0; float is_matched20 = -1.0; float is_matched30 = -1.0; float is_matched40 = -1.0; float is_matched50 = -1.0; + //matching the track with the jet radius if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} From 9de6fb737880906d28f2de1c698f9eafc1f53a15 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Thu, 30 Sep 2021 09:44:41 +0200 Subject: [PATCH 03/21] debug --- DeepNtuplizer/interface/ntuple_GraphB.cc | 453 ---------------- DeepNtuplizer/src/#ntuple_GraphB.cc# | 661 ----------------------- DeepNtuplizer/src/ntuple_GraphB.cc | 123 ----- 3 files changed, 1237 deletions(-) delete mode 100644 DeepNtuplizer/interface/ntuple_GraphB.cc delete mode 100644 DeepNtuplizer/src/#ntuple_GraphB.cc# diff --git a/DeepNtuplizer/interface/ntuple_GraphB.cc b/DeepNtuplizer/interface/ntuple_GraphB.cc deleted file mode 100644 index 917fb0bcbe7..00000000000 --- a/DeepNtuplizer/interface/ntuple_GraphB.cc +++ /dev/null @@ -1,453 +0,0 @@ -/* - * ntuple_GraphB.cc - * - * Created on: 23 June 2017 - * Author: Seth Moortgat - - */ - - -#include "../interface/ntuple_GraphB.h" - -#include "DataFormats/GeometrySurface/interface/Line.h" -#include "DataFormats/PatCandidates/interface/PackedCandidate.h" -#include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" -#include "TrackingTools/Records/interface/TransientTrackRecord.h" -#include "TrackingTools/IPTools/interface/IPTools.h" -#include "TrackingTools/PatternTools/interface/TwoTrackMinimumDistance.h" -#include "../interface/sorting_modules.h" -#include "CondFormats/BTauObjects/interface/TrackProbabilityCalibration.h" -#include "CondFormats/DataRecord/interface/BTagTrackProbability2DRcd.h" -#include "CondFormats/DataRecord/interface/BTagTrackProbability3DRcd.h" -#include "FWCore/Framework/interface/EventSetupRecord.h" -#include "FWCore/Framework/interface/EventSetupRecordImplementation.h" -#include "FWCore/Framework/interface/EventSetupRecordKey.h" -#include "RecoVertex/VertexTools/interface/VertexDistance3D.h" -#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" -#include "TVector3.h" - -class TrackInfoBuilder{ -public: - TrackInfoBuilder(edm::ESHandle & build): - builder(build), - trackMomentum_(0), - trackEta_(0), - trackEtaRel_(0), - trackPtRel_(0), - trackPPar_(0), - trackDeltaR_(0), - trackPtRatio_(0), - trackPParRatio_(0), - trackSip2dVal_(0), - trackSip2dSig_(0), - trackSip3dVal_(0), - trackSip3dSig_(0), - trackJetDistVal_(0), - trackJetDistSig_(0), - trackImpactPointState_(0) -{ - - -} - - void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ - TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); - if(!PackedCandidate_->hasTrackDetails()) { - TVector3 trackMom3( - PackedCandidate_->momentum().x(), - PackedCandidate_->momentum().y(), - PackedCandidate_->momentum().z() - ); - trackMomentum_=PackedCandidate_->p(); - trackEta_= PackedCandidate_->eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); - trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); - trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); - trackSip2dVal_=0.; - trackSip2dSig_=0.; - trackSip3dVal_=0.; - trackSip3dSig_=0.; - trackJetDistVal_=0.; - trackJetDistSig_=0.; - //trackImpactPointState_=PackedCandidate_->impactPointState(); - return; - } - - const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); - - reco::TransientTrack transientTrack; - transientTrack=builder->build(PseudoTrack); - Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; - Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; - Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; - math::XYZVector trackMom = PseudoTrack.momentum(); - double trackMag = std::sqrt(trackMom.Mag2()); - TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); - - - trackMomentum_=std::sqrt(trackMom.Mag2()); - trackEta_= trackMom.Eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(trackMom); - trackDeltaR_=reco::deltaR(trackMom, jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; - trackPParRatio_=jetDir.Dot(trackMom) / trackMag; - trackSip2dVal_=(meas_ip2d.value()); - - trackSip2dSig_=(meas_ip2d.significance()); - trackSip3dVal_=(meas_ip3d.value()); - - - trackSip3dSig_=meas_ip3d.significance(); - trackJetDistVal_= jetdist.value(); - trackJetDistSig_= jetdist.significance(); - trackImpactPointState_=transientTrack.impactPointState(); - - } - - const float& getTrackDeltaR() const {return trackDeltaR_;} - const float& getTrackEta() const {return trackEta_;} - const float& getTrackEtaRel() const {return trackEtaRel_;} - const float& getTrackJetDistSig() const {return trackJetDistSig_;} - const float& getTrackJetDistVal() const {return trackJetDistVal_;} - const float& getTrackMomentum() const {return trackMomentum_;} - const float& getTrackPPar() const {return trackPPar_;} - const float& getTrackPParRatio() const {return trackPParRatio_;} - const float& getTrackPtRatio() const {return trackPtRatio_;} - const float& getTrackPtRel() const {return trackPtRel_;} - const float& getTrackSip2dSig() const {return trackSip2dSig_;} - const float& getTrackSip2dVal() const {return trackSip2dVal_;} - const float& getTrackSip3dSig() const {return trackSip3dSig_;} - const float& getTrackSip3dVal() const {return trackSip3dVal_;} - const TrajectoryStateOnSurface& getImpactPointState() const {return trackImpactPointState_;} - -private: - - edm::ESHandle& builder; - - float trackMomentum_; - float trackEta_; - float trackEtaRel_; - float trackPtRel_; - float trackPPar_; - float trackDeltaR_; - float trackPtRatio_; - float trackPParRatio_; - float trackSip2dVal_; - float trackSip2dSig_; - float trackSip3dVal_; - float trackSip3dSig_; - - float trackJetDistVal_; - float trackJetDistSig_; - TrajectoryStateOnSurface trackImpactPointState_; - -}; - -ntuple_GraphB::ntuple_GraphB(double jetR):ntuple_content(jetR){} - -ntuple_GraphB::~ntuple_GraphB(){} - -void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){ - min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); -} - -void ntuple_GraphB::initBranches(TTree* tree){ - - addBranch(tree,"n_gtracks",&n_gtracks, "n_gtracks/i"); - addBranch(tree,"nGtracks",&nGtracks, "nGtracks/f"); - addBranch(tree,"gtrack_pt",>rack_pt, "gtrack_pt[n_gtracks]/f"); - addBranch(tree,"gtrack_eta",>rack_eta, "gtrack_eta[n_gtracks]/f"); - addBranch(tree,"gtrack_phi",>rack_phi, "gtrack_phi[n_gtracks]/f"); - addBranch(tree,"gtrack_mass",>rack_mass, "gtrack_mass[n_gtracks]/f"); - - addBranch(tree,"gtrack_dz", >rack_dz, "gtrack_dz[n_gtracks]/f"); - addBranch(tree,"gtrack_dxy", >rack_dxy, "gtrack_dxy[n_gtracks]/f"); - addBranch(tree,"gtrack_3D_ip", >rack_3D_ip, "gtrack_3D_ip[n_gtracks]/f"); - addBranch(tree,"gtrack_3D_sip", >rack_3D_sip, "gtrack_3D_sip[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_ip", >rack_2D_ip, "gtrack_2D_ip[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_sip", >rack_2D_sip, "gtrack_2D_sip[n_gtracks]/f"); - addBranch(tree,"gtrack_dR", >rack_dR, "gtrack_dR[n_gtracks]/f"); - addBranch(tree,"gtrack_dist_neigh", >rack_dist_neigh, "gtrack_dist_neigh[n_gtracks]/f"); - - addBranch(tree,"gtrack_3D_TrackProbability", >rack_3D_TrackProbability, "gtrack_3D_TrackProbability[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_TrackProbability", >rack_2D_TrackProbability, "gtrack_2D_TrackProbability[n_gtracks]/f"); - - addBranch(tree,"gtrack_chi2reduced",>rack_chi2reduced, "gtrack_chi2reduced[n_gtracks]/f"); - addBranch(tree,"gtrack_nPixelHits",>rack_nPixelHits, "gtrack_nPixelHits[n_gtracks]/f"); - addBranch(tree,"gtrack_nHits",>rack_nHits, "gtrack_nHits[n_gtracks]/f"); - addBranch(tree,"gtrack_jetAxisDistance",>rack_jetAxisDistance, "gtrack_jetAxisDistance[n_gtracks]/f"); - addBranch(tree,"gtrack_jetAxisDlength",>rack_jetAxisDlength, "gtrack_jetAxisDlength[n_gtracks]/f"); - addBranch(tree,"gtrack_PCAtrackFromPV",>rack_PCAtrackFromPV, "gtrack_PCAtrackFromPV[n_gtracks]/f"); - addBranch(tree,"gtrack_dotProdTrack",>rack_dotProdTrack, "gtrack_dotProdTrack[n_gtracks]/f"); - addBranch(tree,"gtrack_dotProdTrack2D",>rack_dotProdTrack2D, "gtrack_dotProdTrack2D[n_gtracks]/f"); - -} - -void ntuple_GraphB::readEvent(const edm::Event& iEvent){ - iEvent.getByToken(CandidateToken, tracks); - n_Npfcand_=0; - n_Cpfcand_=0; -} - -void ntuple_GraphB::readSetup(const edm::EventSetup& iSetup){ - - //this part was to be in checkEventSetup, but idk how to call it - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - iSetup.get().get("TransientTrackBuilder", builder); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - - //readEvent only line - iSetup.get().get("TransientTrackBuilder", builder); - -} - -void ntuple_GraphB::checkEventSetup(const edm::EventSetup & iSetup) { - - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - -} - - -bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ - - // pv info - const reco::Vertex &pv = vertices()->at(0); - GlobalPoint pvp(pv.x(),pv.y(),pv.z()); - - std::vector selectedTracks; - std::vector masses; - - double jet_radius = jetR(); - - math::XYZVector jetDir = jet.momentum().Unit(); - GlobalVector direction(jet.px(), jet.py(), jet.pz()); - std::vector > sortedcharged; - std::vector sortedchargedindices; - - const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); - //const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); - - for(size_t k = 0; ksize(); ++k) { - if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { - selectedTracks.push_back(builder->build(tracks->ptrAt(k))); - masses.push_back(tracks->ptrAt(k)->mass()); - } - } - - std::vector > sorted_tracks; - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - float angular_distance=reco::deltaR(jet,it->track()); - sorted_tracks.push_back(sorting::sortingClass - (it-selectedTracks.begin(), -angular_distance, - -1, -1)); - } - std::sort(sorted_tracks.begin(),sorted_tracks.end(),sorting::sortingClass::compareByABCInv); - std::vector sorted_track_indices; - sorted_track_indices=sorting::invertSortingVector(sorted_tracks); - //n_gtracks = std::min(sorted_tracks.size(),max_gtracks); - //nGtracks = n_gtracks; - - - TrackInfoBuilder trackinfo(builder); - //create collection of cpf/npf for the seeding - for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); - if(PackedCandidate){ - if(PackedCandidate->pt() < min_candidate_pt_) continue; - if(PackedCandidate->charge()!=0){ - trackinfo.buildTrackInfo(PackedCandidate,jetDir,direction,pv); - sortedcharged.push_back(sorting::sortingClass - (i, trackinfo.getTrackSip2dSig(), - -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); - } - } - } - std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); - long unsigned int max_cpf = 30; - n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); - sortedchargedindices = sorting::invertSortingVector(sortedcharged); - - size_t counter= 0; - - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - //is the track in the jet cone? - float angular_distance=reco::deltaR(jet,it->track()); - //std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); - bool hasNeighbour = false; - bool include = false; - float dist_part = -0.01; - - //matching the track with the jet radius - if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ - if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} - //matching the track with a cpf_seed of not - - for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); - if(PackedCandidate->hasTrackDetails()){ - if(PackedCandidate->pt() < min_candidate_pt_) {continue;} - if(PackedCandidate->charge()!=0){ - const reco::Track & PseudoTrack = PackedCandidate->pseudoTrack(); - reco::TransientTrack transientTrack; - transientTrack=builder->build(PseudoTrack); - - TwoTrackMinimumDistance dist; - std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); - float near_angular_dist = reco::deltaR(jet,transientTrack.track()); - //std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); - //float length = 999; - //TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); - //if(closest.isValid()){ - // length = (closest.globalPosition() - pvp).mag(); - //} - if (transientTrack == *it) {continue;} - if (near_angular_dist < jet_radius){ - /*if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. - && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 - && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;}*/ - if(ip.second.significance() < 1.0) {continue;} - if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ - float distance = dist.distance(); - if(distance < 0.02){ - hasNeighbour = true; - dist_part = distance; - } - } - } - } - } - } - if(hasNeighbour){ - int matched_jets = 0; - for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { - const auto& test_jet = coll->at(jet_n); - if(test_jet.pt() < 5.0){continue;} - float new_angular_distance=reco::deltaR(test_jet,it->track()); - if(new_angular_distance < jet_radius){ - matched_jets = matched_jets + 1; - } - } - if(matched_jets != 0){continue;} - include = true; - } - } - if(angular_distance<=jet_radius){ - include = true; - } - - if(include){ - - std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); - std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); - std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); - TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); - if(counter >= max_gtracks){continue;} - gtrack_dR[counter] = catchInfsAndBound(reco::deltaR(jet,it->track()), -1.0,0.0,10.0); - gtrack_dist_neigh[counter] = catchInfsAndBound(dist_part, -10.0,-5.0,100.0); - float length=999; - if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); - gtrack_jetAxisDlength[counter] = catchInfsAndBound(length,-1.0,-100.0,100.0); - gtrack_jetAxisDistance[counter] = catchInfsAndBound(jet_dist.second.value(),-1.0,-100.0,100.0); - gtrack_chi2reduced[counter] = catchInfsAndBound(it->track().normalizedChi2(),-1.0,-100.0,300.0); - gtrack_3D_ip[counter] = catchInfsAndBound(ip.second.value(),0.0,-500.0,500.0); - gtrack_3D_sip[counter] = catchInfsAndBound(ip.second.significance(),0.0,-500.0,500.0); - gtrack_2D_ip[counter] = catchInfsAndBound(ip2d.second.value(),0.0,-500.0,500.0); - gtrack_2D_sip[counter] = catchInfsAndBound(ip2d.second.significance(),0.0,-500.0,500.0); - gtrack_pt[counter] = catchInfsAndBound(it->track().pt(),0.0,-100.0,1000.0); - gtrack_eta[counter] = catchInfsAndBound(it->track().eta(),0.0,-2.5,2.5); - gtrack_phi[counter] = catchInfsAndBound(it->track().phi(),0.0,-5,5); - gtrack_mass[counter] = catchInfsAndBound(masses[it-selectedTracks.begin()],0.0,-1.0,500.0); - gtrack_dxy[counter] = catchInfsAndBound(it->track().dxy(pv.position()),0.0,-100.0,100.0); - gtrack_dz[counter] = catchInfsAndBound(it->track().dz(pv.position()),0.0,-100.0,100.0); - gtrack_PCAtrackFromPV[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).mag() , -1.0,-100.0,100.0); - gtrack_dotProdTrack[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).unit().dot(it->impactPointState().globalDirection().unit()), -3.0,-3.0,3.0); - GlobalVector trackDir2D(it->impactPointState().globalDirection().x(),it->impactPointState().globalDirection().y(),0.); - GlobalPoint pvp2d(pv.x(),pv.y(),0.0); - GlobalPoint trackPos2D(it->impactPointState().globalPosition().x(),it->impactPointState().globalPosition().y(),0.0); - gtrack_dotProdTrack2D[counter] = catchInfsAndBound( (trackPos2D-pvp2d).unit().dot(trackDir2D.unit()), -3.0,-3.0,3.0); - std::pair probability; - //probability with 3D ip - probability = m_probabilityEstimator->probability(0, 0,ip.second.significance(),it->track(),jet,pv); - double prob3D=(probability.first ? probability.second : -1.); - gtrack_3D_TrackProbability[counter] = catchInfsAndBound(prob3D,-2.0,-100.0,100.0); - //probability with 2D ip - probability = m_probabilityEstimator->probability(0, 1,ip2d.second.significance(),it->track(),jet,pv); - double prob2D=(probability.first ? probability.second : -1.); - gtrack_2D_TrackProbability[counter] = catchInfsAndBound(prob2D,-2.0,-100.0,100.0); - - gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); - gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); - counter++; - } - } - n_gtracks = counter; - nGtracks = n_gtracks; - masses.clear(); - - return true; -} - -float ntuple_GraphB::mindrsvpfcand(const pat::PackedCandidate* pfcand) { - - float mindr_ = jetradius_; - for (unsigned int i=0; isize(); ++i) { - if(!pfcand) continue; - //if(!svs.at(i)) continue; - float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); - if (tempdr_ & build): - builder(build), - trackMomentum_(0), - trackEta_(0), - trackEtaRel_(0), - trackPtRel_(0), - trackPPar_(0), - trackDeltaR_(0), - trackPtRatio_(0), - trackPParRatio_(0), - trackSip2dVal_(0), - trackSip2dSig_(0), - trackSip3dVal_(0), - trackSip3dSig_(0), - trackJetDistVal_(0), - trackJetDistSig_(0), - trackImpactPointState_(0) -{ - - -} - - void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ - TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); - if(!PackedCandidate_->hasTrackDetails()) { - TVector3 trackMom3( - PackedCandidate_->momentum().x(), - PackedCandidate_->momentum().y(), - PackedCandidate_->momentum().z() - ); - trackMomentum_=PackedCandidate_->p(); - trackEta_= PackedCandidate_->eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); - trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); - trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); - trackSip2dVal_=0.; - trackSip2dSig_=0.; - trackSip3dVal_=0.; - trackSip3dSig_=0.; - trackJetDistVal_=0.; - trackJetDistSig_=0.; - //trackImpactPointState_=PackedCandidate_->impactPointState(); - return; - } - - const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); - - reco::TransientTrack transientTrack; - transientTrack=builder->build(PseudoTrack); - Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; - Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; - Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; - math::XYZVector trackMom = PseudoTrack.momentum(); - double trackMag = std::sqrt(trackMom.Mag2()); - TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); - - - trackMomentum_=std::sqrt(trackMom.Mag2()); - trackEta_= trackMom.Eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(trackMom); - trackDeltaR_=reco::deltaR(trackMom, jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; - trackPParRatio_=jetDir.Dot(trackMom) / trackMag; - trackSip2dVal_=(meas_ip2d.value()); - - trackSip2dSig_=(meas_ip2d.significance()); - trackSip3dVal_=(meas_ip3d.value()); - - - trackSip3dSig_=meas_ip3d.significance(); - trackJetDistVal_= jetdist.value(); - trackJetDistSig_= jetdist.significance(); - trackImpactPointState_=transientTrack.impactPointState(); - - } - - const float& getTrackDeltaR() const {return trackDeltaR_;} - const float& getTrackEta() const {return trackEta_;} - const float& getTrackEtaRel() const {return trackEtaRel_;} - const float& getTrackJetDistSig() const {return trackJetDistSig_;} - const float& getTrackJetDistVal() const {return trackJetDistVal_;} - const float& getTrackMomentum() const {return trackMomentum_;} - const float& getTrackPPar() const {return trackPPar_;} - const float& getTrackPParRatio() const {return trackPParRatio_;} - const float& getTrackPtRatio() const {return trackPtRatio_;} - const float& getTrackPtRel() const {return trackPtRel_;} - const float& getTrackSip2dSig() const {return trackSip2dSig_;} - const float& getTrackSip2dVal() const {return trackSip2dVal_;} - const float& getTrackSip3dSig() const {return trackSip3dSig_;} - const float& getTrackSip3dVal() const {return trackSip3dVal_;} - const TrajectoryStateOnSurface& getImpactPointState() const {return trackImpactPointState_;} - -private: - - edm::ESHandle& builder; - - float trackMomentum_; - float trackEta_; - float trackEtaRel_; - float trackPtRel_; - float trackPPar_; - float trackDeltaR_; - float trackPtRatio_; - float trackPParRatio_; - float trackSip2dVal_; - float trackSip2dSig_; - float trackSip3dVal_; - float trackSip3dSig_; - - float trackJetDistVal_; - float trackJetDistSig_; - TrajectoryStateOnSurface trackImpactPointState_; - -}; - -ntuple_GraphB::ntuple_GraphB(double jetR):ntuple_content(jetR){} - -ntuple_GraphB::~ntuple_GraphB(){} - -void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){ - min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); -} - -void ntuple_GraphB::initBranches(TTree* tree){ - - addBranch(tree,"n_gtracks",&n_gtracks, "n_gtracks/i"); - addBranch(tree,"nGtracks",&nGtracks, "nGtracks/f"); - - addBranch(tree,"gtrack_pt",>rack_pt, "gtrack_pt[n_gtracks]/f"); - addBranch(tree,"gtrack_eta",>rack_eta, "gtrack_eta[n_gtracks]/f"); - addBranch(tree,"gtrack_phi",>rack_phi, "gtrack_phi[n_gtracks]/f"); - addBranch(tree,"gtrack_mass",>rack_mass, "gtrack_mass[n_gtracks]/f"); - - addBranch(tree,"gtrack_dz", >rack_dz, "gtrack_dz[n_gtracks]/f"); - addBranch(tree,"gtrack_dxy", >rack_dxy, "gtrack_dxy[n_gtracks]/f"); - addBranch(tree,"gtrack_3D_ip", >rack_3D_ip, "gtrack_3D_ip[n_gtracks]/f"); - addBranch(tree,"gtrack_3D_sip", >rack_3D_sip, "gtrack_3D_sip[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_ip", >rack_2D_ip, "gtrack_2D_ip[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_sip", >rack_2D_sip, "gtrack_2D_sip[n_gtracks]/f"); - addBranch(tree,"gtrack_dR", >rack_dR, "gtrack_dR[n_gtracks]/f"); - addBranch(tree,"gtrack_dist_neigh", >rack_dist_neigh, "gtrack_dist_neigh[n_gtracks]/f"); - - addBranch(tree,"gtrack_3D_TrackProbability", >rack_3D_TrackProbability, "gtrack_3D_TrackProbability[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_TrackProbability", >rack_2D_TrackProbability, "gtrack_2D_TrackProbability[n_gtracks]/f"); - - addBranch(tree,"gtrack_chi2reduced",>rack_chi2reduced, "gtrack_chi2reduced[n_gtracks]/f"); - addBranch(tree,"gtrack_nPixelHits",>rack_nPixelHits, "gtrack_nPixelHits[n_gtracks]/f"); - addBranch(tree,"gtrack_nHits",>rack_nHits, "gtrack_nHits[n_gtracks]/f"); - addBranch(tree,"gtrack_jetAxisDistance",>rack_jetAxisDistance, "gtrack_jetAxisDistance[n_gtracks]/f"); - addBranch(tree,"gtrack_jetAxisDlength",>rack_jetAxisDlength, "gtrack_jetAxisDlength[n_gtracks]/f"); - addBranch(tree,"gtrack_PCAtrackFromPV",>rack_PCAtrackFromPV, "gtrack_PCAtrackFromPV[n_gtracks]/f"); - addBranch(tree,"gtrack_dotProdTrack",>rack_dotProdTrack, "gtrack_dotProdTrack[n_gtracks]/f"); - addBranch(tree,"gtrack_dotProdTrack2D",>rack_dotProdTrack2D, "gtrack_dotProdTrack2D[n_gtracks]/f"); - -} - - -void ntuple_GraphB::readEvent(const edm::Event& iEvent){ - iEvent.getByToken(CandidateToken, tracks); - n_Npfcand_=0; - n_Cpfcand_=0; -} - - -void ntuple_GraphB::readSetup(const edm::EventSetup& iSetup){ - - //this part was to be in checkEventSetup, but idk how to call it - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - iSetup.get().get("TransientTrackBuilder", builder); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - - //readEvent only line - iSetup.get().get("TransientTrackBuilder", builder); - -} - -void ntuple_GraphB::checkEventSetup(const edm::EventSetup & iSetup) { - - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - -} - - -bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ - - // pv info - const reco::Vertex &pv = vertices()->at(0); - GlobalPoint pvp(pv.x(),pv.y(),pv.z()); - - std::vector selectedTracks; - std::vector masses; - - double jet_radius = jetR(); - - math::XYZVector jetDir = jet.momentum().Unit(); - GlobalVector direction(jet.px(), jet.py(), jet.pz()); - std::vector > sortedcharged; - std::vector sortedchargedindices; - - const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); - //const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); - - for(size_t k = 0; ksize(); ++k) { - if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { - selectedTracks.push_back(builder->build(tracks->ptrAt(k))); - masses.push_back(tracks->ptrAt(k)->mass()); - } - } - - std::vector > sorted_tracks; - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - float angular_distance=reco::deltaR(jet,it->track()); - sorted_tracks.push_back(sorting::sortingClass - (it-selectedTracks.begin(), -angular_distance, - -1, -1)); - } - std::sort(sorted_tracks.begin(),sorted_tracks.end(),sorting::sortingClass::compareByABCInv); - std::vector sorted_track_indices; - sorted_track_indices=sorting::invertSortingVector(sorted_tracks); - //n_gtracks = std::min(sorted_tracks.size(),max_gtracks); - //nGtracks = n_gtracks; - - - TrackInfoBuilder trackinfo(builder); - //create collection of cpf/npf for the seeding - for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); - if(PackedCandidate){ - if(PackedCandidate->pt() < min_candidate_pt_) continue; - if(PackedCandidate->charge()!=0){ - trackinfo.buildTrackInfo(PackedCandidate,jetDir,direction,pv); - sortedcharged.push_back(sorting::sortingClass - (i, trackinfo.getTrackSip2dSig(), - -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); - } - } - } - std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); - long unsigned int max_cpf = 30; - n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); - sortedchargedindices = sorting::invertSortingVector(sortedcharged); - - //Count the number of gen_daughters and fill the raw_constituent - if (jet.genJet()){ - number_of_gen_daughters = jet.genJet()->numberOfDaughters(); - number_of_daughters = jet.numberOfDaughters(); - for (size_t i = 0; i < number_of_gen_daughters; ++i){ - const reco::Candidate* constit = jet.daughter(i); - raw_gen_constituents.push_back(constit); - } - } - - for (size_t j = 0; j < jet.numberOfDaughters(); j++){ - const reco::Candidate* constit = jet.daughter(j); - if(constit->charge() != 0){ - raw_cpf_constituents.push_back(constit); - } - } - //number_of_cpf_gen = raw_cpf_constituents.size(); - - /*if(jet.genJet()){ - for(size_t m = 0; m < jet.numberOfDaughters(); m++){ - bool gen_10 = false; - bool gen_20 = false; - bool gen_30 = false; - bool gen_40 = false; - bool gen_50 = false; - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(m)); - for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ - if((jet.genJet()->daughter(n)->charge() != 0) && (jet.daughter(m)->charge() != 0) && (PackedCandidate->hasTrackDetails())){ - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.10){ - gen_10 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.20){ - gen_20 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.30){ - gen_30 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.40){ - gen_40 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - jet.daughter(m)->eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - jet.daughter(m)->phi(), 2)) < 0.50){ - gen_50 = true; - } - } - } - if(gen_10){ - num_gen_match10++; - } - if(gen_20){ - num_gen_match20++; - } - if(gen_30){ - num_gen_match30++; - } - if(gen_40){ - num_gen_match40++; - } - if(gen_50){ - num_gen_match50++; - } - } - }*/ - - - //Count the number of parton_daughters and fill the raw_constituent - if(jet.genParton()){ - //Prep jet-parton daughters - int keep = 1; - std::vector part_constituents; - std::vector daughters_constituents; - //int number_of_part_daughters = jet.genParton()->numberOfDaughters(); - for (size_t j = 0; j < jet.genParton()->numberOfDaughters(); ++j){ - const reco::Candidate* constit = jet.genParton()->daughter(j); - part_constituents.push_back(constit); - } - //Loop until we process all the constituents - while (keep != 0){ - keep = 0; - for (size_t k = 0; k < part_constituents.size(); ++k){ - if (part_constituents[k]->numberOfDaughters() != 0){ - keep = 1; - for (size_t m = 0; m < part_constituents[k]->numberOfDaughters(); ++m){ - daughters_constituents.push_back(part_constituents[k]->daughter(m)); - } - } - else{ - raw_part_constituents.push_back(part_constituents[k]); - } - } - part_constituents = daughters_constituents; - daughters_constituents.clear(); - } - number_of_part_gen = raw_part_constituents.size(); - } - - size_t counter= 0; - - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - //is the track in the jet cone? - float angular_distance=reco::deltaR(jet,it->track()); - //std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); - bool hasNeighbour = false; - bool include = false; - float dist_part = -0.01; - float is_matched10 = -1.0; - float is_matched20 = -1.0; - float is_matched30 = -1.0; - float is_matched40 = -1.0; - float is_matched50 = -1.0; - //matching the track with the jet radius - if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ - if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} - //matching the track with a cpf_seed of not - - for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); - if(PackedCandidate->hasTrackDetails()){ - if(PackedCandidate->pt() < min_candidate_pt_) {continue;} - if(PackedCandidate->charge()!=0){ - const reco::Track & PseudoTrack = PackedCandidate->pseudoTrack(); - reco::TransientTrack transientTrack; - transientTrack=builder->build(PseudoTrack); - - TwoTrackMinimumDistance dist; - std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); - float near_angular_dist = reco::deltaR(jet,transientTrack.track()); - //std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); - //float length = 999; - //TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); - //if(closest.isValid()){ - // length = (closest.globalPosition() - pvp).mag(); - //} - if (transientTrack == *it) {continue;} - if (near_angular_dist < jet_radius){ - /*if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. - && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 - && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;}*/ - if(ip.second.significance() < 1.0) {continue;} - if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ - float distance = dist.distance(); - if(distance < 0.02){ - hasNeighbour = true; - dist_part = distance; - } - } - } - } - } - } - if(hasNeighbour){ - int matched_jets = 0; - for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { - const auto& test_jet = coll->at(jet_n); - if(test_jet.pt() < 5.0){continue;} - float new_angular_distance=reco::deltaR(test_jet,it->track()); - if(new_angular_distance < jet_radius){ - matched_jets = matched_jets + 1; - } - } - if(matched_jets != 0){continue;} - include = true; - } - } - if(angular_distance<=jet_radius){ - include = true; - } - - if(include){ - - if(jet.genJet()){ - bool is_gmatched10 = false; - bool is_gmatched20 = false; - bool is_gmatched30 = false; - bool is_gmatched40 = false; - bool is_gmatched50 = false; - - for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ - if(jet.genJet()->daughter(n)->charge() != 0){ - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.10){ - is_gmatched10 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.20){ - is_gmatched20 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.30){ - is_gmatched30 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.40){ - is_gmatched40 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.50){ - is_gmatched50 = true; - } - } - } - if(is_gmatched10){ - num_gen_match10++; - } - if(is_gmatched20){ - num_gen_match20++; - } - if(is_gmatched30){ - num_gen_match30++; - } - if(is_gmatched40){ - num_gen_match40++; - } - if(is_gmatched50){ - num_gen_match50++; - } - } - - if(jet.genParton()){ - is_matched10 = 0; - is_matched20 = 0; - is_matched30 = 0; - is_matched40 = 0; - is_matched50 = 0; - - for(size_t n = 0; n < raw_part_constituents.size(); n++){ - if(raw_part_constituents.at(n)->charge() != 0){ - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.10){ - is_matched10 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.20){ - is_matched20 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.30){ - is_matched30 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.40){ - is_matched40 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.50){ - is_matched50 = 1.0; - } - } - } - if(is_matched10 == 1.0){ - num_match10++; - } - if(is_matched20 == 1.0){ - num_match20++; - } - if(is_matched30 == 1.0){ - num_match30++; - } - if(is_matched40 == 1.0){ - num_match40++; - } - if(is_matched50 == 1.0){ - num_match50++; - } - } - - std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); - std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); - std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); - TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); - if(counter >= max_gtracks){continue;} - gtrack_dR[counter] = catchInfsAndBound(reco::deltaR(jet,it->track()), -1.0,0.0,10.0); - gtrack_dist_neigh[counter] = catchInfsAndBound(dist_part, -10.0,-5.0,100.0); - float length=999; - if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); - gtrack_jetAxisDlength[counter] = catchInfsAndBound(length,-1.0,-100.0,100.0); - gtrack_jetAxisDistance[counter] = catchInfsAndBound(jet_dist.second.value(),-1.0,-100.0,100.0); - gtrack_chi2reduced[counter] = catchInfsAndBound(it->track().normalizedChi2(),-1.0,-100.0,300.0); - gtrack_3D_ip[counter] = catchInfsAndBound(ip.second.value(),0.0,-500.0,500.0); - gtrack_3D_sip[counter] = catchInfsAndBound(ip.second.significance(),0.0,-500.0,500.0); - gtrack_2D_ip[counter] = catchInfsAndBound(ip2d.second.value(),0.0,-500.0,500.0); - gtrack_2D_sip[counter] = catchInfsAndBound(ip2d.second.significance(),0.0,-500.0,500.0); - gtrack_pt[counter] = catchInfsAndBound(it->track().pt(),0.0,-100.0,1000.0); - gtrack_eta[counter] = catchInfsAndBound(it->track().eta(),0.0,-2.5,2.5); - gtrack_phi[counter] = catchInfsAndBound(it->track().phi(),0.0,-5,5); - gtrack_mass[counter] = catchInfsAndBound(masses[it-selectedTracks.begin()],0.0,-1.0,500.0); - gtrack_dxy[counter] = catchInfsAndBound(it->track().dxy(pv.position()),0.0,-100.0,100.0); - gtrack_dz[counter] = catchInfsAndBound(it->track().dz(pv.position()),0.0,-100.0,100.0); - gtrack_PCAtrackFromPV[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).mag() , -1.0,-100.0,100.0); - gtrack_dotProdTrack[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).unit().dot(it->impactPointState().globalDirection().unit()), -3.0,-3.0,3.0); - GlobalVector trackDir2D(it->impactPointState().globalDirection().x(),it->impactPointState().globalDirection().y(),0.); - GlobalPoint pvp2d(pv.x(),pv.y(),0.0); - GlobalPoint trackPos2D(it->impactPointState().globalPosition().x(),it->impactPointState().globalPosition().y(),0.0); - gtrack_dotProdTrack2D[counter] = catchInfsAndBound( (trackPos2D-pvp2d).unit().dot(trackDir2D.unit()), -3.0,-3.0,3.0); - std::pair probability; - //probability with 3D ip - probability = m_probabilityEstimator->probability(0, 0,ip.second.significance(),it->track(),jet,pv); - double prob3D=(probability.first ? probability.second : -1.); - gtrack_3D_TrackProbability[counter] = catchInfsAndBound(prob3D,-2.0,-100.0,100.0); - //probability with 2D ip - probability = m_probabilityEstimator->probability(0, 1,ip2d.second.significance(),it->track(),jet,pv); - double prob2D=(probability.first ? probability.second : -1.); - gtrack_2D_TrackProbability[counter] = catchInfsAndBound(prob2D,-2.0,-100.0,100.0); - - gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); - gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); - gtrack_isMatched10[counter] = is_matched10; - gtrack_isMatched20[counter] = is_matched20; - gtrack_isMatched30[counter] = is_matched30; - gtrack_isMatched40[counter] = is_matched40; - gtrack_isMatched50[counter] = is_matched50; - counter++; - } - } - n_gtracks = counter; - nGtracks = n_gtracks; - n_daughters = number_of_daughters; - n_gen_daughters = number_of_gen_daughters; - n_gen_constit = number_of_part_gen; - n_match10 = num_match10; - n_match20 = num_match20; - n_match30 = num_match30; - n_match40 = num_match40; - n_match50 = num_match50; - - n_gen_match10 = num_gen_match10; - n_gen_match20 = num_gen_match20; - n_gen_match30 = num_gen_match30; - n_gen_match40 = num_gen_match40; - n_gen_match50 = num_gen_match50; - - masses.clear(); - - return true; -} - -float ntuple_GraphB::mindrsvpfcand(const pat::PackedCandidate* pfcand) { - - float mindr_ = jetradius_; - for (unsigned int i=0; isize(); ++i) { - if(!pfcand) continue; - //if(!svs.at(i)) continue; - float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); - if (tempdr_ selectedTracks; std::vector masses; - std::vector raw_gen_constituents; - std::vector raw_cpf_constituents; - std::vector raw_part_constituents; - float number_of_daughters = -1.0; - float number_of_gen_daughters = -1.0; - //float number_of_cpf_gen = -1.0; - float number_of_part_gen = -1.0; - double jet_radius = jetR(); math::XYZVector jetDir = jet.momentum().Unit(); @@ -340,12 +329,6 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con bool include = false; float dist_part = -0.01; - float is_matched10 = -1.0; - float is_matched20 = -1.0; - float is_matched30 = -1.0; - float is_matched40 = -1.0; - float is_matched50 = -1.0; - //matching the track with the jet radius if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} @@ -406,92 +389,6 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con if(include){ - if(jet.genJet()){ - bool is_gmatched10 = false; - bool is_gmatched20 = false; - bool is_gmatched30 = false; - bool is_gmatched40 = false; - bool is_gmatched50 = false; - - for(size_t n = 0; n < jet.genJet()->numberOfDaughters(); n++){ - if(jet.genJet()->daughter(n)->charge() != 0){ - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.10){ - is_gmatched10 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.20){ - is_gmatched20 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.30){ - is_gmatched30 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.40){ - is_gmatched40 = true; - } - if(std::sqrt(std::pow(jet.genJet()->daughter(n)->eta() - it->track().eta(), 2) + std::pow(jet.genJet()->daughter(n)->phi() - it->track().phi(), 2)) < 0.50){ - is_gmatched50 = true; - } - } - } - if(is_gmatched10){ - num_gen_match10++; - } - if(is_gmatched20){ - num_gen_match20++; - } - if(is_gmatched30){ - num_gen_match30++; - } - if(is_gmatched40){ - num_gen_match40++; - } - if(is_gmatched50){ - num_gen_match50++; - } - } - - if(jet.genParton()){ - is_matched10 = 0; - is_matched20 = 0; - is_matched30 = 0; - is_matched40 = 0; - is_matched50 = 0; - - for(size_t n = 0; n < raw_part_constituents.size(); n++){ - if(raw_part_constituents.at(n)->charge() != 0){ - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.10){ - is_matched10 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.20){ - is_matched20 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.30){ - is_matched30 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.40){ - is_matched40 = 1.0; - } - if(std::sqrt(std::pow(raw_part_constituents.at(n)->eta() - it->track().eta(), 2) + std::pow(raw_part_constituents.at(n)->phi() - it->track().phi(), 2)) < 0.50){ - is_matched50 = 1.0; - } - } - } - if(is_matched10 == 1.0){ - num_match10++; - } - if(is_matched20 == 1.0){ - num_match20++; - } - if(is_matched30 == 1.0){ - num_match30++; - } - if(is_matched40 == 1.0){ - num_match40++; - } - if(is_matched50 == 1.0){ - num_match50++; - } - } - std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); @@ -532,31 +429,11 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); - gtrack_isMatched10[counter] = is_matched10; - gtrack_isMatched20[counter] = is_matched20; - gtrack_isMatched30[counter] = is_matched30; - gtrack_isMatched40[counter] = is_matched40; - gtrack_isMatched50[counter] = is_matched50; counter++; } } n_gtracks = counter; nGtracks = n_gtracks; - n_daughters = number_of_daughters; - n_gen_daughters = number_of_gen_daughters; - n_gen_constit = number_of_part_gen; - n_match10 = num_match10; - n_match20 = num_match20; - n_match30 = num_match30; - n_match40 = num_match40; - n_match50 = num_match50; - - n_gen_match10 = num_gen_match10; - n_gen_match20 = num_gen_match20; - n_gen_match30 = num_gen_match30; - n_gen_match40 = num_gen_match40; - n_gen_match50 = num_gen_match50; - masses.clear(); return true; From 5b731aee4db0d39d77ec912ab4c06fb403469b94 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Thu, 30 Sep 2021 10:56:25 +0200 Subject: [PATCH 04/21] debug --- DeepNtuplizer/interface/ntuple_GraphB.h | 1 + DeepNtuplizer/src/ntuple_GraphB.cc | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/DeepNtuplizer/interface/ntuple_GraphB.h b/DeepNtuplizer/interface/ntuple_GraphB.h index 154654e813c..43d571d882b 100644 --- a/DeepNtuplizer/interface/ntuple_GraphB.h +++ b/DeepNtuplizer/interface/ntuple_GraphB.h @@ -51,6 +51,7 @@ class ntuple_GraphB: public ntuple_content{ static constexpr size_t max_gtracks=100; float nGtracks=0; + unsigned int n_gtracks=0; float gtrack_pt[max_gtracks]; float gtrack_eta[max_gtracks]; diff --git a/DeepNtuplizer/src/ntuple_GraphB.cc b/DeepNtuplizer/src/ntuple_GraphB.cc index 917fb0bcbe7..d40b2eea63f 100644 --- a/DeepNtuplizer/src/ntuple_GraphB.cc +++ b/DeepNtuplizer/src/ntuple_GraphB.cc @@ -330,7 +330,7 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con float dist_part = -0.01; //matching the track with the jet radius - if(/*(angular_distance < 1.50*jet_radius) &&*/ (angular_distance > jet_radius)){ + if((angular_distance < 1.50*jet_radius) && (angular_distance > jet_radius)){ if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} //matching the track with a cpf_seed of not @@ -346,18 +346,18 @@ bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, con TwoTrackMinimumDistance dist; std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); float near_angular_dist = reco::deltaR(jet,transientTrack.track()); - //std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); - //float length = 999; - //TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); - //if(closest.isValid()){ - // length = (closest.globalPosition() - pvp).mag(); - //} + std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); + float length = 999; + TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); + if(closest.isValid()){ + length = (closest.globalPosition() - pvp).mag(); + } if (transientTrack == *it) {continue;} if (near_angular_dist < jet_radius){ - /*if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. + if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 - && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;}*/ - if(ip.second.significance() < 1.0) {continue;} + && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;} + /*if(ip.second.significance() < 1.0) {continue;}*/ if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ float distance = dist.distance(); if(distance < 0.02){ From f20c73c23949e310a0347a8d939cbb6b49b57487 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Thu, 14 Oct 2021 11:38:55 +0200 Subject: [PATCH 05/21] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3644d0c8b39..663dd430eff 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ cmsrel CMSSW_10_6_0 cd CMSSW_10_6_0/src/ cmsenv git cms-init -git clone https://github.com/emilbols/DeepNTuples +git clone https://github.com/AlexDeMoor/DeepNTuples cd DeepNTuples git checkout 106X # Add JetToolBox From 6af3575461ac2f8988c19661aa83ac6d1bc00e39 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Thu, 28 Apr 2022 14:21:05 +0200 Subject: [PATCH 06/21] test --- DeepNtuplizer/interface/ntuple_SV.h | 1 + DeepNtuplizer/interface/ntuple_pfCands.h | 95 ++- DeepNtuplizer/production/DV_small.cfg | 12 + DeepNtuplizer/production/DeepNtuplizer.py | 39 +- DeepNtuplizer/src/ntuple_SV.cc | 2 + DeepNtuplizer/src/ntuple_pfCands.cc | 637 ++++++++++++++++-- test/DeepNtuplizer.py | 313 +++++++++ test/ntuple_bulk_grav_1/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_bulk_grav_1/batch/condor_0.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_1.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_10.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_100.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_101.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_102.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_103.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_104.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_105.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_106.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_107.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_108.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_109.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_11.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_110.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_111.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_112.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_113.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_114.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_115.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_116.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_117.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_118.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_119.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_12.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_120.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_121.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_122.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_123.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_124.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_125.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_126.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_127.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_128.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_129.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_13.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_130.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_131.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_132.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_133.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_134.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_135.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_136.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_137.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_138.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_139.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_14.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_140.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_141.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_142.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_143.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_144.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_145.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_146.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_147.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_148.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_149.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_15.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_150.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_151.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_152.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_153.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_154.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_155.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_156.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_157.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_158.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_159.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_16.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_160.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_161.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_162.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_163.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_164.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_165.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_166.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_167.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_168.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_169.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_17.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_170.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_171.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_172.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_173.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_174.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_175.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_176.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_177.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_178.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_179.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_18.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_180.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_181.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_182.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_183.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_184.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_185.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_186.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_187.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_188.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_189.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_19.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_190.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_191.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_192.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_193.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_194.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_195.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_196.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_197.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_198.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_199.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_2.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_20.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_200.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_201.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_21.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_22.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_23.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_24.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_25.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_26.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_27.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_28.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_29.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_3.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_30.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_31.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_32.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_33.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_34.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_35.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_36.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_37.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_38.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_39.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_4.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_40.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_41.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_42.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_43.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_44.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_45.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_46.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_47.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_48.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_49.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_5.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_50.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_51.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_52.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_53.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_54.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_55.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_56.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_57.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_58.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_59.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_6.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_60.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_61.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_62.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_63.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_64.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_65.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_66.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_67.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_68.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_69.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_7.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_70.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_71.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_72.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_73.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_74.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_75.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_76.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_77.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_78.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_79.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_8.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_80.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_81.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_82.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_83.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_84.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_85.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_86.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_87.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_88.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_89.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_9.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_90.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_91.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_92.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_93.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_94.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_95.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_96.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_97.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_98.sub | 13 + test/ntuple_bulk_grav_1/batch/condor_99.sub | 13 + test/ntuple_bulk_grav_1/batch/nJobs.202 | 0 test/ntuple_bulk_grav_1/batch/sge_0.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_1.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_10.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_100.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_101.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_102.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_103.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_104.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_105.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_106.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_107.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_108.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_109.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_11.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_110.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_111.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_112.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_113.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_114.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_115.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_116.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_117.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_118.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_119.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_12.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_120.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_121.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_122.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_123.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_124.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_125.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_126.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_127.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_128.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_129.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_13.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_130.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_131.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_132.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_133.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_134.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_135.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_136.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_137.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_138.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_139.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_14.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_140.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_141.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_142.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_143.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_144.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_145.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_146.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_147.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_148.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_149.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_15.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_150.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_151.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_152.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_153.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_154.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_155.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_156.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_157.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_158.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_159.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_16.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_160.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_161.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_162.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_163.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_164.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_165.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_166.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_167.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_168.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_169.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_17.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_170.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_171.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_172.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_173.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_174.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_175.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_176.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_177.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_178.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_179.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_18.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_180.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_181.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_182.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_183.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_184.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_185.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_186.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_187.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_188.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_189.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_19.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_190.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_191.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_192.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_193.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_194.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_195.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_196.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_197.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_198.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_199.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_2.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_20.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_200.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_201.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_21.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_22.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_23.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_24.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_25.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_26.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_27.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_28.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_29.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_3.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_30.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_31.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_32.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_33.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_34.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_35.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_36.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_37.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_38.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_39.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_4.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_40.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_41.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_42.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_43.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_44.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_45.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_46.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_47.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_48.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_49.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_5.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_50.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_51.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_52.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_53.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_54.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_55.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_56.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_57.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_58.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_59.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_6.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_60.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_61.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_62.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_63.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_64.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_65.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_66.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_67.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_68.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_69.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_7.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_70.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_71.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_72.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_73.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_74.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_75.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_76.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_77.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_78.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_79.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_8.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_80.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_81.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_82.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_83.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_84.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_85.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_86.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_87.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_88.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_89.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_9.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_90.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_91.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_92.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_93.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_94.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_95.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_96.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_97.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_98.sh | 28 + test/ntuple_bulk_grav_1/batch/sge_99.sh | 28 + test/ntuple_bulk_grav_1/batchscript.sh | 51 ++ test/ntuple_bulk_grav_1/condor.sub | 13 + test/ntuple_bulk_grav_1/helper | 1 + test/ntuple_bulk_grav_1/output | 1 + test/ntuple_bulk_grav_1/sge_sub.sh | 202 ++++++ test/ntuple_bulk_grav_2/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_bulk_grav_2/batch/condor_0.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_1.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_10.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_100.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_101.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_102.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_103.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_104.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_105.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_106.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_107.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_108.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_109.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_11.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_110.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_111.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_112.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_113.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_114.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_115.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_116.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_117.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_118.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_119.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_12.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_120.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_121.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_122.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_123.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_124.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_125.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_126.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_127.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_128.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_129.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_13.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_130.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_131.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_132.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_133.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_134.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_135.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_136.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_137.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_138.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_139.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_14.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_140.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_141.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_142.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_143.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_144.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_145.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_146.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_147.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_148.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_149.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_15.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_150.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_151.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_152.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_153.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_154.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_155.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_156.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_157.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_158.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_159.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_16.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_160.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_161.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_162.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_163.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_164.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_165.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_166.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_167.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_168.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_169.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_17.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_170.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_171.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_172.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_173.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_174.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_175.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_176.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_177.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_178.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_179.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_18.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_19.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_2.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_20.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_21.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_22.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_23.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_24.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_25.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_26.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_27.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_28.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_29.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_3.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_30.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_31.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_32.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_33.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_34.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_35.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_36.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_37.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_38.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_39.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_4.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_40.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_41.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_42.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_43.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_44.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_45.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_46.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_47.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_48.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_49.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_5.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_50.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_51.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_52.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_53.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_54.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_55.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_56.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_57.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_58.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_59.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_6.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_60.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_61.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_62.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_63.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_64.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_65.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_66.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_67.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_68.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_69.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_7.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_70.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_71.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_72.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_73.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_74.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_75.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_76.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_77.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_78.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_79.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_8.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_80.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_81.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_82.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_83.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_84.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_85.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_86.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_87.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_88.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_89.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_9.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_90.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_91.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_92.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_93.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_94.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_95.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_96.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_97.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_98.sub | 13 + test/ntuple_bulk_grav_2/batch/condor_99.sub | 13 + test/ntuple_bulk_grav_2/batch/nJobs.180 | 0 test/ntuple_bulk_grav_2/batch/sge_0.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_1.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_10.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_100.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_101.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_102.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_103.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_104.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_105.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_106.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_107.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_108.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_109.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_11.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_110.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_111.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_112.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_113.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_114.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_115.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_116.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_117.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_118.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_119.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_12.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_120.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_121.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_122.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_123.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_124.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_125.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_126.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_127.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_128.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_129.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_13.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_130.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_131.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_132.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_133.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_134.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_135.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_136.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_137.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_138.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_139.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_14.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_140.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_141.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_142.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_143.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_144.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_145.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_146.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_147.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_148.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_149.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_15.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_150.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_151.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_152.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_153.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_154.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_155.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_156.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_157.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_158.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_159.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_16.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_160.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_161.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_162.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_163.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_164.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_165.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_166.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_167.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_168.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_169.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_17.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_170.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_171.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_172.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_173.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_174.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_175.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_176.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_177.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_178.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_179.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_18.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_19.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_2.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_20.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_21.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_22.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_23.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_24.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_25.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_26.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_27.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_28.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_29.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_3.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_30.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_31.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_32.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_33.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_34.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_35.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_36.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_37.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_38.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_39.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_4.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_40.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_41.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_42.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_43.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_44.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_45.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_46.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_47.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_48.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_49.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_5.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_50.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_51.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_52.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_53.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_54.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_55.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_56.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_57.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_58.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_59.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_6.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_60.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_61.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_62.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_63.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_64.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_65.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_66.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_67.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_68.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_69.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_7.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_70.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_71.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_72.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_73.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_74.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_75.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_76.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_77.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_78.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_79.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_8.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_80.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_81.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_82.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_83.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_84.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_85.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_86.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_87.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_88.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_89.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_9.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_90.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_91.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_92.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_93.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_94.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_95.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_96.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_97.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_98.sh | 28 + test/ntuple_bulk_grav_2/batch/sge_99.sh | 28 + test/ntuple_bulk_grav_2/batchscript.sh | 51 ++ test/ntuple_bulk_grav_2/condor.sub | 13 + test/ntuple_bulk_grav_2/helper | 1 + test/ntuple_bulk_grav_2/output | 1 + test/ntuple_bulk_grav_2/sge_sub.sh | 180 +++++ test/ntuple_bulk_grav_3/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_bulk_grav_3/batch/condor_0.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_1.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_10.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_100.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_101.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_102.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_103.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_104.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_105.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_106.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_107.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_108.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_109.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_11.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_110.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_111.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_112.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_113.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_114.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_115.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_116.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_117.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_118.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_119.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_12.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_120.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_121.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_122.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_123.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_124.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_125.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_126.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_127.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_128.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_129.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_13.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_130.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_131.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_132.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_133.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_134.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_135.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_136.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_137.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_138.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_139.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_14.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_140.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_141.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_142.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_143.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_144.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_145.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_146.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_147.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_148.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_149.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_15.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_150.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_151.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_152.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_153.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_154.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_155.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_156.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_157.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_158.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_159.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_16.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_160.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_161.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_162.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_163.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_164.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_165.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_166.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_167.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_168.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_169.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_17.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_170.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_171.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_172.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_173.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_174.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_175.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_176.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_177.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_178.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_179.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_18.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_180.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_181.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_182.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_19.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_2.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_20.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_21.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_22.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_23.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_24.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_25.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_26.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_27.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_28.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_29.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_3.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_30.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_31.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_32.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_33.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_34.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_35.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_36.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_37.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_38.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_39.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_4.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_40.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_41.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_42.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_43.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_44.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_45.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_46.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_47.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_48.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_49.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_5.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_50.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_51.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_52.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_53.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_54.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_55.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_56.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_57.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_58.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_59.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_6.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_60.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_61.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_62.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_63.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_64.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_65.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_66.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_67.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_68.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_69.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_7.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_70.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_71.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_72.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_73.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_74.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_75.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_76.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_77.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_78.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_79.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_8.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_80.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_81.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_82.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_83.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_84.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_85.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_86.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_87.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_88.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_89.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_9.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_90.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_91.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_92.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_93.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_94.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_95.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_96.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_97.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_98.sub | 13 + test/ntuple_bulk_grav_3/batch/condor_99.sub | 13 + test/ntuple_bulk_grav_3/batch/nJobs.183 | 0 test/ntuple_bulk_grav_3/batch/sge_0.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_1.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_10.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_100.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_101.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_102.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_103.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_104.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_105.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_106.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_107.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_108.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_109.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_11.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_110.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_111.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_112.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_113.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_114.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_115.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_116.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_117.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_118.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_119.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_12.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_120.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_121.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_122.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_123.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_124.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_125.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_126.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_127.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_128.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_129.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_13.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_130.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_131.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_132.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_133.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_134.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_135.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_136.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_137.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_138.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_139.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_14.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_140.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_141.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_142.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_143.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_144.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_145.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_146.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_147.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_148.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_149.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_15.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_150.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_151.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_152.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_153.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_154.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_155.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_156.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_157.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_158.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_159.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_16.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_160.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_161.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_162.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_163.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_164.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_165.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_166.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_167.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_168.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_169.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_17.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_170.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_171.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_172.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_173.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_174.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_175.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_176.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_177.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_178.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_179.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_18.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_180.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_181.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_182.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_19.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_2.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_20.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_21.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_22.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_23.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_24.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_25.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_26.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_27.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_28.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_29.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_3.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_30.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_31.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_32.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_33.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_34.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_35.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_36.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_37.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_38.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_39.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_4.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_40.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_41.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_42.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_43.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_44.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_45.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_46.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_47.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_48.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_49.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_5.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_50.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_51.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_52.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_53.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_54.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_55.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_56.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_57.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_58.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_59.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_6.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_60.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_61.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_62.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_63.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_64.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_65.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_66.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_67.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_68.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_69.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_7.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_70.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_71.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_72.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_73.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_74.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_75.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_76.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_77.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_78.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_79.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_8.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_80.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_81.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_82.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_83.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_84.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_85.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_86.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_87.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_88.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_89.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_9.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_90.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_91.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_92.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_93.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_94.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_95.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_96.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_97.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_98.sh | 28 + test/ntuple_bulk_grav_3/batch/sge_99.sh | 28 + test/ntuple_bulk_grav_3/batchscript.sh | 51 ++ test/ntuple_bulk_grav_3/condor.sub | 13 + test/ntuple_bulk_grav_3/helper | 1 + test/ntuple_bulk_grav_3/output | 1 + test/ntuple_bulk_grav_3/sge_sub.sh | 183 +++++ test/ntuple_qcd_1000_1500/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_1000_1500/batch/condor_0.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_1.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_10.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_100.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_101.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_102.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_103.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_104.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_105.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_106.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_107.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_108.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_109.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_11.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_110.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_111.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_112.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_113.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_114.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_115.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_116.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_117.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_118.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_119.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_12.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_120.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_121.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_122.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_123.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_124.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_125.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_126.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_127.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_128.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_129.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_13.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_130.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_131.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_132.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_133.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_134.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_135.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_136.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_137.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_138.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_139.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_14.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_140.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_141.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_142.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_143.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_144.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_145.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_146.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_147.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_148.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_149.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_15.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_150.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_151.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_152.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_153.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_154.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_155.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_156.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_157.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_158.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_159.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_16.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_160.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_161.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_162.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_163.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_164.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_165.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_166.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_167.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_168.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_169.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_17.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_170.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_171.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_172.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_173.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_174.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_175.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_176.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_177.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_178.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_179.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_18.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_180.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_181.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_182.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_183.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_184.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_185.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_186.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_187.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_188.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_189.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_19.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_190.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_191.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_192.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_193.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_194.sub | 13 + .../ntuple_qcd_1000_1500/batch/condor_195.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_2.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_20.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_21.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_22.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_23.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_24.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_25.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_26.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_27.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_28.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_29.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_3.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_30.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_31.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_32.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_33.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_34.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_35.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_36.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_37.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_38.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_39.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_4.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_40.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_41.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_42.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_43.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_44.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_45.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_46.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_47.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_48.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_49.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_5.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_50.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_51.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_52.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_53.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_54.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_55.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_56.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_57.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_58.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_59.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_6.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_60.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_61.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_62.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_63.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_64.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_65.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_66.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_67.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_68.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_69.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_7.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_70.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_71.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_72.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_73.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_74.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_75.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_76.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_77.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_78.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_79.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_8.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_80.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_81.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_82.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_83.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_84.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_85.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_86.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_87.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_88.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_89.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_9.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_90.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_91.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_92.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_93.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_94.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_95.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_96.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_97.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_98.sub | 13 + test/ntuple_qcd_1000_1500/batch/condor_99.sub | 13 + test/ntuple_qcd_1000_1500/batch/nJobs.196 | 0 test/ntuple_qcd_1000_1500/batch/sge_0.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_1.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_10.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_100.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_101.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_102.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_103.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_104.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_105.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_106.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_107.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_108.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_109.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_11.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_110.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_111.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_112.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_113.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_114.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_115.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_116.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_117.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_118.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_119.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_12.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_120.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_121.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_122.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_123.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_124.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_125.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_126.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_127.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_128.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_129.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_13.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_130.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_131.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_132.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_133.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_134.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_135.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_136.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_137.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_138.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_139.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_14.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_140.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_141.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_142.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_143.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_144.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_145.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_146.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_147.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_148.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_149.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_15.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_150.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_151.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_152.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_153.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_154.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_155.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_156.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_157.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_158.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_159.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_16.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_160.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_161.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_162.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_163.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_164.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_165.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_166.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_167.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_168.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_169.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_17.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_170.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_171.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_172.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_173.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_174.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_175.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_176.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_177.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_178.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_179.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_18.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_180.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_181.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_182.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_183.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_184.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_185.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_186.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_187.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_188.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_189.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_19.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_190.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_191.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_192.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_193.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_194.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_195.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_2.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_20.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_21.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_22.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_23.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_24.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_25.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_26.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_27.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_28.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_29.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_3.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_30.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_31.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_32.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_33.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_34.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_35.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_36.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_37.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_38.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_39.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_4.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_40.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_41.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_42.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_43.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_44.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_45.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_46.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_47.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_48.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_49.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_5.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_50.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_51.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_52.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_53.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_54.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_55.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_56.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_57.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_58.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_59.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_6.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_60.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_61.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_62.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_63.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_64.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_65.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_66.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_67.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_68.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_69.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_7.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_70.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_71.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_72.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_73.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_74.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_75.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_76.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_77.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_78.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_79.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_8.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_80.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_81.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_82.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_83.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_84.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_85.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_86.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_87.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_88.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_89.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_9.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_90.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_91.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_92.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_93.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_94.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_95.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_96.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_97.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_98.sh | 28 + test/ntuple_qcd_1000_1500/batch/sge_99.sh | 28 + test/ntuple_qcd_1000_1500/batchscript.sh | 51 ++ test/ntuple_qcd_1000_1500/condor.sub | 13 + test/ntuple_qcd_1000_1500/helper | 1 + test/ntuple_qcd_1000_1500/output | 1 + test/ntuple_qcd_1000_1500/sge_sub.sh | 196 ++++++ test/ntuple_qcd_100_200/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_100_200/batch/condor_0.sub | 13 + test/ntuple_qcd_100_200/batch/condor_1.sub | 13 + test/ntuple_qcd_100_200/batch/condor_10.sub | 13 + test/ntuple_qcd_100_200/batch/condor_100.sub | 13 + test/ntuple_qcd_100_200/batch/condor_101.sub | 13 + test/ntuple_qcd_100_200/batch/condor_102.sub | 13 + test/ntuple_qcd_100_200/batch/condor_103.sub | 13 + test/ntuple_qcd_100_200/batch/condor_104.sub | 13 + test/ntuple_qcd_100_200/batch/condor_105.sub | 13 + test/ntuple_qcd_100_200/batch/condor_106.sub | 13 + test/ntuple_qcd_100_200/batch/condor_107.sub | 13 + test/ntuple_qcd_100_200/batch/condor_108.sub | 13 + test/ntuple_qcd_100_200/batch/condor_109.sub | 13 + test/ntuple_qcd_100_200/batch/condor_11.sub | 13 + test/ntuple_qcd_100_200/batch/condor_110.sub | 13 + test/ntuple_qcd_100_200/batch/condor_111.sub | 13 + test/ntuple_qcd_100_200/batch/condor_112.sub | 13 + test/ntuple_qcd_100_200/batch/condor_113.sub | 13 + test/ntuple_qcd_100_200/batch/condor_114.sub | 13 + test/ntuple_qcd_100_200/batch/condor_115.sub | 13 + test/ntuple_qcd_100_200/batch/condor_116.sub | 13 + test/ntuple_qcd_100_200/batch/condor_117.sub | 13 + test/ntuple_qcd_100_200/batch/condor_118.sub | 13 + test/ntuple_qcd_100_200/batch/condor_119.sub | 13 + test/ntuple_qcd_100_200/batch/condor_12.sub | 13 + test/ntuple_qcd_100_200/batch/condor_120.sub | 13 + test/ntuple_qcd_100_200/batch/condor_121.sub | 13 + test/ntuple_qcd_100_200/batch/condor_122.sub | 13 + test/ntuple_qcd_100_200/batch/condor_123.sub | 13 + test/ntuple_qcd_100_200/batch/condor_124.sub | 13 + test/ntuple_qcd_100_200/batch/condor_125.sub | 13 + test/ntuple_qcd_100_200/batch/condor_126.sub | 13 + test/ntuple_qcd_100_200/batch/condor_127.sub | 13 + test/ntuple_qcd_100_200/batch/condor_128.sub | 13 + test/ntuple_qcd_100_200/batch/condor_129.sub | 13 + test/ntuple_qcd_100_200/batch/condor_13.sub | 13 + test/ntuple_qcd_100_200/batch/condor_130.sub | 13 + test/ntuple_qcd_100_200/batch/condor_131.sub | 13 + test/ntuple_qcd_100_200/batch/condor_132.sub | 13 + test/ntuple_qcd_100_200/batch/condor_133.sub | 13 + test/ntuple_qcd_100_200/batch/condor_134.sub | 13 + test/ntuple_qcd_100_200/batch/condor_135.sub | 13 + test/ntuple_qcd_100_200/batch/condor_136.sub | 13 + test/ntuple_qcd_100_200/batch/condor_137.sub | 13 + test/ntuple_qcd_100_200/batch/condor_138.sub | 13 + test/ntuple_qcd_100_200/batch/condor_139.sub | 13 + test/ntuple_qcd_100_200/batch/condor_14.sub | 13 + test/ntuple_qcd_100_200/batch/condor_140.sub | 13 + test/ntuple_qcd_100_200/batch/condor_141.sub | 13 + test/ntuple_qcd_100_200/batch/condor_142.sub | 13 + test/ntuple_qcd_100_200/batch/condor_143.sub | 13 + test/ntuple_qcd_100_200/batch/condor_144.sub | 13 + test/ntuple_qcd_100_200/batch/condor_145.sub | 13 + test/ntuple_qcd_100_200/batch/condor_146.sub | 13 + test/ntuple_qcd_100_200/batch/condor_147.sub | 13 + test/ntuple_qcd_100_200/batch/condor_148.sub | 13 + test/ntuple_qcd_100_200/batch/condor_149.sub | 13 + test/ntuple_qcd_100_200/batch/condor_15.sub | 13 + test/ntuple_qcd_100_200/batch/condor_150.sub | 13 + test/ntuple_qcd_100_200/batch/condor_151.sub | 13 + test/ntuple_qcd_100_200/batch/condor_152.sub | 13 + test/ntuple_qcd_100_200/batch/condor_153.sub | 13 + test/ntuple_qcd_100_200/batch/condor_154.sub | 13 + test/ntuple_qcd_100_200/batch/condor_155.sub | 13 + test/ntuple_qcd_100_200/batch/condor_156.sub | 13 + test/ntuple_qcd_100_200/batch/condor_157.sub | 13 + test/ntuple_qcd_100_200/batch/condor_158.sub | 13 + test/ntuple_qcd_100_200/batch/condor_159.sub | 13 + test/ntuple_qcd_100_200/batch/condor_16.sub | 13 + test/ntuple_qcd_100_200/batch/condor_160.sub | 13 + test/ntuple_qcd_100_200/batch/condor_161.sub | 13 + test/ntuple_qcd_100_200/batch/condor_162.sub | 13 + test/ntuple_qcd_100_200/batch/condor_163.sub | 13 + test/ntuple_qcd_100_200/batch/condor_164.sub | 13 + test/ntuple_qcd_100_200/batch/condor_165.sub | 13 + test/ntuple_qcd_100_200/batch/condor_166.sub | 13 + test/ntuple_qcd_100_200/batch/condor_167.sub | 13 + test/ntuple_qcd_100_200/batch/condor_168.sub | 13 + test/ntuple_qcd_100_200/batch/condor_169.sub | 13 + test/ntuple_qcd_100_200/batch/condor_17.sub | 13 + test/ntuple_qcd_100_200/batch/condor_170.sub | 13 + test/ntuple_qcd_100_200/batch/condor_171.sub | 13 + test/ntuple_qcd_100_200/batch/condor_172.sub | 13 + test/ntuple_qcd_100_200/batch/condor_173.sub | 13 + test/ntuple_qcd_100_200/batch/condor_174.sub | 13 + test/ntuple_qcd_100_200/batch/condor_175.sub | 13 + test/ntuple_qcd_100_200/batch/condor_176.sub | 13 + test/ntuple_qcd_100_200/batch/condor_177.sub | 13 + test/ntuple_qcd_100_200/batch/condor_178.sub | 13 + test/ntuple_qcd_100_200/batch/condor_179.sub | 13 + test/ntuple_qcd_100_200/batch/condor_18.sub | 13 + test/ntuple_qcd_100_200/batch/condor_180.sub | 13 + test/ntuple_qcd_100_200/batch/condor_181.sub | 13 + test/ntuple_qcd_100_200/batch/condor_182.sub | 13 + test/ntuple_qcd_100_200/batch/condor_183.sub | 13 + test/ntuple_qcd_100_200/batch/condor_184.sub | 13 + test/ntuple_qcd_100_200/batch/condor_185.sub | 13 + test/ntuple_qcd_100_200/batch/condor_186.sub | 13 + test/ntuple_qcd_100_200/batch/condor_187.sub | 13 + test/ntuple_qcd_100_200/batch/condor_188.sub | 13 + test/ntuple_qcd_100_200/batch/condor_189.sub | 13 + test/ntuple_qcd_100_200/batch/condor_19.sub | 13 + test/ntuple_qcd_100_200/batch/condor_190.sub | 13 + test/ntuple_qcd_100_200/batch/condor_191.sub | 13 + test/ntuple_qcd_100_200/batch/condor_192.sub | 13 + test/ntuple_qcd_100_200/batch/condor_193.sub | 13 + test/ntuple_qcd_100_200/batch/condor_194.sub | 13 + test/ntuple_qcd_100_200/batch/condor_195.sub | 13 + test/ntuple_qcd_100_200/batch/condor_196.sub | 13 + test/ntuple_qcd_100_200/batch/condor_197.sub | 13 + test/ntuple_qcd_100_200/batch/condor_198.sub | 13 + test/ntuple_qcd_100_200/batch/condor_199.sub | 13 + test/ntuple_qcd_100_200/batch/condor_2.sub | 13 + test/ntuple_qcd_100_200/batch/condor_20.sub | 13 + test/ntuple_qcd_100_200/batch/condor_200.sub | 13 + test/ntuple_qcd_100_200/batch/condor_201.sub | 13 + test/ntuple_qcd_100_200/batch/condor_202.sub | 13 + test/ntuple_qcd_100_200/batch/condor_203.sub | 13 + test/ntuple_qcd_100_200/batch/condor_204.sub | 13 + test/ntuple_qcd_100_200/batch/condor_205.sub | 13 + test/ntuple_qcd_100_200/batch/condor_206.sub | 13 + test/ntuple_qcd_100_200/batch/condor_207.sub | 13 + test/ntuple_qcd_100_200/batch/condor_208.sub | 13 + test/ntuple_qcd_100_200/batch/condor_209.sub | 13 + test/ntuple_qcd_100_200/batch/condor_21.sub | 13 + test/ntuple_qcd_100_200/batch/condor_210.sub | 13 + test/ntuple_qcd_100_200/batch/condor_211.sub | 13 + test/ntuple_qcd_100_200/batch/condor_212.sub | 13 + test/ntuple_qcd_100_200/batch/condor_213.sub | 13 + test/ntuple_qcd_100_200/batch/condor_214.sub | 13 + test/ntuple_qcd_100_200/batch/condor_215.sub | 13 + test/ntuple_qcd_100_200/batch/condor_216.sub | 13 + test/ntuple_qcd_100_200/batch/condor_217.sub | 13 + test/ntuple_qcd_100_200/batch/condor_218.sub | 13 + test/ntuple_qcd_100_200/batch/condor_219.sub | 13 + test/ntuple_qcd_100_200/batch/condor_22.sub | 13 + test/ntuple_qcd_100_200/batch/condor_220.sub | 13 + test/ntuple_qcd_100_200/batch/condor_221.sub | 13 + test/ntuple_qcd_100_200/batch/condor_222.sub | 13 + test/ntuple_qcd_100_200/batch/condor_223.sub | 13 + test/ntuple_qcd_100_200/batch/condor_224.sub | 13 + test/ntuple_qcd_100_200/batch/condor_225.sub | 13 + test/ntuple_qcd_100_200/batch/condor_226.sub | 13 + test/ntuple_qcd_100_200/batch/condor_227.sub | 13 + test/ntuple_qcd_100_200/batch/condor_228.sub | 13 + test/ntuple_qcd_100_200/batch/condor_229.sub | 13 + test/ntuple_qcd_100_200/batch/condor_23.sub | 13 + test/ntuple_qcd_100_200/batch/condor_230.sub | 13 + test/ntuple_qcd_100_200/batch/condor_231.sub | 13 + test/ntuple_qcd_100_200/batch/condor_232.sub | 13 + test/ntuple_qcd_100_200/batch/condor_233.sub | 13 + test/ntuple_qcd_100_200/batch/condor_234.sub | 13 + test/ntuple_qcd_100_200/batch/condor_235.sub | 13 + test/ntuple_qcd_100_200/batch/condor_236.sub | 13 + test/ntuple_qcd_100_200/batch/condor_237.sub | 13 + test/ntuple_qcd_100_200/batch/condor_238.sub | 13 + test/ntuple_qcd_100_200/batch/condor_239.sub | 13 + test/ntuple_qcd_100_200/batch/condor_24.sub | 13 + test/ntuple_qcd_100_200/batch/condor_240.sub | 13 + test/ntuple_qcd_100_200/batch/condor_241.sub | 13 + test/ntuple_qcd_100_200/batch/condor_242.sub | 13 + test/ntuple_qcd_100_200/batch/condor_243.sub | 13 + test/ntuple_qcd_100_200/batch/condor_244.sub | 13 + test/ntuple_qcd_100_200/batch/condor_245.sub | 13 + test/ntuple_qcd_100_200/batch/condor_246.sub | 13 + test/ntuple_qcd_100_200/batch/condor_247.sub | 13 + test/ntuple_qcd_100_200/batch/condor_248.sub | 13 + test/ntuple_qcd_100_200/batch/condor_249.sub | 13 + test/ntuple_qcd_100_200/batch/condor_25.sub | 13 + test/ntuple_qcd_100_200/batch/condor_250.sub | 13 + test/ntuple_qcd_100_200/batch/condor_251.sub | 13 + test/ntuple_qcd_100_200/batch/condor_252.sub | 13 + test/ntuple_qcd_100_200/batch/condor_253.sub | 13 + test/ntuple_qcd_100_200/batch/condor_254.sub | 13 + test/ntuple_qcd_100_200/batch/condor_255.sub | 13 + test/ntuple_qcd_100_200/batch/condor_256.sub | 13 + test/ntuple_qcd_100_200/batch/condor_257.sub | 13 + test/ntuple_qcd_100_200/batch/condor_258.sub | 13 + test/ntuple_qcd_100_200/batch/condor_259.sub | 13 + test/ntuple_qcd_100_200/batch/condor_26.sub | 13 + test/ntuple_qcd_100_200/batch/condor_260.sub | 13 + test/ntuple_qcd_100_200/batch/condor_261.sub | 13 + test/ntuple_qcd_100_200/batch/condor_262.sub | 13 + test/ntuple_qcd_100_200/batch/condor_263.sub | 13 + test/ntuple_qcd_100_200/batch/condor_264.sub | 13 + test/ntuple_qcd_100_200/batch/condor_265.sub | 13 + test/ntuple_qcd_100_200/batch/condor_266.sub | 13 + test/ntuple_qcd_100_200/batch/condor_267.sub | 13 + test/ntuple_qcd_100_200/batch/condor_268.sub | 13 + test/ntuple_qcd_100_200/batch/condor_269.sub | 13 + test/ntuple_qcd_100_200/batch/condor_27.sub | 13 + test/ntuple_qcd_100_200/batch/condor_270.sub | 13 + test/ntuple_qcd_100_200/batch/condor_271.sub | 13 + test/ntuple_qcd_100_200/batch/condor_272.sub | 13 + test/ntuple_qcd_100_200/batch/condor_273.sub | 13 + test/ntuple_qcd_100_200/batch/condor_274.sub | 13 + test/ntuple_qcd_100_200/batch/condor_275.sub | 13 + test/ntuple_qcd_100_200/batch/condor_276.sub | 13 + test/ntuple_qcd_100_200/batch/condor_277.sub | 13 + test/ntuple_qcd_100_200/batch/condor_278.sub | 13 + test/ntuple_qcd_100_200/batch/condor_279.sub | 13 + test/ntuple_qcd_100_200/batch/condor_28.sub | 13 + test/ntuple_qcd_100_200/batch/condor_280.sub | 13 + test/ntuple_qcd_100_200/batch/condor_281.sub | 13 + test/ntuple_qcd_100_200/batch/condor_282.sub | 13 + test/ntuple_qcd_100_200/batch/condor_283.sub | 13 + test/ntuple_qcd_100_200/batch/condor_284.sub | 13 + test/ntuple_qcd_100_200/batch/condor_285.sub | 13 + test/ntuple_qcd_100_200/batch/condor_286.sub | 13 + test/ntuple_qcd_100_200/batch/condor_287.sub | 13 + test/ntuple_qcd_100_200/batch/condor_288.sub | 13 + test/ntuple_qcd_100_200/batch/condor_289.sub | 13 + test/ntuple_qcd_100_200/batch/condor_29.sub | 13 + test/ntuple_qcd_100_200/batch/condor_290.sub | 13 + test/ntuple_qcd_100_200/batch/condor_291.sub | 13 + test/ntuple_qcd_100_200/batch/condor_292.sub | 13 + test/ntuple_qcd_100_200/batch/condor_293.sub | 13 + test/ntuple_qcd_100_200/batch/condor_294.sub | 13 + test/ntuple_qcd_100_200/batch/condor_295.sub | 13 + test/ntuple_qcd_100_200/batch/condor_296.sub | 13 + test/ntuple_qcd_100_200/batch/condor_297.sub | 13 + test/ntuple_qcd_100_200/batch/condor_298.sub | 13 + test/ntuple_qcd_100_200/batch/condor_299.sub | 13 + test/ntuple_qcd_100_200/batch/condor_3.sub | 13 + test/ntuple_qcd_100_200/batch/condor_30.sub | 13 + test/ntuple_qcd_100_200/batch/condor_300.sub | 13 + test/ntuple_qcd_100_200/batch/condor_301.sub | 13 + test/ntuple_qcd_100_200/batch/condor_302.sub | 13 + test/ntuple_qcd_100_200/batch/condor_303.sub | 13 + test/ntuple_qcd_100_200/batch/condor_304.sub | 13 + test/ntuple_qcd_100_200/batch/condor_305.sub | 13 + test/ntuple_qcd_100_200/batch/condor_306.sub | 13 + test/ntuple_qcd_100_200/batch/condor_307.sub | 13 + test/ntuple_qcd_100_200/batch/condor_308.sub | 13 + test/ntuple_qcd_100_200/batch/condor_309.sub | 13 + test/ntuple_qcd_100_200/batch/condor_31.sub | 13 + test/ntuple_qcd_100_200/batch/condor_310.sub | 13 + test/ntuple_qcd_100_200/batch/condor_311.sub | 13 + test/ntuple_qcd_100_200/batch/condor_312.sub | 13 + test/ntuple_qcd_100_200/batch/condor_313.sub | 13 + test/ntuple_qcd_100_200/batch/condor_314.sub | 13 + test/ntuple_qcd_100_200/batch/condor_315.sub | 13 + test/ntuple_qcd_100_200/batch/condor_316.sub | 13 + test/ntuple_qcd_100_200/batch/condor_317.sub | 13 + test/ntuple_qcd_100_200/batch/condor_318.sub | 13 + test/ntuple_qcd_100_200/batch/condor_319.sub | 13 + test/ntuple_qcd_100_200/batch/condor_32.sub | 13 + test/ntuple_qcd_100_200/batch/condor_320.sub | 13 + test/ntuple_qcd_100_200/batch/condor_321.sub | 13 + test/ntuple_qcd_100_200/batch/condor_322.sub | 13 + test/ntuple_qcd_100_200/batch/condor_323.sub | 13 + test/ntuple_qcd_100_200/batch/condor_324.sub | 13 + test/ntuple_qcd_100_200/batch/condor_325.sub | 13 + test/ntuple_qcd_100_200/batch/condor_326.sub | 13 + test/ntuple_qcd_100_200/batch/condor_327.sub | 13 + test/ntuple_qcd_100_200/batch/condor_328.sub | 13 + test/ntuple_qcd_100_200/batch/condor_329.sub | 13 + test/ntuple_qcd_100_200/batch/condor_33.sub | 13 + test/ntuple_qcd_100_200/batch/condor_330.sub | 13 + test/ntuple_qcd_100_200/batch/condor_331.sub | 13 + test/ntuple_qcd_100_200/batch/condor_332.sub | 13 + test/ntuple_qcd_100_200/batch/condor_333.sub | 13 + test/ntuple_qcd_100_200/batch/condor_334.sub | 13 + test/ntuple_qcd_100_200/batch/condor_335.sub | 13 + test/ntuple_qcd_100_200/batch/condor_336.sub | 13 + test/ntuple_qcd_100_200/batch/condor_337.sub | 13 + test/ntuple_qcd_100_200/batch/condor_338.sub | 13 + test/ntuple_qcd_100_200/batch/condor_339.sub | 13 + test/ntuple_qcd_100_200/batch/condor_34.sub | 13 + test/ntuple_qcd_100_200/batch/condor_340.sub | 13 + test/ntuple_qcd_100_200/batch/condor_341.sub | 13 + test/ntuple_qcd_100_200/batch/condor_342.sub | 13 + test/ntuple_qcd_100_200/batch/condor_343.sub | 13 + test/ntuple_qcd_100_200/batch/condor_344.sub | 13 + test/ntuple_qcd_100_200/batch/condor_345.sub | 13 + test/ntuple_qcd_100_200/batch/condor_346.sub | 13 + test/ntuple_qcd_100_200/batch/condor_347.sub | 13 + test/ntuple_qcd_100_200/batch/condor_348.sub | 13 + test/ntuple_qcd_100_200/batch/condor_349.sub | 13 + test/ntuple_qcd_100_200/batch/condor_35.sub | 13 + test/ntuple_qcd_100_200/batch/condor_350.sub | 13 + test/ntuple_qcd_100_200/batch/condor_351.sub | 13 + test/ntuple_qcd_100_200/batch/condor_352.sub | 13 + test/ntuple_qcd_100_200/batch/condor_353.sub | 13 + test/ntuple_qcd_100_200/batch/condor_354.sub | 13 + test/ntuple_qcd_100_200/batch/condor_355.sub | 13 + test/ntuple_qcd_100_200/batch/condor_356.sub | 13 + test/ntuple_qcd_100_200/batch/condor_357.sub | 13 + test/ntuple_qcd_100_200/batch/condor_358.sub | 13 + test/ntuple_qcd_100_200/batch/condor_359.sub | 13 + test/ntuple_qcd_100_200/batch/condor_36.sub | 13 + test/ntuple_qcd_100_200/batch/condor_360.sub | 13 + test/ntuple_qcd_100_200/batch/condor_361.sub | 13 + test/ntuple_qcd_100_200/batch/condor_362.sub | 13 + test/ntuple_qcd_100_200/batch/condor_363.sub | 13 + test/ntuple_qcd_100_200/batch/condor_364.sub | 13 + test/ntuple_qcd_100_200/batch/condor_365.sub | 13 + test/ntuple_qcd_100_200/batch/condor_366.sub | 13 + test/ntuple_qcd_100_200/batch/condor_367.sub | 13 + test/ntuple_qcd_100_200/batch/condor_368.sub | 13 + test/ntuple_qcd_100_200/batch/condor_369.sub | 13 + test/ntuple_qcd_100_200/batch/condor_37.sub | 13 + test/ntuple_qcd_100_200/batch/condor_370.sub | 13 + test/ntuple_qcd_100_200/batch/condor_371.sub | 13 + test/ntuple_qcd_100_200/batch/condor_372.sub | 13 + test/ntuple_qcd_100_200/batch/condor_373.sub | 13 + test/ntuple_qcd_100_200/batch/condor_374.sub | 13 + test/ntuple_qcd_100_200/batch/condor_375.sub | 13 + test/ntuple_qcd_100_200/batch/condor_376.sub | 13 + test/ntuple_qcd_100_200/batch/condor_377.sub | 13 + test/ntuple_qcd_100_200/batch/condor_378.sub | 13 + test/ntuple_qcd_100_200/batch/condor_379.sub | 13 + test/ntuple_qcd_100_200/batch/condor_38.sub | 13 + test/ntuple_qcd_100_200/batch/condor_380.sub | 13 + test/ntuple_qcd_100_200/batch/condor_381.sub | 13 + test/ntuple_qcd_100_200/batch/condor_382.sub | 13 + test/ntuple_qcd_100_200/batch/condor_383.sub | 13 + test/ntuple_qcd_100_200/batch/condor_384.sub | 13 + test/ntuple_qcd_100_200/batch/condor_385.sub | 13 + test/ntuple_qcd_100_200/batch/condor_386.sub | 13 + test/ntuple_qcd_100_200/batch/condor_387.sub | 13 + test/ntuple_qcd_100_200/batch/condor_388.sub | 13 + test/ntuple_qcd_100_200/batch/condor_389.sub | 13 + test/ntuple_qcd_100_200/batch/condor_39.sub | 13 + test/ntuple_qcd_100_200/batch/condor_390.sub | 13 + test/ntuple_qcd_100_200/batch/condor_391.sub | 13 + test/ntuple_qcd_100_200/batch/condor_392.sub | 13 + test/ntuple_qcd_100_200/batch/condor_393.sub | 13 + test/ntuple_qcd_100_200/batch/condor_394.sub | 13 + test/ntuple_qcd_100_200/batch/condor_395.sub | 13 + test/ntuple_qcd_100_200/batch/condor_396.sub | 13 + test/ntuple_qcd_100_200/batch/condor_397.sub | 13 + test/ntuple_qcd_100_200/batch/condor_398.sub | 13 + test/ntuple_qcd_100_200/batch/condor_399.sub | 13 + test/ntuple_qcd_100_200/batch/condor_4.sub | 13 + test/ntuple_qcd_100_200/batch/condor_40.sub | 13 + test/ntuple_qcd_100_200/batch/condor_400.sub | 13 + test/ntuple_qcd_100_200/batch/condor_401.sub | 13 + test/ntuple_qcd_100_200/batch/condor_402.sub | 13 + test/ntuple_qcd_100_200/batch/condor_403.sub | 13 + test/ntuple_qcd_100_200/batch/condor_404.sub | 13 + test/ntuple_qcd_100_200/batch/condor_405.sub | 13 + test/ntuple_qcd_100_200/batch/condor_406.sub | 13 + test/ntuple_qcd_100_200/batch/condor_407.sub | 13 + test/ntuple_qcd_100_200/batch/condor_408.sub | 13 + test/ntuple_qcd_100_200/batch/condor_409.sub | 13 + test/ntuple_qcd_100_200/batch/condor_41.sub | 13 + test/ntuple_qcd_100_200/batch/condor_410.sub | 13 + test/ntuple_qcd_100_200/batch/condor_411.sub | 13 + test/ntuple_qcd_100_200/batch/condor_412.sub | 13 + test/ntuple_qcd_100_200/batch/condor_413.sub | 13 + test/ntuple_qcd_100_200/batch/condor_414.sub | 13 + test/ntuple_qcd_100_200/batch/condor_415.sub | 13 + test/ntuple_qcd_100_200/batch/condor_416.sub | 13 + test/ntuple_qcd_100_200/batch/condor_417.sub | 13 + test/ntuple_qcd_100_200/batch/condor_418.sub | 13 + test/ntuple_qcd_100_200/batch/condor_419.sub | 13 + test/ntuple_qcd_100_200/batch/condor_42.sub | 13 + test/ntuple_qcd_100_200/batch/condor_420.sub | 13 + test/ntuple_qcd_100_200/batch/condor_421.sub | 13 + test/ntuple_qcd_100_200/batch/condor_422.sub | 13 + test/ntuple_qcd_100_200/batch/condor_423.sub | 13 + test/ntuple_qcd_100_200/batch/condor_424.sub | 13 + test/ntuple_qcd_100_200/batch/condor_425.sub | 13 + test/ntuple_qcd_100_200/batch/condor_426.sub | 13 + test/ntuple_qcd_100_200/batch/condor_427.sub | 13 + test/ntuple_qcd_100_200/batch/condor_428.sub | 13 + test/ntuple_qcd_100_200/batch/condor_429.sub | 13 + test/ntuple_qcd_100_200/batch/condor_43.sub | 13 + test/ntuple_qcd_100_200/batch/condor_430.sub | 13 + test/ntuple_qcd_100_200/batch/condor_431.sub | 13 + test/ntuple_qcd_100_200/batch/condor_432.sub | 13 + test/ntuple_qcd_100_200/batch/condor_433.sub | 13 + test/ntuple_qcd_100_200/batch/condor_434.sub | 13 + test/ntuple_qcd_100_200/batch/condor_435.sub | 13 + test/ntuple_qcd_100_200/batch/condor_436.sub | 13 + test/ntuple_qcd_100_200/batch/condor_437.sub | 13 + test/ntuple_qcd_100_200/batch/condor_438.sub | 13 + test/ntuple_qcd_100_200/batch/condor_439.sub | 13 + test/ntuple_qcd_100_200/batch/condor_44.sub | 13 + test/ntuple_qcd_100_200/batch/condor_440.sub | 13 + test/ntuple_qcd_100_200/batch/condor_441.sub | 13 + test/ntuple_qcd_100_200/batch/condor_442.sub | 13 + test/ntuple_qcd_100_200/batch/condor_443.sub | 13 + test/ntuple_qcd_100_200/batch/condor_444.sub | 13 + test/ntuple_qcd_100_200/batch/condor_445.sub | 13 + test/ntuple_qcd_100_200/batch/condor_446.sub | 13 + test/ntuple_qcd_100_200/batch/condor_447.sub | 13 + test/ntuple_qcd_100_200/batch/condor_448.sub | 13 + test/ntuple_qcd_100_200/batch/condor_449.sub | 13 + test/ntuple_qcd_100_200/batch/condor_45.sub | 13 + test/ntuple_qcd_100_200/batch/condor_450.sub | 13 + test/ntuple_qcd_100_200/batch/condor_451.sub | 13 + test/ntuple_qcd_100_200/batch/condor_452.sub | 13 + test/ntuple_qcd_100_200/batch/condor_453.sub | 13 + test/ntuple_qcd_100_200/batch/condor_454.sub | 13 + test/ntuple_qcd_100_200/batch/condor_455.sub | 13 + test/ntuple_qcd_100_200/batch/condor_456.sub | 13 + test/ntuple_qcd_100_200/batch/condor_457.sub | 13 + test/ntuple_qcd_100_200/batch/condor_458.sub | 13 + test/ntuple_qcd_100_200/batch/condor_459.sub | 13 + test/ntuple_qcd_100_200/batch/condor_46.sub | 13 + test/ntuple_qcd_100_200/batch/condor_460.sub | 13 + test/ntuple_qcd_100_200/batch/condor_461.sub | 13 + test/ntuple_qcd_100_200/batch/condor_462.sub | 13 + test/ntuple_qcd_100_200/batch/condor_463.sub | 13 + test/ntuple_qcd_100_200/batch/condor_464.sub | 13 + test/ntuple_qcd_100_200/batch/condor_465.sub | 13 + test/ntuple_qcd_100_200/batch/condor_466.sub | 13 + test/ntuple_qcd_100_200/batch/condor_467.sub | 13 + test/ntuple_qcd_100_200/batch/condor_468.sub | 13 + test/ntuple_qcd_100_200/batch/condor_469.sub | 13 + test/ntuple_qcd_100_200/batch/condor_47.sub | 13 + test/ntuple_qcd_100_200/batch/condor_470.sub | 13 + test/ntuple_qcd_100_200/batch/condor_471.sub | 13 + test/ntuple_qcd_100_200/batch/condor_472.sub | 13 + test/ntuple_qcd_100_200/batch/condor_473.sub | 13 + test/ntuple_qcd_100_200/batch/condor_474.sub | 13 + test/ntuple_qcd_100_200/batch/condor_475.sub | 13 + test/ntuple_qcd_100_200/batch/condor_476.sub | 13 + test/ntuple_qcd_100_200/batch/condor_477.sub | 13 + test/ntuple_qcd_100_200/batch/condor_478.sub | 13 + test/ntuple_qcd_100_200/batch/condor_479.sub | 13 + test/ntuple_qcd_100_200/batch/condor_48.sub | 13 + test/ntuple_qcd_100_200/batch/condor_480.sub | 13 + test/ntuple_qcd_100_200/batch/condor_481.sub | 13 + test/ntuple_qcd_100_200/batch/condor_482.sub | 13 + test/ntuple_qcd_100_200/batch/condor_483.sub | 13 + test/ntuple_qcd_100_200/batch/condor_484.sub | 13 + test/ntuple_qcd_100_200/batch/condor_485.sub | 13 + test/ntuple_qcd_100_200/batch/condor_486.sub | 13 + test/ntuple_qcd_100_200/batch/condor_487.sub | 13 + test/ntuple_qcd_100_200/batch/condor_488.sub | 13 + test/ntuple_qcd_100_200/batch/condor_489.sub | 13 + test/ntuple_qcd_100_200/batch/condor_49.sub | 13 + test/ntuple_qcd_100_200/batch/condor_490.sub | 13 + test/ntuple_qcd_100_200/batch/condor_491.sub | 13 + test/ntuple_qcd_100_200/batch/condor_492.sub | 13 + test/ntuple_qcd_100_200/batch/condor_493.sub | 13 + test/ntuple_qcd_100_200/batch/condor_494.sub | 13 + test/ntuple_qcd_100_200/batch/condor_495.sub | 13 + test/ntuple_qcd_100_200/batch/condor_496.sub | 13 + test/ntuple_qcd_100_200/batch/condor_497.sub | 13 + test/ntuple_qcd_100_200/batch/condor_498.sub | 13 + test/ntuple_qcd_100_200/batch/condor_499.sub | 13 + test/ntuple_qcd_100_200/batch/condor_5.sub | 13 + test/ntuple_qcd_100_200/batch/condor_50.sub | 13 + test/ntuple_qcd_100_200/batch/condor_51.sub | 13 + test/ntuple_qcd_100_200/batch/condor_52.sub | 13 + test/ntuple_qcd_100_200/batch/condor_53.sub | 13 + test/ntuple_qcd_100_200/batch/condor_54.sub | 13 + test/ntuple_qcd_100_200/batch/condor_55.sub | 13 + test/ntuple_qcd_100_200/batch/condor_56.sub | 13 + test/ntuple_qcd_100_200/batch/condor_57.sub | 13 + test/ntuple_qcd_100_200/batch/condor_58.sub | 13 + test/ntuple_qcd_100_200/batch/condor_59.sub | 13 + test/ntuple_qcd_100_200/batch/condor_6.sub | 13 + test/ntuple_qcd_100_200/batch/condor_60.sub | 13 + test/ntuple_qcd_100_200/batch/condor_61.sub | 13 + test/ntuple_qcd_100_200/batch/condor_62.sub | 13 + test/ntuple_qcd_100_200/batch/condor_63.sub | 13 + test/ntuple_qcd_100_200/batch/condor_64.sub | 13 + test/ntuple_qcd_100_200/batch/condor_65.sub | 13 + test/ntuple_qcd_100_200/batch/condor_66.sub | 13 + test/ntuple_qcd_100_200/batch/condor_67.sub | 13 + test/ntuple_qcd_100_200/batch/condor_68.sub | 13 + test/ntuple_qcd_100_200/batch/condor_69.sub | 13 + test/ntuple_qcd_100_200/batch/condor_7.sub | 13 + test/ntuple_qcd_100_200/batch/condor_70.sub | 13 + test/ntuple_qcd_100_200/batch/condor_71.sub | 13 + test/ntuple_qcd_100_200/batch/condor_72.sub | 13 + test/ntuple_qcd_100_200/batch/condor_73.sub | 13 + test/ntuple_qcd_100_200/batch/condor_74.sub | 13 + test/ntuple_qcd_100_200/batch/condor_75.sub | 13 + test/ntuple_qcd_100_200/batch/condor_76.sub | 13 + test/ntuple_qcd_100_200/batch/condor_77.sub | 13 + test/ntuple_qcd_100_200/batch/condor_78.sub | 13 + test/ntuple_qcd_100_200/batch/condor_79.sub | 13 + test/ntuple_qcd_100_200/batch/condor_8.sub | 13 + test/ntuple_qcd_100_200/batch/condor_80.sub | 13 + test/ntuple_qcd_100_200/batch/condor_81.sub | 13 + test/ntuple_qcd_100_200/batch/condor_82.sub | 13 + test/ntuple_qcd_100_200/batch/condor_83.sub | 13 + test/ntuple_qcd_100_200/batch/condor_84.sub | 13 + test/ntuple_qcd_100_200/batch/condor_85.sub | 13 + test/ntuple_qcd_100_200/batch/condor_86.sub | 13 + test/ntuple_qcd_100_200/batch/condor_87.sub | 13 + test/ntuple_qcd_100_200/batch/condor_88.sub | 13 + test/ntuple_qcd_100_200/batch/condor_89.sub | 13 + test/ntuple_qcd_100_200/batch/condor_9.sub | 13 + test/ntuple_qcd_100_200/batch/condor_90.sub | 13 + test/ntuple_qcd_100_200/batch/condor_91.sub | 13 + test/ntuple_qcd_100_200/batch/condor_92.sub | 13 + test/ntuple_qcd_100_200/batch/condor_93.sub | 13 + test/ntuple_qcd_100_200/batch/condor_94.sub | 13 + test/ntuple_qcd_100_200/batch/condor_95.sub | 13 + test/ntuple_qcd_100_200/batch/condor_96.sub | 13 + test/ntuple_qcd_100_200/batch/condor_97.sub | 13 + test/ntuple_qcd_100_200/batch/condor_98.sub | 13 + test/ntuple_qcd_100_200/batch/condor_99.sub | 13 + test/ntuple_qcd_100_200/batch/nJobs.500 | 0 test/ntuple_qcd_100_200/batch/sge_0.sh | 28 + test/ntuple_qcd_100_200/batch/sge_1.sh | 28 + test/ntuple_qcd_100_200/batch/sge_10.sh | 28 + test/ntuple_qcd_100_200/batch/sge_100.sh | 28 + test/ntuple_qcd_100_200/batch/sge_101.sh | 28 + test/ntuple_qcd_100_200/batch/sge_102.sh | 28 + test/ntuple_qcd_100_200/batch/sge_103.sh | 28 + test/ntuple_qcd_100_200/batch/sge_104.sh | 28 + test/ntuple_qcd_100_200/batch/sge_105.sh | 28 + test/ntuple_qcd_100_200/batch/sge_106.sh | 28 + test/ntuple_qcd_100_200/batch/sge_107.sh | 28 + test/ntuple_qcd_100_200/batch/sge_108.sh | 28 + test/ntuple_qcd_100_200/batch/sge_109.sh | 28 + test/ntuple_qcd_100_200/batch/sge_11.sh | 28 + test/ntuple_qcd_100_200/batch/sge_110.sh | 28 + test/ntuple_qcd_100_200/batch/sge_111.sh | 28 + test/ntuple_qcd_100_200/batch/sge_112.sh | 28 + test/ntuple_qcd_100_200/batch/sge_113.sh | 28 + test/ntuple_qcd_100_200/batch/sge_114.sh | 28 + test/ntuple_qcd_100_200/batch/sge_115.sh | 28 + test/ntuple_qcd_100_200/batch/sge_116.sh | 28 + test/ntuple_qcd_100_200/batch/sge_117.sh | 28 + test/ntuple_qcd_100_200/batch/sge_118.sh | 28 + test/ntuple_qcd_100_200/batch/sge_119.sh | 28 + test/ntuple_qcd_100_200/batch/sge_12.sh | 28 + test/ntuple_qcd_100_200/batch/sge_120.sh | 28 + test/ntuple_qcd_100_200/batch/sge_121.sh | 28 + test/ntuple_qcd_100_200/batch/sge_122.sh | 28 + test/ntuple_qcd_100_200/batch/sge_123.sh | 28 + test/ntuple_qcd_100_200/batch/sge_124.sh | 28 + test/ntuple_qcd_100_200/batch/sge_125.sh | 28 + test/ntuple_qcd_100_200/batch/sge_126.sh | 28 + test/ntuple_qcd_100_200/batch/sge_127.sh | 28 + test/ntuple_qcd_100_200/batch/sge_128.sh | 28 + test/ntuple_qcd_100_200/batch/sge_129.sh | 28 + test/ntuple_qcd_100_200/batch/sge_13.sh | 28 + test/ntuple_qcd_100_200/batch/sge_130.sh | 28 + test/ntuple_qcd_100_200/batch/sge_131.sh | 28 + test/ntuple_qcd_100_200/batch/sge_132.sh | 28 + test/ntuple_qcd_100_200/batch/sge_133.sh | 28 + test/ntuple_qcd_100_200/batch/sge_134.sh | 28 + test/ntuple_qcd_100_200/batch/sge_135.sh | 28 + test/ntuple_qcd_100_200/batch/sge_136.sh | 28 + test/ntuple_qcd_100_200/batch/sge_137.sh | 28 + test/ntuple_qcd_100_200/batch/sge_138.sh | 28 + test/ntuple_qcd_100_200/batch/sge_139.sh | 28 + test/ntuple_qcd_100_200/batch/sge_14.sh | 28 + test/ntuple_qcd_100_200/batch/sge_140.sh | 28 + test/ntuple_qcd_100_200/batch/sge_141.sh | 28 + test/ntuple_qcd_100_200/batch/sge_142.sh | 28 + test/ntuple_qcd_100_200/batch/sge_143.sh | 28 + test/ntuple_qcd_100_200/batch/sge_144.sh | 28 + test/ntuple_qcd_100_200/batch/sge_145.sh | 28 + test/ntuple_qcd_100_200/batch/sge_146.sh | 28 + test/ntuple_qcd_100_200/batch/sge_147.sh | 28 + test/ntuple_qcd_100_200/batch/sge_148.sh | 28 + test/ntuple_qcd_100_200/batch/sge_149.sh | 28 + test/ntuple_qcd_100_200/batch/sge_15.sh | 28 + test/ntuple_qcd_100_200/batch/sge_150.sh | 28 + test/ntuple_qcd_100_200/batch/sge_151.sh | 28 + test/ntuple_qcd_100_200/batch/sge_152.sh | 28 + test/ntuple_qcd_100_200/batch/sge_153.sh | 28 + test/ntuple_qcd_100_200/batch/sge_154.sh | 28 + test/ntuple_qcd_100_200/batch/sge_155.sh | 28 + test/ntuple_qcd_100_200/batch/sge_156.sh | 28 + test/ntuple_qcd_100_200/batch/sge_157.sh | 28 + test/ntuple_qcd_100_200/batch/sge_158.sh | 28 + test/ntuple_qcd_100_200/batch/sge_159.sh | 28 + test/ntuple_qcd_100_200/batch/sge_16.sh | 28 + test/ntuple_qcd_100_200/batch/sge_160.sh | 28 + test/ntuple_qcd_100_200/batch/sge_161.sh | 28 + test/ntuple_qcd_100_200/batch/sge_162.sh | 28 + test/ntuple_qcd_100_200/batch/sge_163.sh | 28 + test/ntuple_qcd_100_200/batch/sge_164.sh | 28 + test/ntuple_qcd_100_200/batch/sge_165.sh | 28 + test/ntuple_qcd_100_200/batch/sge_166.sh | 28 + test/ntuple_qcd_100_200/batch/sge_167.sh | 28 + test/ntuple_qcd_100_200/batch/sge_168.sh | 28 + test/ntuple_qcd_100_200/batch/sge_169.sh | 28 + test/ntuple_qcd_100_200/batch/sge_17.sh | 28 + test/ntuple_qcd_100_200/batch/sge_170.sh | 28 + test/ntuple_qcd_100_200/batch/sge_171.sh | 28 + test/ntuple_qcd_100_200/batch/sge_172.sh | 28 + test/ntuple_qcd_100_200/batch/sge_173.sh | 28 + test/ntuple_qcd_100_200/batch/sge_174.sh | 28 + test/ntuple_qcd_100_200/batch/sge_175.sh | 28 + test/ntuple_qcd_100_200/batch/sge_176.sh | 28 + test/ntuple_qcd_100_200/batch/sge_177.sh | 28 + test/ntuple_qcd_100_200/batch/sge_178.sh | 28 + test/ntuple_qcd_100_200/batch/sge_179.sh | 28 + test/ntuple_qcd_100_200/batch/sge_18.sh | 28 + test/ntuple_qcd_100_200/batch/sge_180.sh | 28 + test/ntuple_qcd_100_200/batch/sge_181.sh | 28 + test/ntuple_qcd_100_200/batch/sge_182.sh | 28 + test/ntuple_qcd_100_200/batch/sge_183.sh | 28 + test/ntuple_qcd_100_200/batch/sge_184.sh | 28 + test/ntuple_qcd_100_200/batch/sge_185.sh | 28 + test/ntuple_qcd_100_200/batch/sge_186.sh | 28 + test/ntuple_qcd_100_200/batch/sge_187.sh | 28 + test/ntuple_qcd_100_200/batch/sge_188.sh | 28 + test/ntuple_qcd_100_200/batch/sge_189.sh | 28 + test/ntuple_qcd_100_200/batch/sge_19.sh | 28 + test/ntuple_qcd_100_200/batch/sge_190.sh | 28 + test/ntuple_qcd_100_200/batch/sge_191.sh | 28 + test/ntuple_qcd_100_200/batch/sge_192.sh | 28 + test/ntuple_qcd_100_200/batch/sge_193.sh | 28 + test/ntuple_qcd_100_200/batch/sge_194.sh | 28 + test/ntuple_qcd_100_200/batch/sge_195.sh | 28 + test/ntuple_qcd_100_200/batch/sge_196.sh | 28 + test/ntuple_qcd_100_200/batch/sge_197.sh | 28 + test/ntuple_qcd_100_200/batch/sge_198.sh | 28 + test/ntuple_qcd_100_200/batch/sge_199.sh | 28 + test/ntuple_qcd_100_200/batch/sge_2.sh | 28 + test/ntuple_qcd_100_200/batch/sge_20.sh | 28 + test/ntuple_qcd_100_200/batch/sge_200.sh | 28 + test/ntuple_qcd_100_200/batch/sge_201.sh | 28 + test/ntuple_qcd_100_200/batch/sge_202.sh | 28 + test/ntuple_qcd_100_200/batch/sge_203.sh | 28 + test/ntuple_qcd_100_200/batch/sge_204.sh | 28 + test/ntuple_qcd_100_200/batch/sge_205.sh | 28 + test/ntuple_qcd_100_200/batch/sge_206.sh | 28 + test/ntuple_qcd_100_200/batch/sge_207.sh | 28 + test/ntuple_qcd_100_200/batch/sge_208.sh | 28 + test/ntuple_qcd_100_200/batch/sge_209.sh | 28 + test/ntuple_qcd_100_200/batch/sge_21.sh | 28 + test/ntuple_qcd_100_200/batch/sge_210.sh | 28 + test/ntuple_qcd_100_200/batch/sge_211.sh | 28 + test/ntuple_qcd_100_200/batch/sge_212.sh | 28 + test/ntuple_qcd_100_200/batch/sge_213.sh | 28 + test/ntuple_qcd_100_200/batch/sge_214.sh | 28 + test/ntuple_qcd_100_200/batch/sge_215.sh | 28 + test/ntuple_qcd_100_200/batch/sge_216.sh | 28 + test/ntuple_qcd_100_200/batch/sge_217.sh | 28 + test/ntuple_qcd_100_200/batch/sge_218.sh | 28 + test/ntuple_qcd_100_200/batch/sge_219.sh | 28 + test/ntuple_qcd_100_200/batch/sge_22.sh | 28 + test/ntuple_qcd_100_200/batch/sge_220.sh | 28 + test/ntuple_qcd_100_200/batch/sge_221.sh | 28 + test/ntuple_qcd_100_200/batch/sge_222.sh | 28 + test/ntuple_qcd_100_200/batch/sge_223.sh | 28 + test/ntuple_qcd_100_200/batch/sge_224.sh | 28 + test/ntuple_qcd_100_200/batch/sge_225.sh | 28 + test/ntuple_qcd_100_200/batch/sge_226.sh | 28 + test/ntuple_qcd_100_200/batch/sge_227.sh | 28 + test/ntuple_qcd_100_200/batch/sge_228.sh | 28 + test/ntuple_qcd_100_200/batch/sge_229.sh | 28 + test/ntuple_qcd_100_200/batch/sge_23.sh | 28 + test/ntuple_qcd_100_200/batch/sge_230.sh | 28 + test/ntuple_qcd_100_200/batch/sge_231.sh | 28 + test/ntuple_qcd_100_200/batch/sge_232.sh | 28 + test/ntuple_qcd_100_200/batch/sge_233.sh | 28 + test/ntuple_qcd_100_200/batch/sge_234.sh | 28 + test/ntuple_qcd_100_200/batch/sge_235.sh | 28 + test/ntuple_qcd_100_200/batch/sge_236.sh | 28 + test/ntuple_qcd_100_200/batch/sge_237.sh | 28 + test/ntuple_qcd_100_200/batch/sge_238.sh | 28 + test/ntuple_qcd_100_200/batch/sge_239.sh | 28 + test/ntuple_qcd_100_200/batch/sge_24.sh | 28 + test/ntuple_qcd_100_200/batch/sge_240.sh | 28 + test/ntuple_qcd_100_200/batch/sge_241.sh | 28 + test/ntuple_qcd_100_200/batch/sge_242.sh | 28 + test/ntuple_qcd_100_200/batch/sge_243.sh | 28 + test/ntuple_qcd_100_200/batch/sge_244.sh | 28 + test/ntuple_qcd_100_200/batch/sge_245.sh | 28 + test/ntuple_qcd_100_200/batch/sge_246.sh | 28 + test/ntuple_qcd_100_200/batch/sge_247.sh | 28 + test/ntuple_qcd_100_200/batch/sge_248.sh | 28 + test/ntuple_qcd_100_200/batch/sge_249.sh | 28 + test/ntuple_qcd_100_200/batch/sge_25.sh | 28 + test/ntuple_qcd_100_200/batch/sge_250.sh | 28 + test/ntuple_qcd_100_200/batch/sge_251.sh | 28 + test/ntuple_qcd_100_200/batch/sge_252.sh | 28 + test/ntuple_qcd_100_200/batch/sge_253.sh | 28 + test/ntuple_qcd_100_200/batch/sge_254.sh | 28 + test/ntuple_qcd_100_200/batch/sge_255.sh | 28 + test/ntuple_qcd_100_200/batch/sge_256.sh | 28 + test/ntuple_qcd_100_200/batch/sge_257.sh | 28 + test/ntuple_qcd_100_200/batch/sge_258.sh | 28 + test/ntuple_qcd_100_200/batch/sge_259.sh | 28 + test/ntuple_qcd_100_200/batch/sge_26.sh | 28 + test/ntuple_qcd_100_200/batch/sge_260.sh | 28 + test/ntuple_qcd_100_200/batch/sge_261.sh | 28 + test/ntuple_qcd_100_200/batch/sge_262.sh | 28 + test/ntuple_qcd_100_200/batch/sge_263.sh | 28 + test/ntuple_qcd_100_200/batch/sge_264.sh | 28 + test/ntuple_qcd_100_200/batch/sge_265.sh | 28 + test/ntuple_qcd_100_200/batch/sge_266.sh | 28 + test/ntuple_qcd_100_200/batch/sge_267.sh | 28 + test/ntuple_qcd_100_200/batch/sge_268.sh | 28 + test/ntuple_qcd_100_200/batch/sge_269.sh | 28 + test/ntuple_qcd_100_200/batch/sge_27.sh | 28 + test/ntuple_qcd_100_200/batch/sge_270.sh | 28 + test/ntuple_qcd_100_200/batch/sge_271.sh | 28 + test/ntuple_qcd_100_200/batch/sge_272.sh | 28 + test/ntuple_qcd_100_200/batch/sge_273.sh | 28 + test/ntuple_qcd_100_200/batch/sge_274.sh | 28 + test/ntuple_qcd_100_200/batch/sge_275.sh | 28 + test/ntuple_qcd_100_200/batch/sge_276.sh | 28 + test/ntuple_qcd_100_200/batch/sge_277.sh | 28 + test/ntuple_qcd_100_200/batch/sge_278.sh | 28 + test/ntuple_qcd_100_200/batch/sge_279.sh | 28 + test/ntuple_qcd_100_200/batch/sge_28.sh | 28 + test/ntuple_qcd_100_200/batch/sge_280.sh | 28 + test/ntuple_qcd_100_200/batch/sge_281.sh | 28 + test/ntuple_qcd_100_200/batch/sge_282.sh | 28 + test/ntuple_qcd_100_200/batch/sge_283.sh | 28 + test/ntuple_qcd_100_200/batch/sge_284.sh | 28 + test/ntuple_qcd_100_200/batch/sge_285.sh | 28 + test/ntuple_qcd_100_200/batch/sge_286.sh | 28 + test/ntuple_qcd_100_200/batch/sge_287.sh | 28 + test/ntuple_qcd_100_200/batch/sge_288.sh | 28 + test/ntuple_qcd_100_200/batch/sge_289.sh | 28 + test/ntuple_qcd_100_200/batch/sge_29.sh | 28 + test/ntuple_qcd_100_200/batch/sge_290.sh | 28 + test/ntuple_qcd_100_200/batch/sge_291.sh | 28 + test/ntuple_qcd_100_200/batch/sge_292.sh | 28 + test/ntuple_qcd_100_200/batch/sge_293.sh | 28 + test/ntuple_qcd_100_200/batch/sge_294.sh | 28 + test/ntuple_qcd_100_200/batch/sge_295.sh | 28 + test/ntuple_qcd_100_200/batch/sge_296.sh | 28 + test/ntuple_qcd_100_200/batch/sge_297.sh | 28 + test/ntuple_qcd_100_200/batch/sge_298.sh | 28 + test/ntuple_qcd_100_200/batch/sge_299.sh | 28 + test/ntuple_qcd_100_200/batch/sge_3.sh | 28 + test/ntuple_qcd_100_200/batch/sge_30.sh | 28 + test/ntuple_qcd_100_200/batch/sge_300.sh | 28 + test/ntuple_qcd_100_200/batch/sge_301.sh | 28 + test/ntuple_qcd_100_200/batch/sge_302.sh | 28 + test/ntuple_qcd_100_200/batch/sge_303.sh | 28 + test/ntuple_qcd_100_200/batch/sge_304.sh | 28 + test/ntuple_qcd_100_200/batch/sge_305.sh | 28 + test/ntuple_qcd_100_200/batch/sge_306.sh | 28 + test/ntuple_qcd_100_200/batch/sge_307.sh | 28 + test/ntuple_qcd_100_200/batch/sge_308.sh | 28 + test/ntuple_qcd_100_200/batch/sge_309.sh | 28 + test/ntuple_qcd_100_200/batch/sge_31.sh | 28 + test/ntuple_qcd_100_200/batch/sge_310.sh | 28 + test/ntuple_qcd_100_200/batch/sge_311.sh | 28 + test/ntuple_qcd_100_200/batch/sge_312.sh | 28 + test/ntuple_qcd_100_200/batch/sge_313.sh | 28 + test/ntuple_qcd_100_200/batch/sge_314.sh | 28 + test/ntuple_qcd_100_200/batch/sge_315.sh | 28 + test/ntuple_qcd_100_200/batch/sge_316.sh | 28 + test/ntuple_qcd_100_200/batch/sge_317.sh | 28 + test/ntuple_qcd_100_200/batch/sge_318.sh | 28 + test/ntuple_qcd_100_200/batch/sge_319.sh | 28 + test/ntuple_qcd_100_200/batch/sge_32.sh | 28 + test/ntuple_qcd_100_200/batch/sge_320.sh | 28 + test/ntuple_qcd_100_200/batch/sge_321.sh | 28 + test/ntuple_qcd_100_200/batch/sge_322.sh | 28 + test/ntuple_qcd_100_200/batch/sge_323.sh | 28 + test/ntuple_qcd_100_200/batch/sge_324.sh | 28 + test/ntuple_qcd_100_200/batch/sge_325.sh | 28 + test/ntuple_qcd_100_200/batch/sge_326.sh | 28 + test/ntuple_qcd_100_200/batch/sge_327.sh | 28 + test/ntuple_qcd_100_200/batch/sge_328.sh | 28 + test/ntuple_qcd_100_200/batch/sge_329.sh | 28 + test/ntuple_qcd_100_200/batch/sge_33.sh | 28 + test/ntuple_qcd_100_200/batch/sge_330.sh | 28 + test/ntuple_qcd_100_200/batch/sge_331.sh | 28 + test/ntuple_qcd_100_200/batch/sge_332.sh | 28 + test/ntuple_qcd_100_200/batch/sge_333.sh | 28 + test/ntuple_qcd_100_200/batch/sge_334.sh | 28 + test/ntuple_qcd_100_200/batch/sge_335.sh | 28 + test/ntuple_qcd_100_200/batch/sge_336.sh | 28 + test/ntuple_qcd_100_200/batch/sge_337.sh | 28 + test/ntuple_qcd_100_200/batch/sge_338.sh | 28 + test/ntuple_qcd_100_200/batch/sge_339.sh | 28 + test/ntuple_qcd_100_200/batch/sge_34.sh | 28 + test/ntuple_qcd_100_200/batch/sge_340.sh | 28 + test/ntuple_qcd_100_200/batch/sge_341.sh | 28 + test/ntuple_qcd_100_200/batch/sge_342.sh | 28 + test/ntuple_qcd_100_200/batch/sge_343.sh | 28 + test/ntuple_qcd_100_200/batch/sge_344.sh | 28 + test/ntuple_qcd_100_200/batch/sge_345.sh | 28 + test/ntuple_qcd_100_200/batch/sge_346.sh | 28 + test/ntuple_qcd_100_200/batch/sge_347.sh | 28 + test/ntuple_qcd_100_200/batch/sge_348.sh | 28 + test/ntuple_qcd_100_200/batch/sge_349.sh | 28 + test/ntuple_qcd_100_200/batch/sge_35.sh | 28 + test/ntuple_qcd_100_200/batch/sge_350.sh | 28 + test/ntuple_qcd_100_200/batch/sge_351.sh | 28 + test/ntuple_qcd_100_200/batch/sge_352.sh | 28 + test/ntuple_qcd_100_200/batch/sge_353.sh | 28 + test/ntuple_qcd_100_200/batch/sge_354.sh | 28 + test/ntuple_qcd_100_200/batch/sge_355.sh | 28 + test/ntuple_qcd_100_200/batch/sge_356.sh | 28 + test/ntuple_qcd_100_200/batch/sge_357.sh | 28 + test/ntuple_qcd_100_200/batch/sge_358.sh | 28 + test/ntuple_qcd_100_200/batch/sge_359.sh | 28 + test/ntuple_qcd_100_200/batch/sge_36.sh | 28 + test/ntuple_qcd_100_200/batch/sge_360.sh | 28 + test/ntuple_qcd_100_200/batch/sge_361.sh | 28 + test/ntuple_qcd_100_200/batch/sge_362.sh | 28 + test/ntuple_qcd_100_200/batch/sge_363.sh | 28 + test/ntuple_qcd_100_200/batch/sge_364.sh | 28 + test/ntuple_qcd_100_200/batch/sge_365.sh | 28 + test/ntuple_qcd_100_200/batch/sge_366.sh | 28 + test/ntuple_qcd_100_200/batch/sge_367.sh | 28 + test/ntuple_qcd_100_200/batch/sge_368.sh | 28 + test/ntuple_qcd_100_200/batch/sge_369.sh | 28 + test/ntuple_qcd_100_200/batch/sge_37.sh | 28 + test/ntuple_qcd_100_200/batch/sge_370.sh | 28 + test/ntuple_qcd_100_200/batch/sge_371.sh | 28 + test/ntuple_qcd_100_200/batch/sge_372.sh | 28 + test/ntuple_qcd_100_200/batch/sge_373.sh | 28 + test/ntuple_qcd_100_200/batch/sge_374.sh | 28 + test/ntuple_qcd_100_200/batch/sge_375.sh | 28 + test/ntuple_qcd_100_200/batch/sge_376.sh | 28 + test/ntuple_qcd_100_200/batch/sge_377.sh | 28 + test/ntuple_qcd_100_200/batch/sge_378.sh | 28 + test/ntuple_qcd_100_200/batch/sge_379.sh | 28 + test/ntuple_qcd_100_200/batch/sge_38.sh | 28 + test/ntuple_qcd_100_200/batch/sge_380.sh | 28 + test/ntuple_qcd_100_200/batch/sge_381.sh | 28 + test/ntuple_qcd_100_200/batch/sge_382.sh | 28 + test/ntuple_qcd_100_200/batch/sge_383.sh | 28 + test/ntuple_qcd_100_200/batch/sge_384.sh | 28 + test/ntuple_qcd_100_200/batch/sge_385.sh | 28 + test/ntuple_qcd_100_200/batch/sge_386.sh | 28 + test/ntuple_qcd_100_200/batch/sge_387.sh | 28 + test/ntuple_qcd_100_200/batch/sge_388.sh | 28 + test/ntuple_qcd_100_200/batch/sge_389.sh | 28 + test/ntuple_qcd_100_200/batch/sge_39.sh | 28 + test/ntuple_qcd_100_200/batch/sge_390.sh | 28 + test/ntuple_qcd_100_200/batch/sge_391.sh | 28 + test/ntuple_qcd_100_200/batch/sge_392.sh | 28 + test/ntuple_qcd_100_200/batch/sge_393.sh | 28 + test/ntuple_qcd_100_200/batch/sge_394.sh | 28 + test/ntuple_qcd_100_200/batch/sge_395.sh | 28 + test/ntuple_qcd_100_200/batch/sge_396.sh | 28 + test/ntuple_qcd_100_200/batch/sge_397.sh | 28 + test/ntuple_qcd_100_200/batch/sge_398.sh | 28 + test/ntuple_qcd_100_200/batch/sge_399.sh | 28 + test/ntuple_qcd_100_200/batch/sge_4.sh | 28 + test/ntuple_qcd_100_200/batch/sge_40.sh | 28 + test/ntuple_qcd_100_200/batch/sge_400.sh | 28 + test/ntuple_qcd_100_200/batch/sge_401.sh | 28 + test/ntuple_qcd_100_200/batch/sge_402.sh | 28 + test/ntuple_qcd_100_200/batch/sge_403.sh | 28 + test/ntuple_qcd_100_200/batch/sge_404.sh | 28 + test/ntuple_qcd_100_200/batch/sge_405.sh | 28 + test/ntuple_qcd_100_200/batch/sge_406.sh | 28 + test/ntuple_qcd_100_200/batch/sge_407.sh | 28 + test/ntuple_qcd_100_200/batch/sge_408.sh | 28 + test/ntuple_qcd_100_200/batch/sge_409.sh | 28 + test/ntuple_qcd_100_200/batch/sge_41.sh | 28 + test/ntuple_qcd_100_200/batch/sge_410.sh | 28 + test/ntuple_qcd_100_200/batch/sge_411.sh | 28 + test/ntuple_qcd_100_200/batch/sge_412.sh | 28 + test/ntuple_qcd_100_200/batch/sge_413.sh | 28 + test/ntuple_qcd_100_200/batch/sge_414.sh | 28 + test/ntuple_qcd_100_200/batch/sge_415.sh | 28 + test/ntuple_qcd_100_200/batch/sge_416.sh | 28 + test/ntuple_qcd_100_200/batch/sge_417.sh | 28 + test/ntuple_qcd_100_200/batch/sge_418.sh | 28 + test/ntuple_qcd_100_200/batch/sge_419.sh | 28 + test/ntuple_qcd_100_200/batch/sge_42.sh | 28 + test/ntuple_qcd_100_200/batch/sge_420.sh | 28 + test/ntuple_qcd_100_200/batch/sge_421.sh | 28 + test/ntuple_qcd_100_200/batch/sge_422.sh | 28 + test/ntuple_qcd_100_200/batch/sge_423.sh | 28 + test/ntuple_qcd_100_200/batch/sge_424.sh | 28 + test/ntuple_qcd_100_200/batch/sge_425.sh | 28 + test/ntuple_qcd_100_200/batch/sge_426.sh | 28 + test/ntuple_qcd_100_200/batch/sge_427.sh | 28 + test/ntuple_qcd_100_200/batch/sge_428.sh | 28 + test/ntuple_qcd_100_200/batch/sge_429.sh | 28 + test/ntuple_qcd_100_200/batch/sge_43.sh | 28 + test/ntuple_qcd_100_200/batch/sge_430.sh | 28 + test/ntuple_qcd_100_200/batch/sge_431.sh | 28 + test/ntuple_qcd_100_200/batch/sge_432.sh | 28 + test/ntuple_qcd_100_200/batch/sge_433.sh | 28 + test/ntuple_qcd_100_200/batch/sge_434.sh | 28 + test/ntuple_qcd_100_200/batch/sge_435.sh | 28 + test/ntuple_qcd_100_200/batch/sge_436.sh | 28 + test/ntuple_qcd_100_200/batch/sge_437.sh | 28 + test/ntuple_qcd_100_200/batch/sge_438.sh | 28 + test/ntuple_qcd_100_200/batch/sge_439.sh | 28 + test/ntuple_qcd_100_200/batch/sge_44.sh | 28 + test/ntuple_qcd_100_200/batch/sge_440.sh | 28 + test/ntuple_qcd_100_200/batch/sge_441.sh | 28 + test/ntuple_qcd_100_200/batch/sge_442.sh | 28 + test/ntuple_qcd_100_200/batch/sge_443.sh | 28 + test/ntuple_qcd_100_200/batch/sge_444.sh | 28 + test/ntuple_qcd_100_200/batch/sge_445.sh | 28 + test/ntuple_qcd_100_200/batch/sge_446.sh | 28 + test/ntuple_qcd_100_200/batch/sge_447.sh | 28 + test/ntuple_qcd_100_200/batch/sge_448.sh | 28 + test/ntuple_qcd_100_200/batch/sge_449.sh | 28 + test/ntuple_qcd_100_200/batch/sge_45.sh | 28 + test/ntuple_qcd_100_200/batch/sge_450.sh | 28 + test/ntuple_qcd_100_200/batch/sge_451.sh | 28 + test/ntuple_qcd_100_200/batch/sge_452.sh | 28 + test/ntuple_qcd_100_200/batch/sge_453.sh | 28 + test/ntuple_qcd_100_200/batch/sge_454.sh | 28 + test/ntuple_qcd_100_200/batch/sge_455.sh | 28 + test/ntuple_qcd_100_200/batch/sge_456.sh | 28 + test/ntuple_qcd_100_200/batch/sge_457.sh | 28 + test/ntuple_qcd_100_200/batch/sge_458.sh | 28 + test/ntuple_qcd_100_200/batch/sge_459.sh | 28 + test/ntuple_qcd_100_200/batch/sge_46.sh | 28 + test/ntuple_qcd_100_200/batch/sge_460.sh | 28 + test/ntuple_qcd_100_200/batch/sge_461.sh | 28 + test/ntuple_qcd_100_200/batch/sge_462.sh | 28 + test/ntuple_qcd_100_200/batch/sge_463.sh | 28 + test/ntuple_qcd_100_200/batch/sge_464.sh | 28 + test/ntuple_qcd_100_200/batch/sge_465.sh | 28 + test/ntuple_qcd_100_200/batch/sge_466.sh | 28 + test/ntuple_qcd_100_200/batch/sge_467.sh | 28 + test/ntuple_qcd_100_200/batch/sge_468.sh | 28 + test/ntuple_qcd_100_200/batch/sge_469.sh | 28 + test/ntuple_qcd_100_200/batch/sge_47.sh | 28 + test/ntuple_qcd_100_200/batch/sge_470.sh | 28 + test/ntuple_qcd_100_200/batch/sge_471.sh | 28 + test/ntuple_qcd_100_200/batch/sge_472.sh | 28 + test/ntuple_qcd_100_200/batch/sge_473.sh | 28 + test/ntuple_qcd_100_200/batch/sge_474.sh | 28 + test/ntuple_qcd_100_200/batch/sge_475.sh | 28 + test/ntuple_qcd_100_200/batch/sge_476.sh | 28 + test/ntuple_qcd_100_200/batch/sge_477.sh | 28 + test/ntuple_qcd_100_200/batch/sge_478.sh | 28 + test/ntuple_qcd_100_200/batch/sge_479.sh | 28 + test/ntuple_qcd_100_200/batch/sge_48.sh | 28 + test/ntuple_qcd_100_200/batch/sge_480.sh | 28 + test/ntuple_qcd_100_200/batch/sge_481.sh | 28 + test/ntuple_qcd_100_200/batch/sge_482.sh | 28 + test/ntuple_qcd_100_200/batch/sge_483.sh | 28 + test/ntuple_qcd_100_200/batch/sge_484.sh | 28 + test/ntuple_qcd_100_200/batch/sge_485.sh | 28 + test/ntuple_qcd_100_200/batch/sge_486.sh | 28 + test/ntuple_qcd_100_200/batch/sge_487.sh | 28 + test/ntuple_qcd_100_200/batch/sge_488.sh | 28 + test/ntuple_qcd_100_200/batch/sge_489.sh | 28 + test/ntuple_qcd_100_200/batch/sge_49.sh | 28 + test/ntuple_qcd_100_200/batch/sge_490.sh | 28 + test/ntuple_qcd_100_200/batch/sge_491.sh | 28 + test/ntuple_qcd_100_200/batch/sge_492.sh | 28 + test/ntuple_qcd_100_200/batch/sge_493.sh | 28 + test/ntuple_qcd_100_200/batch/sge_494.sh | 28 + test/ntuple_qcd_100_200/batch/sge_495.sh | 28 + test/ntuple_qcd_100_200/batch/sge_496.sh | 28 + test/ntuple_qcd_100_200/batch/sge_497.sh | 28 + test/ntuple_qcd_100_200/batch/sge_498.sh | 28 + test/ntuple_qcd_100_200/batch/sge_499.sh | 28 + test/ntuple_qcd_100_200/batch/sge_5.sh | 28 + test/ntuple_qcd_100_200/batch/sge_50.sh | 28 + test/ntuple_qcd_100_200/batch/sge_51.sh | 28 + test/ntuple_qcd_100_200/batch/sge_52.sh | 28 + test/ntuple_qcd_100_200/batch/sge_53.sh | 28 + test/ntuple_qcd_100_200/batch/sge_54.sh | 28 + test/ntuple_qcd_100_200/batch/sge_55.sh | 28 + test/ntuple_qcd_100_200/batch/sge_56.sh | 28 + test/ntuple_qcd_100_200/batch/sge_57.sh | 28 + test/ntuple_qcd_100_200/batch/sge_58.sh | 28 + test/ntuple_qcd_100_200/batch/sge_59.sh | 28 + test/ntuple_qcd_100_200/batch/sge_6.sh | 28 + test/ntuple_qcd_100_200/batch/sge_60.sh | 28 + test/ntuple_qcd_100_200/batch/sge_61.sh | 28 + test/ntuple_qcd_100_200/batch/sge_62.sh | 28 + test/ntuple_qcd_100_200/batch/sge_63.sh | 28 + test/ntuple_qcd_100_200/batch/sge_64.sh | 28 + test/ntuple_qcd_100_200/batch/sge_65.sh | 28 + test/ntuple_qcd_100_200/batch/sge_66.sh | 28 + test/ntuple_qcd_100_200/batch/sge_67.sh | 28 + test/ntuple_qcd_100_200/batch/sge_68.sh | 28 + test/ntuple_qcd_100_200/batch/sge_69.sh | 28 + test/ntuple_qcd_100_200/batch/sge_7.sh | 28 + test/ntuple_qcd_100_200/batch/sge_70.sh | 28 + test/ntuple_qcd_100_200/batch/sge_71.sh | 28 + test/ntuple_qcd_100_200/batch/sge_72.sh | 28 + test/ntuple_qcd_100_200/batch/sge_73.sh | 28 + test/ntuple_qcd_100_200/batch/sge_74.sh | 28 + test/ntuple_qcd_100_200/batch/sge_75.sh | 28 + test/ntuple_qcd_100_200/batch/sge_76.sh | 28 + test/ntuple_qcd_100_200/batch/sge_77.sh | 28 + test/ntuple_qcd_100_200/batch/sge_78.sh | 28 + test/ntuple_qcd_100_200/batch/sge_79.sh | 28 + test/ntuple_qcd_100_200/batch/sge_8.sh | 28 + test/ntuple_qcd_100_200/batch/sge_80.sh | 28 + test/ntuple_qcd_100_200/batch/sge_81.sh | 28 + test/ntuple_qcd_100_200/batch/sge_82.sh | 28 + test/ntuple_qcd_100_200/batch/sge_83.sh | 28 + test/ntuple_qcd_100_200/batch/sge_84.sh | 28 + test/ntuple_qcd_100_200/batch/sge_85.sh | 28 + test/ntuple_qcd_100_200/batch/sge_86.sh | 28 + test/ntuple_qcd_100_200/batch/sge_87.sh | 28 + test/ntuple_qcd_100_200/batch/sge_88.sh | 28 + test/ntuple_qcd_100_200/batch/sge_89.sh | 28 + test/ntuple_qcd_100_200/batch/sge_9.sh | 28 + test/ntuple_qcd_100_200/batch/sge_90.sh | 28 + test/ntuple_qcd_100_200/batch/sge_91.sh | 28 + test/ntuple_qcd_100_200/batch/sge_92.sh | 28 + test/ntuple_qcd_100_200/batch/sge_93.sh | 28 + test/ntuple_qcd_100_200/batch/sge_94.sh | 28 + test/ntuple_qcd_100_200/batch/sge_95.sh | 28 + test/ntuple_qcd_100_200/batch/sge_96.sh | 28 + test/ntuple_qcd_100_200/batch/sge_97.sh | 28 + test/ntuple_qcd_100_200/batch/sge_98.sh | 28 + test/ntuple_qcd_100_200/batch/sge_99.sh | 28 + test/ntuple_qcd_100_200/batchscript.sh | 51 ++ test/ntuple_qcd_100_200/condor.sub | 13 + test/ntuple_qcd_100_200/helper | 1 + test/ntuple_qcd_100_200/output | 1 + test/ntuple_qcd_100_200/sge_sub.sh | 500 ++++++++++++++ test/ntuple_qcd_1500_2000/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_1500_2000/batch/condor_0.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_1.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_10.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_100.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_101.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_102.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_103.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_104.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_105.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_106.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_107.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_108.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_109.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_11.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_110.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_111.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_112.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_113.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_114.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_115.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_116.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_117.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_118.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_119.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_12.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_120.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_121.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_122.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_123.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_124.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_125.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_126.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_127.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_128.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_129.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_13.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_130.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_131.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_132.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_133.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_134.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_135.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_136.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_137.sub | 13 + .../ntuple_qcd_1500_2000/batch/condor_138.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_14.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_15.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_16.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_17.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_18.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_19.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_2.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_20.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_21.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_22.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_23.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_24.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_25.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_26.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_27.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_28.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_29.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_3.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_30.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_31.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_32.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_33.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_34.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_35.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_36.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_37.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_38.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_39.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_4.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_40.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_41.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_42.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_43.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_44.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_45.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_46.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_47.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_48.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_49.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_5.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_50.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_51.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_52.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_53.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_54.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_55.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_56.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_57.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_58.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_59.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_6.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_60.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_61.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_62.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_63.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_64.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_65.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_66.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_67.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_68.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_69.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_7.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_70.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_71.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_72.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_73.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_74.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_75.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_76.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_77.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_78.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_79.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_8.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_80.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_81.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_82.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_83.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_84.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_85.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_86.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_87.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_88.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_89.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_9.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_90.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_91.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_92.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_93.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_94.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_95.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_96.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_97.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_98.sub | 13 + test/ntuple_qcd_1500_2000/batch/condor_99.sub | 13 + test/ntuple_qcd_1500_2000/batch/nJobs.139 | 0 test/ntuple_qcd_1500_2000/batch/sge_0.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_1.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_10.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_100.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_101.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_102.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_103.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_104.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_105.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_106.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_107.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_108.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_109.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_11.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_110.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_111.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_112.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_113.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_114.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_115.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_116.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_117.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_118.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_119.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_12.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_120.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_121.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_122.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_123.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_124.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_125.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_126.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_127.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_128.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_129.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_13.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_130.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_131.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_132.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_133.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_134.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_135.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_136.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_137.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_138.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_14.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_15.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_16.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_17.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_18.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_19.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_2.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_20.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_21.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_22.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_23.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_24.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_25.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_26.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_27.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_28.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_29.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_3.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_30.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_31.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_32.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_33.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_34.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_35.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_36.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_37.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_38.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_39.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_4.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_40.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_41.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_42.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_43.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_44.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_45.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_46.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_47.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_48.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_49.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_5.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_50.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_51.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_52.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_53.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_54.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_55.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_56.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_57.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_58.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_59.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_6.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_60.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_61.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_62.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_63.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_64.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_65.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_66.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_67.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_68.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_69.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_7.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_70.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_71.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_72.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_73.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_74.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_75.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_76.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_77.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_78.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_79.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_8.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_80.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_81.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_82.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_83.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_84.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_85.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_86.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_87.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_88.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_89.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_9.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_90.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_91.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_92.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_93.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_94.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_95.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_96.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_97.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_98.sh | 28 + test/ntuple_qcd_1500_2000/batch/sge_99.sh | 28 + test/ntuple_qcd_1500_2000/batchscript.sh | 51 ++ test/ntuple_qcd_1500_2000/condor.sub | 13 + test/ntuple_qcd_1500_2000/helper | 1 + test/ntuple_qcd_1500_2000/output | 1 + test/ntuple_qcd_1500_2000/sge_sub.sh | 139 ++++ test/ntuple_qcd_2000_Inf/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_2000_Inf/batch/condor_0.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_1.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_10.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_11.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_12.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_13.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_14.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_15.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_16.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_17.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_18.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_19.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_2.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_20.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_21.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_22.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_23.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_24.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_25.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_26.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_27.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_28.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_29.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_3.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_30.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_31.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_32.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_33.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_34.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_35.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_36.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_37.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_38.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_39.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_4.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_40.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_41.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_42.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_43.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_44.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_45.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_46.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_47.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_48.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_49.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_5.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_50.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_51.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_52.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_53.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_54.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_55.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_56.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_57.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_58.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_59.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_6.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_60.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_61.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_62.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_63.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_64.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_65.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_66.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_67.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_68.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_69.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_7.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_70.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_71.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_72.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_73.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_74.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_75.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_76.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_8.sub | 13 + test/ntuple_qcd_2000_Inf/batch/condor_9.sub | 13 + test/ntuple_qcd_2000_Inf/batch/nJobs.77 | 0 test/ntuple_qcd_2000_Inf/batch/sge_0.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_1.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_10.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_11.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_12.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_13.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_14.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_15.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_16.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_17.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_18.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_19.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_2.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_20.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_21.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_22.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_23.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_24.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_25.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_26.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_27.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_28.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_29.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_3.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_30.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_31.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_32.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_33.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_34.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_35.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_36.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_37.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_38.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_39.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_4.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_40.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_41.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_42.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_43.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_44.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_45.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_46.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_47.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_48.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_49.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_5.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_50.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_51.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_52.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_53.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_54.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_55.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_56.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_57.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_58.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_59.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_6.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_60.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_61.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_62.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_63.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_64.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_65.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_66.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_67.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_68.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_69.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_7.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_70.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_71.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_72.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_73.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_74.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_75.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_76.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_8.sh | 28 + test/ntuple_qcd_2000_Inf/batch/sge_9.sh | 28 + test/ntuple_qcd_2000_Inf/batchscript.sh | 51 ++ test/ntuple_qcd_2000_Inf/condor.sub | 13 + test/ntuple_qcd_2000_Inf/helper | 1 + test/ntuple_qcd_2000_Inf/output | 1 + test/ntuple_qcd_2000_Inf/sge_sub.sh | 77 +++ test/ntuple_qcd_200_300/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_200_300/batch/condor_0.sub | 13 + test/ntuple_qcd_200_300/batch/condor_1.sub | 13 + test/ntuple_qcd_200_300/batch/condor_10.sub | 13 + test/ntuple_qcd_200_300/batch/condor_100.sub | 13 + test/ntuple_qcd_200_300/batch/condor_101.sub | 13 + test/ntuple_qcd_200_300/batch/condor_102.sub | 13 + test/ntuple_qcd_200_300/batch/condor_103.sub | 13 + test/ntuple_qcd_200_300/batch/condor_104.sub | 13 + test/ntuple_qcd_200_300/batch/condor_105.sub | 13 + test/ntuple_qcd_200_300/batch/condor_106.sub | 13 + test/ntuple_qcd_200_300/batch/condor_107.sub | 13 + test/ntuple_qcd_200_300/batch/condor_108.sub | 13 + test/ntuple_qcd_200_300/batch/condor_109.sub | 13 + test/ntuple_qcd_200_300/batch/condor_11.sub | 13 + test/ntuple_qcd_200_300/batch/condor_110.sub | 13 + test/ntuple_qcd_200_300/batch/condor_111.sub | 13 + test/ntuple_qcd_200_300/batch/condor_112.sub | 13 + test/ntuple_qcd_200_300/batch/condor_113.sub | 13 + test/ntuple_qcd_200_300/batch/condor_114.sub | 13 + test/ntuple_qcd_200_300/batch/condor_115.sub | 13 + test/ntuple_qcd_200_300/batch/condor_116.sub | 13 + test/ntuple_qcd_200_300/batch/condor_117.sub | 13 + test/ntuple_qcd_200_300/batch/condor_118.sub | 13 + test/ntuple_qcd_200_300/batch/condor_119.sub | 13 + test/ntuple_qcd_200_300/batch/condor_12.sub | 13 + test/ntuple_qcd_200_300/batch/condor_120.sub | 13 + test/ntuple_qcd_200_300/batch/condor_121.sub | 13 + test/ntuple_qcd_200_300/batch/condor_122.sub | 13 + test/ntuple_qcd_200_300/batch/condor_123.sub | 13 + test/ntuple_qcd_200_300/batch/condor_124.sub | 13 + test/ntuple_qcd_200_300/batch/condor_125.sub | 13 + test/ntuple_qcd_200_300/batch/condor_126.sub | 13 + test/ntuple_qcd_200_300/batch/condor_127.sub | 13 + test/ntuple_qcd_200_300/batch/condor_128.sub | 13 + test/ntuple_qcd_200_300/batch/condor_129.sub | 13 + test/ntuple_qcd_200_300/batch/condor_13.sub | 13 + test/ntuple_qcd_200_300/batch/condor_130.sub | 13 + test/ntuple_qcd_200_300/batch/condor_131.sub | 13 + test/ntuple_qcd_200_300/batch/condor_132.sub | 13 + test/ntuple_qcd_200_300/batch/condor_133.sub | 13 + test/ntuple_qcd_200_300/batch/condor_134.sub | 13 + test/ntuple_qcd_200_300/batch/condor_135.sub | 13 + test/ntuple_qcd_200_300/batch/condor_136.sub | 13 + test/ntuple_qcd_200_300/batch/condor_137.sub | 13 + test/ntuple_qcd_200_300/batch/condor_138.sub | 13 + test/ntuple_qcd_200_300/batch/condor_139.sub | 13 + test/ntuple_qcd_200_300/batch/condor_14.sub | 13 + test/ntuple_qcd_200_300/batch/condor_140.sub | 13 + test/ntuple_qcd_200_300/batch/condor_141.sub | 13 + test/ntuple_qcd_200_300/batch/condor_142.sub | 13 + test/ntuple_qcd_200_300/batch/condor_143.sub | 13 + test/ntuple_qcd_200_300/batch/condor_144.sub | 13 + test/ntuple_qcd_200_300/batch/condor_145.sub | 13 + test/ntuple_qcd_200_300/batch/condor_146.sub | 13 + test/ntuple_qcd_200_300/batch/condor_147.sub | 13 + test/ntuple_qcd_200_300/batch/condor_148.sub | 13 + test/ntuple_qcd_200_300/batch/condor_149.sub | 13 + test/ntuple_qcd_200_300/batch/condor_15.sub | 13 + test/ntuple_qcd_200_300/batch/condor_150.sub | 13 + test/ntuple_qcd_200_300/batch/condor_151.sub | 13 + test/ntuple_qcd_200_300/batch/condor_152.sub | 13 + test/ntuple_qcd_200_300/batch/condor_153.sub | 13 + test/ntuple_qcd_200_300/batch/condor_154.sub | 13 + test/ntuple_qcd_200_300/batch/condor_155.sub | 13 + test/ntuple_qcd_200_300/batch/condor_156.sub | 13 + test/ntuple_qcd_200_300/batch/condor_157.sub | 13 + test/ntuple_qcd_200_300/batch/condor_158.sub | 13 + test/ntuple_qcd_200_300/batch/condor_159.sub | 13 + test/ntuple_qcd_200_300/batch/condor_16.sub | 13 + test/ntuple_qcd_200_300/batch/condor_160.sub | 13 + test/ntuple_qcd_200_300/batch/condor_161.sub | 13 + test/ntuple_qcd_200_300/batch/condor_162.sub | 13 + test/ntuple_qcd_200_300/batch/condor_163.sub | 13 + test/ntuple_qcd_200_300/batch/condor_164.sub | 13 + test/ntuple_qcd_200_300/batch/condor_165.sub | 13 + test/ntuple_qcd_200_300/batch/condor_166.sub | 13 + test/ntuple_qcd_200_300/batch/condor_167.sub | 13 + test/ntuple_qcd_200_300/batch/condor_168.sub | 13 + test/ntuple_qcd_200_300/batch/condor_169.sub | 13 + test/ntuple_qcd_200_300/batch/condor_17.sub | 13 + test/ntuple_qcd_200_300/batch/condor_170.sub | 13 + test/ntuple_qcd_200_300/batch/condor_171.sub | 13 + test/ntuple_qcd_200_300/batch/condor_172.sub | 13 + test/ntuple_qcd_200_300/batch/condor_173.sub | 13 + test/ntuple_qcd_200_300/batch/condor_174.sub | 13 + test/ntuple_qcd_200_300/batch/condor_175.sub | 13 + test/ntuple_qcd_200_300/batch/condor_176.sub | 13 + test/ntuple_qcd_200_300/batch/condor_177.sub | 13 + test/ntuple_qcd_200_300/batch/condor_178.sub | 13 + test/ntuple_qcd_200_300/batch/condor_179.sub | 13 + test/ntuple_qcd_200_300/batch/condor_18.sub | 13 + test/ntuple_qcd_200_300/batch/condor_180.sub | 13 + test/ntuple_qcd_200_300/batch/condor_181.sub | 13 + test/ntuple_qcd_200_300/batch/condor_182.sub | 13 + test/ntuple_qcd_200_300/batch/condor_183.sub | 13 + test/ntuple_qcd_200_300/batch/condor_184.sub | 13 + test/ntuple_qcd_200_300/batch/condor_185.sub | 13 + test/ntuple_qcd_200_300/batch/condor_186.sub | 13 + test/ntuple_qcd_200_300/batch/condor_187.sub | 13 + test/ntuple_qcd_200_300/batch/condor_188.sub | 13 + test/ntuple_qcd_200_300/batch/condor_189.sub | 13 + test/ntuple_qcd_200_300/batch/condor_19.sub | 13 + test/ntuple_qcd_200_300/batch/condor_190.sub | 13 + test/ntuple_qcd_200_300/batch/condor_191.sub | 13 + test/ntuple_qcd_200_300/batch/condor_192.sub | 13 + test/ntuple_qcd_200_300/batch/condor_193.sub | 13 + test/ntuple_qcd_200_300/batch/condor_194.sub | 13 + test/ntuple_qcd_200_300/batch/condor_195.sub | 13 + test/ntuple_qcd_200_300/batch/condor_196.sub | 13 + test/ntuple_qcd_200_300/batch/condor_197.sub | 13 + test/ntuple_qcd_200_300/batch/condor_198.sub | 13 + test/ntuple_qcd_200_300/batch/condor_199.sub | 13 + test/ntuple_qcd_200_300/batch/condor_2.sub | 13 + test/ntuple_qcd_200_300/batch/condor_20.sub | 13 + test/ntuple_qcd_200_300/batch/condor_200.sub | 13 + test/ntuple_qcd_200_300/batch/condor_201.sub | 13 + test/ntuple_qcd_200_300/batch/condor_202.sub | 13 + test/ntuple_qcd_200_300/batch/condor_203.sub | 13 + test/ntuple_qcd_200_300/batch/condor_204.sub | 13 + test/ntuple_qcd_200_300/batch/condor_205.sub | 13 + test/ntuple_qcd_200_300/batch/condor_206.sub | 13 + test/ntuple_qcd_200_300/batch/condor_207.sub | 13 + test/ntuple_qcd_200_300/batch/condor_208.sub | 13 + test/ntuple_qcd_200_300/batch/condor_209.sub | 13 + test/ntuple_qcd_200_300/batch/condor_21.sub | 13 + test/ntuple_qcd_200_300/batch/condor_210.sub | 13 + test/ntuple_qcd_200_300/batch/condor_211.sub | 13 + test/ntuple_qcd_200_300/batch/condor_212.sub | 13 + test/ntuple_qcd_200_300/batch/condor_213.sub | 13 + test/ntuple_qcd_200_300/batch/condor_214.sub | 13 + test/ntuple_qcd_200_300/batch/condor_215.sub | 13 + test/ntuple_qcd_200_300/batch/condor_216.sub | 13 + test/ntuple_qcd_200_300/batch/condor_217.sub | 13 + test/ntuple_qcd_200_300/batch/condor_218.sub | 13 + test/ntuple_qcd_200_300/batch/condor_219.sub | 13 + test/ntuple_qcd_200_300/batch/condor_22.sub | 13 + test/ntuple_qcd_200_300/batch/condor_220.sub | 13 + test/ntuple_qcd_200_300/batch/condor_221.sub | 13 + test/ntuple_qcd_200_300/batch/condor_222.sub | 13 + test/ntuple_qcd_200_300/batch/condor_223.sub | 13 + test/ntuple_qcd_200_300/batch/condor_224.sub | 13 + test/ntuple_qcd_200_300/batch/condor_225.sub | 13 + test/ntuple_qcd_200_300/batch/condor_226.sub | 13 + test/ntuple_qcd_200_300/batch/condor_227.sub | 13 + test/ntuple_qcd_200_300/batch/condor_228.sub | 13 + test/ntuple_qcd_200_300/batch/condor_229.sub | 13 + test/ntuple_qcd_200_300/batch/condor_23.sub | 13 + test/ntuple_qcd_200_300/batch/condor_230.sub | 13 + test/ntuple_qcd_200_300/batch/condor_231.sub | 13 + test/ntuple_qcd_200_300/batch/condor_232.sub | 13 + test/ntuple_qcd_200_300/batch/condor_233.sub | 13 + test/ntuple_qcd_200_300/batch/condor_234.sub | 13 + test/ntuple_qcd_200_300/batch/condor_235.sub | 13 + test/ntuple_qcd_200_300/batch/condor_236.sub | 13 + test/ntuple_qcd_200_300/batch/condor_237.sub | 13 + test/ntuple_qcd_200_300/batch/condor_238.sub | 13 + test/ntuple_qcd_200_300/batch/condor_239.sub | 13 + test/ntuple_qcd_200_300/batch/condor_24.sub | 13 + test/ntuple_qcd_200_300/batch/condor_240.sub | 13 + test/ntuple_qcd_200_300/batch/condor_241.sub | 13 + test/ntuple_qcd_200_300/batch/condor_242.sub | 13 + test/ntuple_qcd_200_300/batch/condor_243.sub | 13 + test/ntuple_qcd_200_300/batch/condor_244.sub | 13 + test/ntuple_qcd_200_300/batch/condor_245.sub | 13 + test/ntuple_qcd_200_300/batch/condor_246.sub | 13 + test/ntuple_qcd_200_300/batch/condor_247.sub | 13 + test/ntuple_qcd_200_300/batch/condor_248.sub | 13 + test/ntuple_qcd_200_300/batch/condor_249.sub | 13 + test/ntuple_qcd_200_300/batch/condor_25.sub | 13 + test/ntuple_qcd_200_300/batch/condor_250.sub | 13 + test/ntuple_qcd_200_300/batch/condor_251.sub | 13 + test/ntuple_qcd_200_300/batch/condor_252.sub | 13 + test/ntuple_qcd_200_300/batch/condor_253.sub | 13 + test/ntuple_qcd_200_300/batch/condor_254.sub | 13 + test/ntuple_qcd_200_300/batch/condor_255.sub | 13 + test/ntuple_qcd_200_300/batch/condor_256.sub | 13 + test/ntuple_qcd_200_300/batch/condor_257.sub | 13 + test/ntuple_qcd_200_300/batch/condor_258.sub | 13 + test/ntuple_qcd_200_300/batch/condor_259.sub | 13 + test/ntuple_qcd_200_300/batch/condor_26.sub | 13 + test/ntuple_qcd_200_300/batch/condor_260.sub | 13 + test/ntuple_qcd_200_300/batch/condor_261.sub | 13 + test/ntuple_qcd_200_300/batch/condor_262.sub | 13 + test/ntuple_qcd_200_300/batch/condor_263.sub | 13 + test/ntuple_qcd_200_300/batch/condor_264.sub | 13 + test/ntuple_qcd_200_300/batch/condor_265.sub | 13 + test/ntuple_qcd_200_300/batch/condor_266.sub | 13 + test/ntuple_qcd_200_300/batch/condor_267.sub | 13 + test/ntuple_qcd_200_300/batch/condor_268.sub | 13 + test/ntuple_qcd_200_300/batch/condor_269.sub | 13 + test/ntuple_qcd_200_300/batch/condor_27.sub | 13 + test/ntuple_qcd_200_300/batch/condor_270.sub | 13 + test/ntuple_qcd_200_300/batch/condor_271.sub | 13 + test/ntuple_qcd_200_300/batch/condor_272.sub | 13 + test/ntuple_qcd_200_300/batch/condor_273.sub | 13 + test/ntuple_qcd_200_300/batch/condor_274.sub | 13 + test/ntuple_qcd_200_300/batch/condor_275.sub | 13 + test/ntuple_qcd_200_300/batch/condor_276.sub | 13 + test/ntuple_qcd_200_300/batch/condor_277.sub | 13 + test/ntuple_qcd_200_300/batch/condor_278.sub | 13 + test/ntuple_qcd_200_300/batch/condor_279.sub | 13 + test/ntuple_qcd_200_300/batch/condor_28.sub | 13 + test/ntuple_qcd_200_300/batch/condor_280.sub | 13 + test/ntuple_qcd_200_300/batch/condor_281.sub | 13 + test/ntuple_qcd_200_300/batch/condor_282.sub | 13 + test/ntuple_qcd_200_300/batch/condor_283.sub | 13 + test/ntuple_qcd_200_300/batch/condor_284.sub | 13 + test/ntuple_qcd_200_300/batch/condor_285.sub | 13 + test/ntuple_qcd_200_300/batch/condor_286.sub | 13 + test/ntuple_qcd_200_300/batch/condor_287.sub | 13 + test/ntuple_qcd_200_300/batch/condor_288.sub | 13 + test/ntuple_qcd_200_300/batch/condor_289.sub | 13 + test/ntuple_qcd_200_300/batch/condor_29.sub | 13 + test/ntuple_qcd_200_300/batch/condor_290.sub | 13 + test/ntuple_qcd_200_300/batch/condor_291.sub | 13 + test/ntuple_qcd_200_300/batch/condor_292.sub | 13 + test/ntuple_qcd_200_300/batch/condor_293.sub | 13 + test/ntuple_qcd_200_300/batch/condor_294.sub | 13 + test/ntuple_qcd_200_300/batch/condor_295.sub | 13 + test/ntuple_qcd_200_300/batch/condor_296.sub | 13 + test/ntuple_qcd_200_300/batch/condor_297.sub | 13 + test/ntuple_qcd_200_300/batch/condor_298.sub | 13 + test/ntuple_qcd_200_300/batch/condor_299.sub | 13 + test/ntuple_qcd_200_300/batch/condor_3.sub | 13 + test/ntuple_qcd_200_300/batch/condor_30.sub | 13 + test/ntuple_qcd_200_300/batch/condor_300.sub | 13 + test/ntuple_qcd_200_300/batch/condor_301.sub | 13 + test/ntuple_qcd_200_300/batch/condor_302.sub | 13 + test/ntuple_qcd_200_300/batch/condor_303.sub | 13 + test/ntuple_qcd_200_300/batch/condor_304.sub | 13 + test/ntuple_qcd_200_300/batch/condor_305.sub | 13 + test/ntuple_qcd_200_300/batch/condor_306.sub | 13 + test/ntuple_qcd_200_300/batch/condor_307.sub | 13 + test/ntuple_qcd_200_300/batch/condor_308.sub | 13 + test/ntuple_qcd_200_300/batch/condor_309.sub | 13 + test/ntuple_qcd_200_300/batch/condor_31.sub | 13 + test/ntuple_qcd_200_300/batch/condor_310.sub | 13 + test/ntuple_qcd_200_300/batch/condor_311.sub | 13 + test/ntuple_qcd_200_300/batch/condor_312.sub | 13 + test/ntuple_qcd_200_300/batch/condor_313.sub | 13 + test/ntuple_qcd_200_300/batch/condor_314.sub | 13 + test/ntuple_qcd_200_300/batch/condor_315.sub | 13 + test/ntuple_qcd_200_300/batch/condor_316.sub | 13 + test/ntuple_qcd_200_300/batch/condor_317.sub | 13 + test/ntuple_qcd_200_300/batch/condor_318.sub | 13 + test/ntuple_qcd_200_300/batch/condor_319.sub | 13 + test/ntuple_qcd_200_300/batch/condor_32.sub | 13 + test/ntuple_qcd_200_300/batch/condor_320.sub | 13 + test/ntuple_qcd_200_300/batch/condor_321.sub | 13 + test/ntuple_qcd_200_300/batch/condor_322.sub | 13 + test/ntuple_qcd_200_300/batch/condor_323.sub | 13 + test/ntuple_qcd_200_300/batch/condor_324.sub | 13 + test/ntuple_qcd_200_300/batch/condor_325.sub | 13 + test/ntuple_qcd_200_300/batch/condor_326.sub | 13 + test/ntuple_qcd_200_300/batch/condor_327.sub | 13 + test/ntuple_qcd_200_300/batch/condor_328.sub | 13 + test/ntuple_qcd_200_300/batch/condor_329.sub | 13 + test/ntuple_qcd_200_300/batch/condor_33.sub | 13 + test/ntuple_qcd_200_300/batch/condor_330.sub | 13 + test/ntuple_qcd_200_300/batch/condor_331.sub | 13 + test/ntuple_qcd_200_300/batch/condor_332.sub | 13 + test/ntuple_qcd_200_300/batch/condor_333.sub | 13 + test/ntuple_qcd_200_300/batch/condor_334.sub | 13 + test/ntuple_qcd_200_300/batch/condor_335.sub | 13 + test/ntuple_qcd_200_300/batch/condor_336.sub | 13 + test/ntuple_qcd_200_300/batch/condor_337.sub | 13 + test/ntuple_qcd_200_300/batch/condor_338.sub | 13 + test/ntuple_qcd_200_300/batch/condor_339.sub | 13 + test/ntuple_qcd_200_300/batch/condor_34.sub | 13 + test/ntuple_qcd_200_300/batch/condor_340.sub | 13 + test/ntuple_qcd_200_300/batch/condor_341.sub | 13 + test/ntuple_qcd_200_300/batch/condor_342.sub | 13 + test/ntuple_qcd_200_300/batch/condor_343.sub | 13 + test/ntuple_qcd_200_300/batch/condor_344.sub | 13 + test/ntuple_qcd_200_300/batch/condor_345.sub | 13 + test/ntuple_qcd_200_300/batch/condor_346.sub | 13 + test/ntuple_qcd_200_300/batch/condor_347.sub | 13 + test/ntuple_qcd_200_300/batch/condor_348.sub | 13 + test/ntuple_qcd_200_300/batch/condor_349.sub | 13 + test/ntuple_qcd_200_300/batch/condor_35.sub | 13 + test/ntuple_qcd_200_300/batch/condor_350.sub | 13 + test/ntuple_qcd_200_300/batch/condor_351.sub | 13 + test/ntuple_qcd_200_300/batch/condor_352.sub | 13 + test/ntuple_qcd_200_300/batch/condor_353.sub | 13 + test/ntuple_qcd_200_300/batch/condor_354.sub | 13 + test/ntuple_qcd_200_300/batch/condor_355.sub | 13 + test/ntuple_qcd_200_300/batch/condor_356.sub | 13 + test/ntuple_qcd_200_300/batch/condor_357.sub | 13 + test/ntuple_qcd_200_300/batch/condor_358.sub | 13 + test/ntuple_qcd_200_300/batch/condor_359.sub | 13 + test/ntuple_qcd_200_300/batch/condor_36.sub | 13 + test/ntuple_qcd_200_300/batch/condor_360.sub | 13 + test/ntuple_qcd_200_300/batch/condor_361.sub | 13 + test/ntuple_qcd_200_300/batch/condor_362.sub | 13 + test/ntuple_qcd_200_300/batch/condor_363.sub | 13 + test/ntuple_qcd_200_300/batch/condor_364.sub | 13 + test/ntuple_qcd_200_300/batch/condor_365.sub | 13 + test/ntuple_qcd_200_300/batch/condor_366.sub | 13 + test/ntuple_qcd_200_300/batch/condor_367.sub | 13 + test/ntuple_qcd_200_300/batch/condor_368.sub | 13 + test/ntuple_qcd_200_300/batch/condor_369.sub | 13 + test/ntuple_qcd_200_300/batch/condor_37.sub | 13 + test/ntuple_qcd_200_300/batch/condor_370.sub | 13 + test/ntuple_qcd_200_300/batch/condor_371.sub | 13 + test/ntuple_qcd_200_300/batch/condor_372.sub | 13 + test/ntuple_qcd_200_300/batch/condor_373.sub | 13 + test/ntuple_qcd_200_300/batch/condor_374.sub | 13 + test/ntuple_qcd_200_300/batch/condor_375.sub | 13 + test/ntuple_qcd_200_300/batch/condor_376.sub | 13 + test/ntuple_qcd_200_300/batch/condor_377.sub | 13 + test/ntuple_qcd_200_300/batch/condor_378.sub | 13 + test/ntuple_qcd_200_300/batch/condor_379.sub | 13 + test/ntuple_qcd_200_300/batch/condor_38.sub | 13 + test/ntuple_qcd_200_300/batch/condor_380.sub | 13 + test/ntuple_qcd_200_300/batch/condor_381.sub | 13 + test/ntuple_qcd_200_300/batch/condor_382.sub | 13 + test/ntuple_qcd_200_300/batch/condor_383.sub | 13 + test/ntuple_qcd_200_300/batch/condor_384.sub | 13 + test/ntuple_qcd_200_300/batch/condor_385.sub | 13 + test/ntuple_qcd_200_300/batch/condor_386.sub | 13 + test/ntuple_qcd_200_300/batch/condor_387.sub | 13 + test/ntuple_qcd_200_300/batch/condor_388.sub | 13 + test/ntuple_qcd_200_300/batch/condor_389.sub | 13 + test/ntuple_qcd_200_300/batch/condor_39.sub | 13 + test/ntuple_qcd_200_300/batch/condor_390.sub | 13 + test/ntuple_qcd_200_300/batch/condor_391.sub | 13 + test/ntuple_qcd_200_300/batch/condor_392.sub | 13 + test/ntuple_qcd_200_300/batch/condor_393.sub | 13 + test/ntuple_qcd_200_300/batch/condor_394.sub | 13 + test/ntuple_qcd_200_300/batch/condor_395.sub | 13 + test/ntuple_qcd_200_300/batch/condor_396.sub | 13 + test/ntuple_qcd_200_300/batch/condor_397.sub | 13 + test/ntuple_qcd_200_300/batch/condor_398.sub | 13 + test/ntuple_qcd_200_300/batch/condor_399.sub | 13 + test/ntuple_qcd_200_300/batch/condor_4.sub | 13 + test/ntuple_qcd_200_300/batch/condor_40.sub | 13 + test/ntuple_qcd_200_300/batch/condor_400.sub | 13 + test/ntuple_qcd_200_300/batch/condor_401.sub | 13 + test/ntuple_qcd_200_300/batch/condor_402.sub | 13 + test/ntuple_qcd_200_300/batch/condor_403.sub | 13 + test/ntuple_qcd_200_300/batch/condor_404.sub | 13 + test/ntuple_qcd_200_300/batch/condor_405.sub | 13 + test/ntuple_qcd_200_300/batch/condor_406.sub | 13 + test/ntuple_qcd_200_300/batch/condor_407.sub | 13 + test/ntuple_qcd_200_300/batch/condor_408.sub | 13 + test/ntuple_qcd_200_300/batch/condor_409.sub | 13 + test/ntuple_qcd_200_300/batch/condor_41.sub | 13 + test/ntuple_qcd_200_300/batch/condor_410.sub | 13 + test/ntuple_qcd_200_300/batch/condor_411.sub | 13 + test/ntuple_qcd_200_300/batch/condor_412.sub | 13 + test/ntuple_qcd_200_300/batch/condor_413.sub | 13 + test/ntuple_qcd_200_300/batch/condor_414.sub | 13 + test/ntuple_qcd_200_300/batch/condor_415.sub | 13 + test/ntuple_qcd_200_300/batch/condor_416.sub | 13 + test/ntuple_qcd_200_300/batch/condor_417.sub | 13 + test/ntuple_qcd_200_300/batch/condor_418.sub | 13 + test/ntuple_qcd_200_300/batch/condor_419.sub | 13 + test/ntuple_qcd_200_300/batch/condor_42.sub | 13 + test/ntuple_qcd_200_300/batch/condor_420.sub | 13 + test/ntuple_qcd_200_300/batch/condor_421.sub | 13 + test/ntuple_qcd_200_300/batch/condor_422.sub | 13 + test/ntuple_qcd_200_300/batch/condor_423.sub | 13 + test/ntuple_qcd_200_300/batch/condor_424.sub | 13 + test/ntuple_qcd_200_300/batch/condor_425.sub | 13 + test/ntuple_qcd_200_300/batch/condor_426.sub | 13 + test/ntuple_qcd_200_300/batch/condor_427.sub | 13 + test/ntuple_qcd_200_300/batch/condor_428.sub | 13 + test/ntuple_qcd_200_300/batch/condor_429.sub | 13 + test/ntuple_qcd_200_300/batch/condor_43.sub | 13 + test/ntuple_qcd_200_300/batch/condor_430.sub | 13 + test/ntuple_qcd_200_300/batch/condor_431.sub | 13 + test/ntuple_qcd_200_300/batch/condor_432.sub | 13 + test/ntuple_qcd_200_300/batch/condor_433.sub | 13 + test/ntuple_qcd_200_300/batch/condor_434.sub | 13 + test/ntuple_qcd_200_300/batch/condor_435.sub | 13 + test/ntuple_qcd_200_300/batch/condor_436.sub | 13 + test/ntuple_qcd_200_300/batch/condor_437.sub | 13 + test/ntuple_qcd_200_300/batch/condor_438.sub | 13 + test/ntuple_qcd_200_300/batch/condor_439.sub | 13 + test/ntuple_qcd_200_300/batch/condor_44.sub | 13 + test/ntuple_qcd_200_300/batch/condor_440.sub | 13 + test/ntuple_qcd_200_300/batch/condor_441.sub | 13 + test/ntuple_qcd_200_300/batch/condor_442.sub | 13 + test/ntuple_qcd_200_300/batch/condor_443.sub | 13 + test/ntuple_qcd_200_300/batch/condor_444.sub | 13 + test/ntuple_qcd_200_300/batch/condor_445.sub | 13 + test/ntuple_qcd_200_300/batch/condor_446.sub | 13 + test/ntuple_qcd_200_300/batch/condor_447.sub | 13 + test/ntuple_qcd_200_300/batch/condor_448.sub | 13 + test/ntuple_qcd_200_300/batch/condor_449.sub | 13 + test/ntuple_qcd_200_300/batch/condor_45.sub | 13 + test/ntuple_qcd_200_300/batch/condor_450.sub | 13 + test/ntuple_qcd_200_300/batch/condor_451.sub | 13 + test/ntuple_qcd_200_300/batch/condor_452.sub | 13 + test/ntuple_qcd_200_300/batch/condor_453.sub | 13 + test/ntuple_qcd_200_300/batch/condor_454.sub | 13 + test/ntuple_qcd_200_300/batch/condor_455.sub | 13 + test/ntuple_qcd_200_300/batch/condor_456.sub | 13 + test/ntuple_qcd_200_300/batch/condor_457.sub | 13 + test/ntuple_qcd_200_300/batch/condor_458.sub | 13 + test/ntuple_qcd_200_300/batch/condor_459.sub | 13 + test/ntuple_qcd_200_300/batch/condor_46.sub | 13 + test/ntuple_qcd_200_300/batch/condor_460.sub | 13 + test/ntuple_qcd_200_300/batch/condor_461.sub | 13 + test/ntuple_qcd_200_300/batch/condor_462.sub | 13 + test/ntuple_qcd_200_300/batch/condor_463.sub | 13 + test/ntuple_qcd_200_300/batch/condor_464.sub | 13 + test/ntuple_qcd_200_300/batch/condor_465.sub | 13 + test/ntuple_qcd_200_300/batch/condor_466.sub | 13 + test/ntuple_qcd_200_300/batch/condor_467.sub | 13 + test/ntuple_qcd_200_300/batch/condor_468.sub | 13 + test/ntuple_qcd_200_300/batch/condor_469.sub | 13 + test/ntuple_qcd_200_300/batch/condor_47.sub | 13 + test/ntuple_qcd_200_300/batch/condor_470.sub | 13 + test/ntuple_qcd_200_300/batch/condor_471.sub | 13 + test/ntuple_qcd_200_300/batch/condor_472.sub | 13 + test/ntuple_qcd_200_300/batch/condor_473.sub | 13 + test/ntuple_qcd_200_300/batch/condor_474.sub | 13 + test/ntuple_qcd_200_300/batch/condor_475.sub | 13 + test/ntuple_qcd_200_300/batch/condor_476.sub | 13 + test/ntuple_qcd_200_300/batch/condor_477.sub | 13 + test/ntuple_qcd_200_300/batch/condor_478.sub | 13 + test/ntuple_qcd_200_300/batch/condor_479.sub | 13 + test/ntuple_qcd_200_300/batch/condor_48.sub | 13 + test/ntuple_qcd_200_300/batch/condor_480.sub | 13 + test/ntuple_qcd_200_300/batch/condor_481.sub | 13 + test/ntuple_qcd_200_300/batch/condor_482.sub | 13 + test/ntuple_qcd_200_300/batch/condor_483.sub | 13 + test/ntuple_qcd_200_300/batch/condor_484.sub | 13 + test/ntuple_qcd_200_300/batch/condor_485.sub | 13 + test/ntuple_qcd_200_300/batch/condor_486.sub | 13 + test/ntuple_qcd_200_300/batch/condor_487.sub | 13 + test/ntuple_qcd_200_300/batch/condor_488.sub | 13 + test/ntuple_qcd_200_300/batch/condor_489.sub | 13 + test/ntuple_qcd_200_300/batch/condor_49.sub | 13 + test/ntuple_qcd_200_300/batch/condor_490.sub | 13 + test/ntuple_qcd_200_300/batch/condor_491.sub | 13 + test/ntuple_qcd_200_300/batch/condor_492.sub | 13 + test/ntuple_qcd_200_300/batch/condor_493.sub | 13 + test/ntuple_qcd_200_300/batch/condor_494.sub | 13 + test/ntuple_qcd_200_300/batch/condor_495.sub | 13 + test/ntuple_qcd_200_300/batch/condor_496.sub | 13 + test/ntuple_qcd_200_300/batch/condor_497.sub | 13 + test/ntuple_qcd_200_300/batch/condor_498.sub | 13 + test/ntuple_qcd_200_300/batch/condor_499.sub | 13 + test/ntuple_qcd_200_300/batch/condor_5.sub | 13 + test/ntuple_qcd_200_300/batch/condor_50.sub | 13 + test/ntuple_qcd_200_300/batch/condor_51.sub | 13 + test/ntuple_qcd_200_300/batch/condor_52.sub | 13 + test/ntuple_qcd_200_300/batch/condor_53.sub | 13 + test/ntuple_qcd_200_300/batch/condor_54.sub | 13 + test/ntuple_qcd_200_300/batch/condor_55.sub | 13 + test/ntuple_qcd_200_300/batch/condor_56.sub | 13 + test/ntuple_qcd_200_300/batch/condor_57.sub | 13 + test/ntuple_qcd_200_300/batch/condor_58.sub | 13 + test/ntuple_qcd_200_300/batch/condor_59.sub | 13 + test/ntuple_qcd_200_300/batch/condor_6.sub | 13 + test/ntuple_qcd_200_300/batch/condor_60.sub | 13 + test/ntuple_qcd_200_300/batch/condor_61.sub | 13 + test/ntuple_qcd_200_300/batch/condor_62.sub | 13 + test/ntuple_qcd_200_300/batch/condor_63.sub | 13 + test/ntuple_qcd_200_300/batch/condor_64.sub | 13 + test/ntuple_qcd_200_300/batch/condor_65.sub | 13 + test/ntuple_qcd_200_300/batch/condor_66.sub | 13 + test/ntuple_qcd_200_300/batch/condor_67.sub | 13 + test/ntuple_qcd_200_300/batch/condor_68.sub | 13 + test/ntuple_qcd_200_300/batch/condor_69.sub | 13 + test/ntuple_qcd_200_300/batch/condor_7.sub | 13 + test/ntuple_qcd_200_300/batch/condor_70.sub | 13 + test/ntuple_qcd_200_300/batch/condor_71.sub | 13 + test/ntuple_qcd_200_300/batch/condor_72.sub | 13 + test/ntuple_qcd_200_300/batch/condor_73.sub | 13 + test/ntuple_qcd_200_300/batch/condor_74.sub | 13 + test/ntuple_qcd_200_300/batch/condor_75.sub | 13 + test/ntuple_qcd_200_300/batch/condor_76.sub | 13 + test/ntuple_qcd_200_300/batch/condor_77.sub | 13 + test/ntuple_qcd_200_300/batch/condor_78.sub | 13 + test/ntuple_qcd_200_300/batch/condor_79.sub | 13 + test/ntuple_qcd_200_300/batch/condor_8.sub | 13 + test/ntuple_qcd_200_300/batch/condor_80.sub | 13 + test/ntuple_qcd_200_300/batch/condor_81.sub | 13 + test/ntuple_qcd_200_300/batch/condor_82.sub | 13 + test/ntuple_qcd_200_300/batch/condor_83.sub | 13 + test/ntuple_qcd_200_300/batch/condor_84.sub | 13 + test/ntuple_qcd_200_300/batch/condor_85.sub | 13 + test/ntuple_qcd_200_300/batch/condor_86.sub | 13 + test/ntuple_qcd_200_300/batch/condor_87.sub | 13 + test/ntuple_qcd_200_300/batch/condor_88.sub | 13 + test/ntuple_qcd_200_300/batch/condor_89.sub | 13 + test/ntuple_qcd_200_300/batch/condor_9.sub | 13 + test/ntuple_qcd_200_300/batch/condor_90.sub | 13 + test/ntuple_qcd_200_300/batch/condor_91.sub | 13 + test/ntuple_qcd_200_300/batch/condor_92.sub | 13 + test/ntuple_qcd_200_300/batch/condor_93.sub | 13 + test/ntuple_qcd_200_300/batch/condor_94.sub | 13 + test/ntuple_qcd_200_300/batch/condor_95.sub | 13 + test/ntuple_qcd_200_300/batch/condor_96.sub | 13 + test/ntuple_qcd_200_300/batch/condor_97.sub | 13 + test/ntuple_qcd_200_300/batch/condor_98.sub | 13 + test/ntuple_qcd_200_300/batch/condor_99.sub | 13 + test/ntuple_qcd_200_300/batch/nJobs.500 | 0 test/ntuple_qcd_200_300/batch/sge_0.sh | 28 + test/ntuple_qcd_200_300/batch/sge_1.sh | 28 + test/ntuple_qcd_200_300/batch/sge_10.sh | 28 + test/ntuple_qcd_200_300/batch/sge_100.sh | 28 + test/ntuple_qcd_200_300/batch/sge_101.sh | 28 + test/ntuple_qcd_200_300/batch/sge_102.sh | 28 + test/ntuple_qcd_200_300/batch/sge_103.sh | 28 + test/ntuple_qcd_200_300/batch/sge_104.sh | 28 + test/ntuple_qcd_200_300/batch/sge_105.sh | 28 + test/ntuple_qcd_200_300/batch/sge_106.sh | 28 + test/ntuple_qcd_200_300/batch/sge_107.sh | 28 + test/ntuple_qcd_200_300/batch/sge_108.sh | 28 + test/ntuple_qcd_200_300/batch/sge_109.sh | 28 + test/ntuple_qcd_200_300/batch/sge_11.sh | 28 + test/ntuple_qcd_200_300/batch/sge_110.sh | 28 + test/ntuple_qcd_200_300/batch/sge_111.sh | 28 + test/ntuple_qcd_200_300/batch/sge_112.sh | 28 + test/ntuple_qcd_200_300/batch/sge_113.sh | 28 + test/ntuple_qcd_200_300/batch/sge_114.sh | 28 + test/ntuple_qcd_200_300/batch/sge_115.sh | 28 + test/ntuple_qcd_200_300/batch/sge_116.sh | 28 + test/ntuple_qcd_200_300/batch/sge_117.sh | 28 + test/ntuple_qcd_200_300/batch/sge_118.sh | 28 + test/ntuple_qcd_200_300/batch/sge_119.sh | 28 + test/ntuple_qcd_200_300/batch/sge_12.sh | 28 + test/ntuple_qcd_200_300/batch/sge_120.sh | 28 + test/ntuple_qcd_200_300/batch/sge_121.sh | 28 + test/ntuple_qcd_200_300/batch/sge_122.sh | 28 + test/ntuple_qcd_200_300/batch/sge_123.sh | 28 + test/ntuple_qcd_200_300/batch/sge_124.sh | 28 + test/ntuple_qcd_200_300/batch/sge_125.sh | 28 + test/ntuple_qcd_200_300/batch/sge_126.sh | 28 + test/ntuple_qcd_200_300/batch/sge_127.sh | 28 + test/ntuple_qcd_200_300/batch/sge_128.sh | 28 + test/ntuple_qcd_200_300/batch/sge_129.sh | 28 + test/ntuple_qcd_200_300/batch/sge_13.sh | 28 + test/ntuple_qcd_200_300/batch/sge_130.sh | 28 + test/ntuple_qcd_200_300/batch/sge_131.sh | 28 + test/ntuple_qcd_200_300/batch/sge_132.sh | 28 + test/ntuple_qcd_200_300/batch/sge_133.sh | 28 + test/ntuple_qcd_200_300/batch/sge_134.sh | 28 + test/ntuple_qcd_200_300/batch/sge_135.sh | 28 + test/ntuple_qcd_200_300/batch/sge_136.sh | 28 + test/ntuple_qcd_200_300/batch/sge_137.sh | 28 + test/ntuple_qcd_200_300/batch/sge_138.sh | 28 + test/ntuple_qcd_200_300/batch/sge_139.sh | 28 + test/ntuple_qcd_200_300/batch/sge_14.sh | 28 + test/ntuple_qcd_200_300/batch/sge_140.sh | 28 + test/ntuple_qcd_200_300/batch/sge_141.sh | 28 + test/ntuple_qcd_200_300/batch/sge_142.sh | 28 + test/ntuple_qcd_200_300/batch/sge_143.sh | 28 + test/ntuple_qcd_200_300/batch/sge_144.sh | 28 + test/ntuple_qcd_200_300/batch/sge_145.sh | 28 + test/ntuple_qcd_200_300/batch/sge_146.sh | 28 + test/ntuple_qcd_200_300/batch/sge_147.sh | 28 + test/ntuple_qcd_200_300/batch/sge_148.sh | 28 + test/ntuple_qcd_200_300/batch/sge_149.sh | 28 + test/ntuple_qcd_200_300/batch/sge_15.sh | 28 + test/ntuple_qcd_200_300/batch/sge_150.sh | 28 + test/ntuple_qcd_200_300/batch/sge_151.sh | 28 + test/ntuple_qcd_200_300/batch/sge_152.sh | 28 + test/ntuple_qcd_200_300/batch/sge_153.sh | 28 + test/ntuple_qcd_200_300/batch/sge_154.sh | 28 + test/ntuple_qcd_200_300/batch/sge_155.sh | 28 + test/ntuple_qcd_200_300/batch/sge_156.sh | 28 + test/ntuple_qcd_200_300/batch/sge_157.sh | 28 + test/ntuple_qcd_200_300/batch/sge_158.sh | 28 + test/ntuple_qcd_200_300/batch/sge_159.sh | 28 + test/ntuple_qcd_200_300/batch/sge_16.sh | 28 + test/ntuple_qcd_200_300/batch/sge_160.sh | 28 + test/ntuple_qcd_200_300/batch/sge_161.sh | 28 + test/ntuple_qcd_200_300/batch/sge_162.sh | 28 + test/ntuple_qcd_200_300/batch/sge_163.sh | 28 + test/ntuple_qcd_200_300/batch/sge_164.sh | 28 + test/ntuple_qcd_200_300/batch/sge_165.sh | 28 + test/ntuple_qcd_200_300/batch/sge_166.sh | 28 + test/ntuple_qcd_200_300/batch/sge_167.sh | 28 + test/ntuple_qcd_200_300/batch/sge_168.sh | 28 + test/ntuple_qcd_200_300/batch/sge_169.sh | 28 + test/ntuple_qcd_200_300/batch/sge_17.sh | 28 + test/ntuple_qcd_200_300/batch/sge_170.sh | 28 + test/ntuple_qcd_200_300/batch/sge_171.sh | 28 + test/ntuple_qcd_200_300/batch/sge_172.sh | 28 + test/ntuple_qcd_200_300/batch/sge_173.sh | 28 + test/ntuple_qcd_200_300/batch/sge_174.sh | 28 + test/ntuple_qcd_200_300/batch/sge_175.sh | 28 + test/ntuple_qcd_200_300/batch/sge_176.sh | 28 + test/ntuple_qcd_200_300/batch/sge_177.sh | 28 + test/ntuple_qcd_200_300/batch/sge_178.sh | 28 + test/ntuple_qcd_200_300/batch/sge_179.sh | 28 + test/ntuple_qcd_200_300/batch/sge_18.sh | 28 + test/ntuple_qcd_200_300/batch/sge_180.sh | 28 + test/ntuple_qcd_200_300/batch/sge_181.sh | 28 + test/ntuple_qcd_200_300/batch/sge_182.sh | 28 + test/ntuple_qcd_200_300/batch/sge_183.sh | 28 + test/ntuple_qcd_200_300/batch/sge_184.sh | 28 + test/ntuple_qcd_200_300/batch/sge_185.sh | 28 + test/ntuple_qcd_200_300/batch/sge_186.sh | 28 + test/ntuple_qcd_200_300/batch/sge_187.sh | 28 + test/ntuple_qcd_200_300/batch/sge_188.sh | 28 + test/ntuple_qcd_200_300/batch/sge_189.sh | 28 + test/ntuple_qcd_200_300/batch/sge_19.sh | 28 + test/ntuple_qcd_200_300/batch/sge_190.sh | 28 + test/ntuple_qcd_200_300/batch/sge_191.sh | 28 + test/ntuple_qcd_200_300/batch/sge_192.sh | 28 + test/ntuple_qcd_200_300/batch/sge_193.sh | 28 + test/ntuple_qcd_200_300/batch/sge_194.sh | 28 + test/ntuple_qcd_200_300/batch/sge_195.sh | 28 + test/ntuple_qcd_200_300/batch/sge_196.sh | 28 + test/ntuple_qcd_200_300/batch/sge_197.sh | 28 + test/ntuple_qcd_200_300/batch/sge_198.sh | 28 + test/ntuple_qcd_200_300/batch/sge_199.sh | 28 + test/ntuple_qcd_200_300/batch/sge_2.sh | 28 + test/ntuple_qcd_200_300/batch/sge_20.sh | 28 + test/ntuple_qcd_200_300/batch/sge_200.sh | 28 + test/ntuple_qcd_200_300/batch/sge_201.sh | 28 + test/ntuple_qcd_200_300/batch/sge_202.sh | 28 + test/ntuple_qcd_200_300/batch/sge_203.sh | 28 + test/ntuple_qcd_200_300/batch/sge_204.sh | 28 + test/ntuple_qcd_200_300/batch/sge_205.sh | 28 + test/ntuple_qcd_200_300/batch/sge_206.sh | 28 + test/ntuple_qcd_200_300/batch/sge_207.sh | 28 + test/ntuple_qcd_200_300/batch/sge_208.sh | 28 + test/ntuple_qcd_200_300/batch/sge_209.sh | 28 + test/ntuple_qcd_200_300/batch/sge_21.sh | 28 + test/ntuple_qcd_200_300/batch/sge_210.sh | 28 + test/ntuple_qcd_200_300/batch/sge_211.sh | 28 + test/ntuple_qcd_200_300/batch/sge_212.sh | 28 + test/ntuple_qcd_200_300/batch/sge_213.sh | 28 + test/ntuple_qcd_200_300/batch/sge_214.sh | 28 + test/ntuple_qcd_200_300/batch/sge_215.sh | 28 + test/ntuple_qcd_200_300/batch/sge_216.sh | 28 + test/ntuple_qcd_200_300/batch/sge_217.sh | 28 + test/ntuple_qcd_200_300/batch/sge_218.sh | 28 + test/ntuple_qcd_200_300/batch/sge_219.sh | 28 + test/ntuple_qcd_200_300/batch/sge_22.sh | 28 + test/ntuple_qcd_200_300/batch/sge_220.sh | 28 + test/ntuple_qcd_200_300/batch/sge_221.sh | 28 + test/ntuple_qcd_200_300/batch/sge_222.sh | 28 + test/ntuple_qcd_200_300/batch/sge_223.sh | 28 + test/ntuple_qcd_200_300/batch/sge_224.sh | 28 + test/ntuple_qcd_200_300/batch/sge_225.sh | 28 + test/ntuple_qcd_200_300/batch/sge_226.sh | 28 + test/ntuple_qcd_200_300/batch/sge_227.sh | 28 + test/ntuple_qcd_200_300/batch/sge_228.sh | 28 + test/ntuple_qcd_200_300/batch/sge_229.sh | 28 + test/ntuple_qcd_200_300/batch/sge_23.sh | 28 + test/ntuple_qcd_200_300/batch/sge_230.sh | 28 + test/ntuple_qcd_200_300/batch/sge_231.sh | 28 + test/ntuple_qcd_200_300/batch/sge_232.sh | 28 + test/ntuple_qcd_200_300/batch/sge_233.sh | 28 + test/ntuple_qcd_200_300/batch/sge_234.sh | 28 + test/ntuple_qcd_200_300/batch/sge_235.sh | 28 + test/ntuple_qcd_200_300/batch/sge_236.sh | 28 + test/ntuple_qcd_200_300/batch/sge_237.sh | 28 + test/ntuple_qcd_200_300/batch/sge_238.sh | 28 + test/ntuple_qcd_200_300/batch/sge_239.sh | 28 + test/ntuple_qcd_200_300/batch/sge_24.sh | 28 + test/ntuple_qcd_200_300/batch/sge_240.sh | 28 + test/ntuple_qcd_200_300/batch/sge_241.sh | 28 + test/ntuple_qcd_200_300/batch/sge_242.sh | 28 + test/ntuple_qcd_200_300/batch/sge_243.sh | 28 + test/ntuple_qcd_200_300/batch/sge_244.sh | 28 + test/ntuple_qcd_200_300/batch/sge_245.sh | 28 + test/ntuple_qcd_200_300/batch/sge_246.sh | 28 + test/ntuple_qcd_200_300/batch/sge_247.sh | 28 + test/ntuple_qcd_200_300/batch/sge_248.sh | 28 + test/ntuple_qcd_200_300/batch/sge_249.sh | 28 + test/ntuple_qcd_200_300/batch/sge_25.sh | 28 + test/ntuple_qcd_200_300/batch/sge_250.sh | 28 + test/ntuple_qcd_200_300/batch/sge_251.sh | 28 + test/ntuple_qcd_200_300/batch/sge_252.sh | 28 + test/ntuple_qcd_200_300/batch/sge_253.sh | 28 + test/ntuple_qcd_200_300/batch/sge_254.sh | 28 + test/ntuple_qcd_200_300/batch/sge_255.sh | 28 + test/ntuple_qcd_200_300/batch/sge_256.sh | 28 + test/ntuple_qcd_200_300/batch/sge_257.sh | 28 + test/ntuple_qcd_200_300/batch/sge_258.sh | 28 + test/ntuple_qcd_200_300/batch/sge_259.sh | 28 + test/ntuple_qcd_200_300/batch/sge_26.sh | 28 + test/ntuple_qcd_200_300/batch/sge_260.sh | 28 + test/ntuple_qcd_200_300/batch/sge_261.sh | 28 + test/ntuple_qcd_200_300/batch/sge_262.sh | 28 + test/ntuple_qcd_200_300/batch/sge_263.sh | 28 + test/ntuple_qcd_200_300/batch/sge_264.sh | 28 + test/ntuple_qcd_200_300/batch/sge_265.sh | 28 + test/ntuple_qcd_200_300/batch/sge_266.sh | 28 + test/ntuple_qcd_200_300/batch/sge_267.sh | 28 + test/ntuple_qcd_200_300/batch/sge_268.sh | 28 + test/ntuple_qcd_200_300/batch/sge_269.sh | 28 + test/ntuple_qcd_200_300/batch/sge_27.sh | 28 + test/ntuple_qcd_200_300/batch/sge_270.sh | 28 + test/ntuple_qcd_200_300/batch/sge_271.sh | 28 + test/ntuple_qcd_200_300/batch/sge_272.sh | 28 + test/ntuple_qcd_200_300/batch/sge_273.sh | 28 + test/ntuple_qcd_200_300/batch/sge_274.sh | 28 + test/ntuple_qcd_200_300/batch/sge_275.sh | 28 + test/ntuple_qcd_200_300/batch/sge_276.sh | 28 + test/ntuple_qcd_200_300/batch/sge_277.sh | 28 + test/ntuple_qcd_200_300/batch/sge_278.sh | 28 + test/ntuple_qcd_200_300/batch/sge_279.sh | 28 + test/ntuple_qcd_200_300/batch/sge_28.sh | 28 + test/ntuple_qcd_200_300/batch/sge_280.sh | 28 + test/ntuple_qcd_200_300/batch/sge_281.sh | 28 + test/ntuple_qcd_200_300/batch/sge_282.sh | 28 + test/ntuple_qcd_200_300/batch/sge_283.sh | 28 + test/ntuple_qcd_200_300/batch/sge_284.sh | 28 + test/ntuple_qcd_200_300/batch/sge_285.sh | 28 + test/ntuple_qcd_200_300/batch/sge_286.sh | 28 + test/ntuple_qcd_200_300/batch/sge_287.sh | 28 + test/ntuple_qcd_200_300/batch/sge_288.sh | 28 + test/ntuple_qcd_200_300/batch/sge_289.sh | 28 + test/ntuple_qcd_200_300/batch/sge_29.sh | 28 + test/ntuple_qcd_200_300/batch/sge_290.sh | 28 + test/ntuple_qcd_200_300/batch/sge_291.sh | 28 + test/ntuple_qcd_200_300/batch/sge_292.sh | 28 + test/ntuple_qcd_200_300/batch/sge_293.sh | 28 + test/ntuple_qcd_200_300/batch/sge_294.sh | 28 + test/ntuple_qcd_200_300/batch/sge_295.sh | 28 + test/ntuple_qcd_200_300/batch/sge_296.sh | 28 + test/ntuple_qcd_200_300/batch/sge_297.sh | 28 + test/ntuple_qcd_200_300/batch/sge_298.sh | 28 + test/ntuple_qcd_200_300/batch/sge_299.sh | 28 + test/ntuple_qcd_200_300/batch/sge_3.sh | 28 + test/ntuple_qcd_200_300/batch/sge_30.sh | 28 + test/ntuple_qcd_200_300/batch/sge_300.sh | 28 + test/ntuple_qcd_200_300/batch/sge_301.sh | 28 + test/ntuple_qcd_200_300/batch/sge_302.sh | 28 + test/ntuple_qcd_200_300/batch/sge_303.sh | 28 + test/ntuple_qcd_200_300/batch/sge_304.sh | 28 + test/ntuple_qcd_200_300/batch/sge_305.sh | 28 + test/ntuple_qcd_200_300/batch/sge_306.sh | 28 + test/ntuple_qcd_200_300/batch/sge_307.sh | 28 + test/ntuple_qcd_200_300/batch/sge_308.sh | 28 + test/ntuple_qcd_200_300/batch/sge_309.sh | 28 + test/ntuple_qcd_200_300/batch/sge_31.sh | 28 + test/ntuple_qcd_200_300/batch/sge_310.sh | 28 + test/ntuple_qcd_200_300/batch/sge_311.sh | 28 + test/ntuple_qcd_200_300/batch/sge_312.sh | 28 + test/ntuple_qcd_200_300/batch/sge_313.sh | 28 + test/ntuple_qcd_200_300/batch/sge_314.sh | 28 + test/ntuple_qcd_200_300/batch/sge_315.sh | 28 + test/ntuple_qcd_200_300/batch/sge_316.sh | 28 + test/ntuple_qcd_200_300/batch/sge_317.sh | 28 + test/ntuple_qcd_200_300/batch/sge_318.sh | 28 + test/ntuple_qcd_200_300/batch/sge_319.sh | 28 + test/ntuple_qcd_200_300/batch/sge_32.sh | 28 + test/ntuple_qcd_200_300/batch/sge_320.sh | 28 + test/ntuple_qcd_200_300/batch/sge_321.sh | 28 + test/ntuple_qcd_200_300/batch/sge_322.sh | 28 + test/ntuple_qcd_200_300/batch/sge_323.sh | 28 + test/ntuple_qcd_200_300/batch/sge_324.sh | 28 + test/ntuple_qcd_200_300/batch/sge_325.sh | 28 + test/ntuple_qcd_200_300/batch/sge_326.sh | 28 + test/ntuple_qcd_200_300/batch/sge_327.sh | 28 + test/ntuple_qcd_200_300/batch/sge_328.sh | 28 + test/ntuple_qcd_200_300/batch/sge_329.sh | 28 + test/ntuple_qcd_200_300/batch/sge_33.sh | 28 + test/ntuple_qcd_200_300/batch/sge_330.sh | 28 + test/ntuple_qcd_200_300/batch/sge_331.sh | 28 + test/ntuple_qcd_200_300/batch/sge_332.sh | 28 + test/ntuple_qcd_200_300/batch/sge_333.sh | 28 + test/ntuple_qcd_200_300/batch/sge_334.sh | 28 + test/ntuple_qcd_200_300/batch/sge_335.sh | 28 + test/ntuple_qcd_200_300/batch/sge_336.sh | 28 + test/ntuple_qcd_200_300/batch/sge_337.sh | 28 + test/ntuple_qcd_200_300/batch/sge_338.sh | 28 + test/ntuple_qcd_200_300/batch/sge_339.sh | 28 + test/ntuple_qcd_200_300/batch/sge_34.sh | 28 + test/ntuple_qcd_200_300/batch/sge_340.sh | 28 + test/ntuple_qcd_200_300/batch/sge_341.sh | 28 + test/ntuple_qcd_200_300/batch/sge_342.sh | 28 + test/ntuple_qcd_200_300/batch/sge_343.sh | 28 + test/ntuple_qcd_200_300/batch/sge_344.sh | 28 + test/ntuple_qcd_200_300/batch/sge_345.sh | 28 + test/ntuple_qcd_200_300/batch/sge_346.sh | 28 + test/ntuple_qcd_200_300/batch/sge_347.sh | 28 + test/ntuple_qcd_200_300/batch/sge_348.sh | 28 + test/ntuple_qcd_200_300/batch/sge_349.sh | 28 + test/ntuple_qcd_200_300/batch/sge_35.sh | 28 + test/ntuple_qcd_200_300/batch/sge_350.sh | 28 + test/ntuple_qcd_200_300/batch/sge_351.sh | 28 + test/ntuple_qcd_200_300/batch/sge_352.sh | 28 + test/ntuple_qcd_200_300/batch/sge_353.sh | 28 + test/ntuple_qcd_200_300/batch/sge_354.sh | 28 + test/ntuple_qcd_200_300/batch/sge_355.sh | 28 + test/ntuple_qcd_200_300/batch/sge_356.sh | 28 + test/ntuple_qcd_200_300/batch/sge_357.sh | 28 + test/ntuple_qcd_200_300/batch/sge_358.sh | 28 + test/ntuple_qcd_200_300/batch/sge_359.sh | 28 + test/ntuple_qcd_200_300/batch/sge_36.sh | 28 + test/ntuple_qcd_200_300/batch/sge_360.sh | 28 + test/ntuple_qcd_200_300/batch/sge_361.sh | 28 + test/ntuple_qcd_200_300/batch/sge_362.sh | 28 + test/ntuple_qcd_200_300/batch/sge_363.sh | 28 + test/ntuple_qcd_200_300/batch/sge_364.sh | 28 + test/ntuple_qcd_200_300/batch/sge_365.sh | 28 + test/ntuple_qcd_200_300/batch/sge_366.sh | 28 + test/ntuple_qcd_200_300/batch/sge_367.sh | 28 + test/ntuple_qcd_200_300/batch/sge_368.sh | 28 + test/ntuple_qcd_200_300/batch/sge_369.sh | 28 + test/ntuple_qcd_200_300/batch/sge_37.sh | 28 + test/ntuple_qcd_200_300/batch/sge_370.sh | 28 + test/ntuple_qcd_200_300/batch/sge_371.sh | 28 + test/ntuple_qcd_200_300/batch/sge_372.sh | 28 + test/ntuple_qcd_200_300/batch/sge_373.sh | 28 + test/ntuple_qcd_200_300/batch/sge_374.sh | 28 + test/ntuple_qcd_200_300/batch/sge_375.sh | 28 + test/ntuple_qcd_200_300/batch/sge_376.sh | 28 + test/ntuple_qcd_200_300/batch/sge_377.sh | 28 + test/ntuple_qcd_200_300/batch/sge_378.sh | 28 + test/ntuple_qcd_200_300/batch/sge_379.sh | 28 + test/ntuple_qcd_200_300/batch/sge_38.sh | 28 + test/ntuple_qcd_200_300/batch/sge_380.sh | 28 + test/ntuple_qcd_200_300/batch/sge_381.sh | 28 + test/ntuple_qcd_200_300/batch/sge_382.sh | 28 + test/ntuple_qcd_200_300/batch/sge_383.sh | 28 + test/ntuple_qcd_200_300/batch/sge_384.sh | 28 + test/ntuple_qcd_200_300/batch/sge_385.sh | 28 + test/ntuple_qcd_200_300/batch/sge_386.sh | 28 + test/ntuple_qcd_200_300/batch/sge_387.sh | 28 + test/ntuple_qcd_200_300/batch/sge_388.sh | 28 + test/ntuple_qcd_200_300/batch/sge_389.sh | 28 + test/ntuple_qcd_200_300/batch/sge_39.sh | 28 + test/ntuple_qcd_200_300/batch/sge_390.sh | 28 + test/ntuple_qcd_200_300/batch/sge_391.sh | 28 + test/ntuple_qcd_200_300/batch/sge_392.sh | 28 + test/ntuple_qcd_200_300/batch/sge_393.sh | 28 + test/ntuple_qcd_200_300/batch/sge_394.sh | 28 + test/ntuple_qcd_200_300/batch/sge_395.sh | 28 + test/ntuple_qcd_200_300/batch/sge_396.sh | 28 + test/ntuple_qcd_200_300/batch/sge_397.sh | 28 + test/ntuple_qcd_200_300/batch/sge_398.sh | 28 + test/ntuple_qcd_200_300/batch/sge_399.sh | 28 + test/ntuple_qcd_200_300/batch/sge_4.sh | 28 + test/ntuple_qcd_200_300/batch/sge_40.sh | 28 + test/ntuple_qcd_200_300/batch/sge_400.sh | 28 + test/ntuple_qcd_200_300/batch/sge_401.sh | 28 + test/ntuple_qcd_200_300/batch/sge_402.sh | 28 + test/ntuple_qcd_200_300/batch/sge_403.sh | 28 + test/ntuple_qcd_200_300/batch/sge_404.sh | 28 + test/ntuple_qcd_200_300/batch/sge_405.sh | 28 + test/ntuple_qcd_200_300/batch/sge_406.sh | 28 + test/ntuple_qcd_200_300/batch/sge_407.sh | 28 + test/ntuple_qcd_200_300/batch/sge_408.sh | 28 + test/ntuple_qcd_200_300/batch/sge_409.sh | 28 + test/ntuple_qcd_200_300/batch/sge_41.sh | 28 + test/ntuple_qcd_200_300/batch/sge_410.sh | 28 + test/ntuple_qcd_200_300/batch/sge_411.sh | 28 + test/ntuple_qcd_200_300/batch/sge_412.sh | 28 + test/ntuple_qcd_200_300/batch/sge_413.sh | 28 + test/ntuple_qcd_200_300/batch/sge_414.sh | 28 + test/ntuple_qcd_200_300/batch/sge_415.sh | 28 + test/ntuple_qcd_200_300/batch/sge_416.sh | 28 + test/ntuple_qcd_200_300/batch/sge_417.sh | 28 + test/ntuple_qcd_200_300/batch/sge_418.sh | 28 + test/ntuple_qcd_200_300/batch/sge_419.sh | 28 + test/ntuple_qcd_200_300/batch/sge_42.sh | 28 + test/ntuple_qcd_200_300/batch/sge_420.sh | 28 + test/ntuple_qcd_200_300/batch/sge_421.sh | 28 + test/ntuple_qcd_200_300/batch/sge_422.sh | 28 + test/ntuple_qcd_200_300/batch/sge_423.sh | 28 + test/ntuple_qcd_200_300/batch/sge_424.sh | 28 + test/ntuple_qcd_200_300/batch/sge_425.sh | 28 + test/ntuple_qcd_200_300/batch/sge_426.sh | 28 + test/ntuple_qcd_200_300/batch/sge_427.sh | 28 + test/ntuple_qcd_200_300/batch/sge_428.sh | 28 + test/ntuple_qcd_200_300/batch/sge_429.sh | 28 + test/ntuple_qcd_200_300/batch/sge_43.sh | 28 + test/ntuple_qcd_200_300/batch/sge_430.sh | 28 + test/ntuple_qcd_200_300/batch/sge_431.sh | 28 + test/ntuple_qcd_200_300/batch/sge_432.sh | 28 + test/ntuple_qcd_200_300/batch/sge_433.sh | 28 + test/ntuple_qcd_200_300/batch/sge_434.sh | 28 + test/ntuple_qcd_200_300/batch/sge_435.sh | 28 + test/ntuple_qcd_200_300/batch/sge_436.sh | 28 + test/ntuple_qcd_200_300/batch/sge_437.sh | 28 + test/ntuple_qcd_200_300/batch/sge_438.sh | 28 + test/ntuple_qcd_200_300/batch/sge_439.sh | 28 + test/ntuple_qcd_200_300/batch/sge_44.sh | 28 + test/ntuple_qcd_200_300/batch/sge_440.sh | 28 + test/ntuple_qcd_200_300/batch/sge_441.sh | 28 + test/ntuple_qcd_200_300/batch/sge_442.sh | 28 + test/ntuple_qcd_200_300/batch/sge_443.sh | 28 + test/ntuple_qcd_200_300/batch/sge_444.sh | 28 + test/ntuple_qcd_200_300/batch/sge_445.sh | 28 + test/ntuple_qcd_200_300/batch/sge_446.sh | 28 + test/ntuple_qcd_200_300/batch/sge_447.sh | 28 + test/ntuple_qcd_200_300/batch/sge_448.sh | 28 + test/ntuple_qcd_200_300/batch/sge_449.sh | 28 + test/ntuple_qcd_200_300/batch/sge_45.sh | 28 + test/ntuple_qcd_200_300/batch/sge_450.sh | 28 + test/ntuple_qcd_200_300/batch/sge_451.sh | 28 + test/ntuple_qcd_200_300/batch/sge_452.sh | 28 + test/ntuple_qcd_200_300/batch/sge_453.sh | 28 + test/ntuple_qcd_200_300/batch/sge_454.sh | 28 + test/ntuple_qcd_200_300/batch/sge_455.sh | 28 + test/ntuple_qcd_200_300/batch/sge_456.sh | 28 + test/ntuple_qcd_200_300/batch/sge_457.sh | 28 + test/ntuple_qcd_200_300/batch/sge_458.sh | 28 + test/ntuple_qcd_200_300/batch/sge_459.sh | 28 + test/ntuple_qcd_200_300/batch/sge_46.sh | 28 + test/ntuple_qcd_200_300/batch/sge_460.sh | 28 + test/ntuple_qcd_200_300/batch/sge_461.sh | 28 + test/ntuple_qcd_200_300/batch/sge_462.sh | 28 + test/ntuple_qcd_200_300/batch/sge_463.sh | 28 + test/ntuple_qcd_200_300/batch/sge_464.sh | 28 + test/ntuple_qcd_200_300/batch/sge_465.sh | 28 + test/ntuple_qcd_200_300/batch/sge_466.sh | 28 + test/ntuple_qcd_200_300/batch/sge_467.sh | 28 + test/ntuple_qcd_200_300/batch/sge_468.sh | 28 + test/ntuple_qcd_200_300/batch/sge_469.sh | 28 + test/ntuple_qcd_200_300/batch/sge_47.sh | 28 + test/ntuple_qcd_200_300/batch/sge_470.sh | 28 + test/ntuple_qcd_200_300/batch/sge_471.sh | 28 + test/ntuple_qcd_200_300/batch/sge_472.sh | 28 + test/ntuple_qcd_200_300/batch/sge_473.sh | 28 + test/ntuple_qcd_200_300/batch/sge_474.sh | 28 + test/ntuple_qcd_200_300/batch/sge_475.sh | 28 + test/ntuple_qcd_200_300/batch/sge_476.sh | 28 + test/ntuple_qcd_200_300/batch/sge_477.sh | 28 + test/ntuple_qcd_200_300/batch/sge_478.sh | 28 + test/ntuple_qcd_200_300/batch/sge_479.sh | 28 + test/ntuple_qcd_200_300/batch/sge_48.sh | 28 + test/ntuple_qcd_200_300/batch/sge_480.sh | 28 + test/ntuple_qcd_200_300/batch/sge_481.sh | 28 + test/ntuple_qcd_200_300/batch/sge_482.sh | 28 + test/ntuple_qcd_200_300/batch/sge_483.sh | 28 + test/ntuple_qcd_200_300/batch/sge_484.sh | 28 + test/ntuple_qcd_200_300/batch/sge_485.sh | 28 + test/ntuple_qcd_200_300/batch/sge_486.sh | 28 + test/ntuple_qcd_200_300/batch/sge_487.sh | 28 + test/ntuple_qcd_200_300/batch/sge_488.sh | 28 + test/ntuple_qcd_200_300/batch/sge_489.sh | 28 + test/ntuple_qcd_200_300/batch/sge_49.sh | 28 + test/ntuple_qcd_200_300/batch/sge_490.sh | 28 + test/ntuple_qcd_200_300/batch/sge_491.sh | 28 + test/ntuple_qcd_200_300/batch/sge_492.sh | 28 + test/ntuple_qcd_200_300/batch/sge_493.sh | 28 + test/ntuple_qcd_200_300/batch/sge_494.sh | 28 + test/ntuple_qcd_200_300/batch/sge_495.sh | 28 + test/ntuple_qcd_200_300/batch/sge_496.sh | 28 + test/ntuple_qcd_200_300/batch/sge_497.sh | 28 + test/ntuple_qcd_200_300/batch/sge_498.sh | 28 + test/ntuple_qcd_200_300/batch/sge_499.sh | 28 + test/ntuple_qcd_200_300/batch/sge_5.sh | 28 + test/ntuple_qcd_200_300/batch/sge_50.sh | 28 + test/ntuple_qcd_200_300/batch/sge_51.sh | 28 + test/ntuple_qcd_200_300/batch/sge_52.sh | 28 + test/ntuple_qcd_200_300/batch/sge_53.sh | 28 + test/ntuple_qcd_200_300/batch/sge_54.sh | 28 + test/ntuple_qcd_200_300/batch/sge_55.sh | 28 + test/ntuple_qcd_200_300/batch/sge_56.sh | 28 + test/ntuple_qcd_200_300/batch/sge_57.sh | 28 + test/ntuple_qcd_200_300/batch/sge_58.sh | 28 + test/ntuple_qcd_200_300/batch/sge_59.sh | 28 + test/ntuple_qcd_200_300/batch/sge_6.sh | 28 + test/ntuple_qcd_200_300/batch/sge_60.sh | 28 + test/ntuple_qcd_200_300/batch/sge_61.sh | 28 + test/ntuple_qcd_200_300/batch/sge_62.sh | 28 + test/ntuple_qcd_200_300/batch/sge_63.sh | 28 + test/ntuple_qcd_200_300/batch/sge_64.sh | 28 + test/ntuple_qcd_200_300/batch/sge_65.sh | 28 + test/ntuple_qcd_200_300/batch/sge_66.sh | 28 + test/ntuple_qcd_200_300/batch/sge_67.sh | 28 + test/ntuple_qcd_200_300/batch/sge_68.sh | 28 + test/ntuple_qcd_200_300/batch/sge_69.sh | 28 + test/ntuple_qcd_200_300/batch/sge_7.sh | 28 + test/ntuple_qcd_200_300/batch/sge_70.sh | 28 + test/ntuple_qcd_200_300/batch/sge_71.sh | 28 + test/ntuple_qcd_200_300/batch/sge_72.sh | 28 + test/ntuple_qcd_200_300/batch/sge_73.sh | 28 + test/ntuple_qcd_200_300/batch/sge_74.sh | 28 + test/ntuple_qcd_200_300/batch/sge_75.sh | 28 + test/ntuple_qcd_200_300/batch/sge_76.sh | 28 + test/ntuple_qcd_200_300/batch/sge_77.sh | 28 + test/ntuple_qcd_200_300/batch/sge_78.sh | 28 + test/ntuple_qcd_200_300/batch/sge_79.sh | 28 + test/ntuple_qcd_200_300/batch/sge_8.sh | 28 + test/ntuple_qcd_200_300/batch/sge_80.sh | 28 + test/ntuple_qcd_200_300/batch/sge_81.sh | 28 + test/ntuple_qcd_200_300/batch/sge_82.sh | 28 + test/ntuple_qcd_200_300/batch/sge_83.sh | 28 + test/ntuple_qcd_200_300/batch/sge_84.sh | 28 + test/ntuple_qcd_200_300/batch/sge_85.sh | 28 + test/ntuple_qcd_200_300/batch/sge_86.sh | 28 + test/ntuple_qcd_200_300/batch/sge_87.sh | 28 + test/ntuple_qcd_200_300/batch/sge_88.sh | 28 + test/ntuple_qcd_200_300/batch/sge_89.sh | 28 + test/ntuple_qcd_200_300/batch/sge_9.sh | 28 + test/ntuple_qcd_200_300/batch/sge_90.sh | 28 + test/ntuple_qcd_200_300/batch/sge_91.sh | 28 + test/ntuple_qcd_200_300/batch/sge_92.sh | 28 + test/ntuple_qcd_200_300/batch/sge_93.sh | 28 + test/ntuple_qcd_200_300/batch/sge_94.sh | 28 + test/ntuple_qcd_200_300/batch/sge_95.sh | 28 + test/ntuple_qcd_200_300/batch/sge_96.sh | 28 + test/ntuple_qcd_200_300/batch/sge_97.sh | 28 + test/ntuple_qcd_200_300/batch/sge_98.sh | 28 + test/ntuple_qcd_200_300/batch/sge_99.sh | 28 + test/ntuple_qcd_200_300/batchscript.sh | 51 ++ test/ntuple_qcd_200_300/condor.sub | 13 + test/ntuple_qcd_200_300/helper | 1 + test/ntuple_qcd_200_300/output | 1 + test/ntuple_qcd_200_300/sge_sub.sh | 500 ++++++++++++++ test/ntuple_qcd_300_500/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_300_500/batch/condor_0.sub | 13 + test/ntuple_qcd_300_500/batch/condor_1.sub | 13 + test/ntuple_qcd_300_500/batch/condor_10.sub | 13 + test/ntuple_qcd_300_500/batch/condor_100.sub | 13 + test/ntuple_qcd_300_500/batch/condor_101.sub | 13 + test/ntuple_qcd_300_500/batch/condor_102.sub | 13 + test/ntuple_qcd_300_500/batch/condor_103.sub | 13 + test/ntuple_qcd_300_500/batch/condor_104.sub | 13 + test/ntuple_qcd_300_500/batch/condor_105.sub | 13 + test/ntuple_qcd_300_500/batch/condor_106.sub | 13 + test/ntuple_qcd_300_500/batch/condor_107.sub | 13 + test/ntuple_qcd_300_500/batch/condor_108.sub | 13 + test/ntuple_qcd_300_500/batch/condor_109.sub | 13 + test/ntuple_qcd_300_500/batch/condor_11.sub | 13 + test/ntuple_qcd_300_500/batch/condor_110.sub | 13 + test/ntuple_qcd_300_500/batch/condor_111.sub | 13 + test/ntuple_qcd_300_500/batch/condor_112.sub | 13 + test/ntuple_qcd_300_500/batch/condor_113.sub | 13 + test/ntuple_qcd_300_500/batch/condor_114.sub | 13 + test/ntuple_qcd_300_500/batch/condor_115.sub | 13 + test/ntuple_qcd_300_500/batch/condor_116.sub | 13 + test/ntuple_qcd_300_500/batch/condor_117.sub | 13 + test/ntuple_qcd_300_500/batch/condor_118.sub | 13 + test/ntuple_qcd_300_500/batch/condor_119.sub | 13 + test/ntuple_qcd_300_500/batch/condor_12.sub | 13 + test/ntuple_qcd_300_500/batch/condor_120.sub | 13 + test/ntuple_qcd_300_500/batch/condor_121.sub | 13 + test/ntuple_qcd_300_500/batch/condor_122.sub | 13 + test/ntuple_qcd_300_500/batch/condor_123.sub | 13 + test/ntuple_qcd_300_500/batch/condor_124.sub | 13 + test/ntuple_qcd_300_500/batch/condor_125.sub | 13 + test/ntuple_qcd_300_500/batch/condor_126.sub | 13 + test/ntuple_qcd_300_500/batch/condor_127.sub | 13 + test/ntuple_qcd_300_500/batch/condor_128.sub | 13 + test/ntuple_qcd_300_500/batch/condor_129.sub | 13 + test/ntuple_qcd_300_500/batch/condor_13.sub | 13 + test/ntuple_qcd_300_500/batch/condor_130.sub | 13 + test/ntuple_qcd_300_500/batch/condor_131.sub | 13 + test/ntuple_qcd_300_500/batch/condor_132.sub | 13 + test/ntuple_qcd_300_500/batch/condor_133.sub | 13 + test/ntuple_qcd_300_500/batch/condor_134.sub | 13 + test/ntuple_qcd_300_500/batch/condor_135.sub | 13 + test/ntuple_qcd_300_500/batch/condor_136.sub | 13 + test/ntuple_qcd_300_500/batch/condor_137.sub | 13 + test/ntuple_qcd_300_500/batch/condor_138.sub | 13 + test/ntuple_qcd_300_500/batch/condor_139.sub | 13 + test/ntuple_qcd_300_500/batch/condor_14.sub | 13 + test/ntuple_qcd_300_500/batch/condor_140.sub | 13 + test/ntuple_qcd_300_500/batch/condor_141.sub | 13 + test/ntuple_qcd_300_500/batch/condor_142.sub | 13 + test/ntuple_qcd_300_500/batch/condor_143.sub | 13 + test/ntuple_qcd_300_500/batch/condor_144.sub | 13 + test/ntuple_qcd_300_500/batch/condor_145.sub | 13 + test/ntuple_qcd_300_500/batch/condor_146.sub | 13 + test/ntuple_qcd_300_500/batch/condor_147.sub | 13 + test/ntuple_qcd_300_500/batch/condor_148.sub | 13 + test/ntuple_qcd_300_500/batch/condor_149.sub | 13 + test/ntuple_qcd_300_500/batch/condor_15.sub | 13 + test/ntuple_qcd_300_500/batch/condor_150.sub | 13 + test/ntuple_qcd_300_500/batch/condor_151.sub | 13 + test/ntuple_qcd_300_500/batch/condor_152.sub | 13 + test/ntuple_qcd_300_500/batch/condor_153.sub | 13 + test/ntuple_qcd_300_500/batch/condor_154.sub | 13 + test/ntuple_qcd_300_500/batch/condor_155.sub | 13 + test/ntuple_qcd_300_500/batch/condor_156.sub | 13 + test/ntuple_qcd_300_500/batch/condor_157.sub | 13 + test/ntuple_qcd_300_500/batch/condor_158.sub | 13 + test/ntuple_qcd_300_500/batch/condor_159.sub | 13 + test/ntuple_qcd_300_500/batch/condor_16.sub | 13 + test/ntuple_qcd_300_500/batch/condor_160.sub | 13 + test/ntuple_qcd_300_500/batch/condor_161.sub | 13 + test/ntuple_qcd_300_500/batch/condor_162.sub | 13 + test/ntuple_qcd_300_500/batch/condor_163.sub | 13 + test/ntuple_qcd_300_500/batch/condor_164.sub | 13 + test/ntuple_qcd_300_500/batch/condor_165.sub | 13 + test/ntuple_qcd_300_500/batch/condor_166.sub | 13 + test/ntuple_qcd_300_500/batch/condor_167.sub | 13 + test/ntuple_qcd_300_500/batch/condor_168.sub | 13 + test/ntuple_qcd_300_500/batch/condor_169.sub | 13 + test/ntuple_qcd_300_500/batch/condor_17.sub | 13 + test/ntuple_qcd_300_500/batch/condor_170.sub | 13 + test/ntuple_qcd_300_500/batch/condor_171.sub | 13 + test/ntuple_qcd_300_500/batch/condor_172.sub | 13 + test/ntuple_qcd_300_500/batch/condor_173.sub | 13 + test/ntuple_qcd_300_500/batch/condor_174.sub | 13 + test/ntuple_qcd_300_500/batch/condor_175.sub | 13 + test/ntuple_qcd_300_500/batch/condor_176.sub | 13 + test/ntuple_qcd_300_500/batch/condor_177.sub | 13 + test/ntuple_qcd_300_500/batch/condor_178.sub | 13 + test/ntuple_qcd_300_500/batch/condor_179.sub | 13 + test/ntuple_qcd_300_500/batch/condor_18.sub | 13 + test/ntuple_qcd_300_500/batch/condor_180.sub | 13 + test/ntuple_qcd_300_500/batch/condor_181.sub | 13 + test/ntuple_qcd_300_500/batch/condor_182.sub | 13 + test/ntuple_qcd_300_500/batch/condor_183.sub | 13 + test/ntuple_qcd_300_500/batch/condor_184.sub | 13 + test/ntuple_qcd_300_500/batch/condor_185.sub | 13 + test/ntuple_qcd_300_500/batch/condor_186.sub | 13 + test/ntuple_qcd_300_500/batch/condor_187.sub | 13 + test/ntuple_qcd_300_500/batch/condor_188.sub | 13 + test/ntuple_qcd_300_500/batch/condor_189.sub | 13 + test/ntuple_qcd_300_500/batch/condor_19.sub | 13 + test/ntuple_qcd_300_500/batch/condor_190.sub | 13 + test/ntuple_qcd_300_500/batch/condor_191.sub | 13 + test/ntuple_qcd_300_500/batch/condor_192.sub | 13 + test/ntuple_qcd_300_500/batch/condor_193.sub | 13 + test/ntuple_qcd_300_500/batch/condor_194.sub | 13 + test/ntuple_qcd_300_500/batch/condor_195.sub | 13 + test/ntuple_qcd_300_500/batch/condor_196.sub | 13 + test/ntuple_qcd_300_500/batch/condor_197.sub | 13 + test/ntuple_qcd_300_500/batch/condor_198.sub | 13 + test/ntuple_qcd_300_500/batch/condor_199.sub | 13 + test/ntuple_qcd_300_500/batch/condor_2.sub | 13 + test/ntuple_qcd_300_500/batch/condor_20.sub | 13 + test/ntuple_qcd_300_500/batch/condor_200.sub | 13 + test/ntuple_qcd_300_500/batch/condor_201.sub | 13 + test/ntuple_qcd_300_500/batch/condor_202.sub | 13 + test/ntuple_qcd_300_500/batch/condor_203.sub | 13 + test/ntuple_qcd_300_500/batch/condor_204.sub | 13 + test/ntuple_qcd_300_500/batch/condor_205.sub | 13 + test/ntuple_qcd_300_500/batch/condor_206.sub | 13 + test/ntuple_qcd_300_500/batch/condor_207.sub | 13 + test/ntuple_qcd_300_500/batch/condor_208.sub | 13 + test/ntuple_qcd_300_500/batch/condor_209.sub | 13 + test/ntuple_qcd_300_500/batch/condor_21.sub | 13 + test/ntuple_qcd_300_500/batch/condor_210.sub | 13 + test/ntuple_qcd_300_500/batch/condor_211.sub | 13 + test/ntuple_qcd_300_500/batch/condor_212.sub | 13 + test/ntuple_qcd_300_500/batch/condor_213.sub | 13 + test/ntuple_qcd_300_500/batch/condor_214.sub | 13 + test/ntuple_qcd_300_500/batch/condor_215.sub | 13 + test/ntuple_qcd_300_500/batch/condor_216.sub | 13 + test/ntuple_qcd_300_500/batch/condor_217.sub | 13 + test/ntuple_qcd_300_500/batch/condor_218.sub | 13 + test/ntuple_qcd_300_500/batch/condor_219.sub | 13 + test/ntuple_qcd_300_500/batch/condor_22.sub | 13 + test/ntuple_qcd_300_500/batch/condor_220.sub | 13 + test/ntuple_qcd_300_500/batch/condor_221.sub | 13 + test/ntuple_qcd_300_500/batch/condor_222.sub | 13 + test/ntuple_qcd_300_500/batch/condor_223.sub | 13 + test/ntuple_qcd_300_500/batch/condor_224.sub | 13 + test/ntuple_qcd_300_500/batch/condor_225.sub | 13 + test/ntuple_qcd_300_500/batch/condor_226.sub | 13 + test/ntuple_qcd_300_500/batch/condor_227.sub | 13 + test/ntuple_qcd_300_500/batch/condor_228.sub | 13 + test/ntuple_qcd_300_500/batch/condor_229.sub | 13 + test/ntuple_qcd_300_500/batch/condor_23.sub | 13 + test/ntuple_qcd_300_500/batch/condor_230.sub | 13 + test/ntuple_qcd_300_500/batch/condor_231.sub | 13 + test/ntuple_qcd_300_500/batch/condor_232.sub | 13 + test/ntuple_qcd_300_500/batch/condor_233.sub | 13 + test/ntuple_qcd_300_500/batch/condor_234.sub | 13 + test/ntuple_qcd_300_500/batch/condor_235.sub | 13 + test/ntuple_qcd_300_500/batch/condor_236.sub | 13 + test/ntuple_qcd_300_500/batch/condor_237.sub | 13 + test/ntuple_qcd_300_500/batch/condor_238.sub | 13 + test/ntuple_qcd_300_500/batch/condor_239.sub | 13 + test/ntuple_qcd_300_500/batch/condor_24.sub | 13 + test/ntuple_qcd_300_500/batch/condor_240.sub | 13 + test/ntuple_qcd_300_500/batch/condor_241.sub | 13 + test/ntuple_qcd_300_500/batch/condor_242.sub | 13 + test/ntuple_qcd_300_500/batch/condor_243.sub | 13 + test/ntuple_qcd_300_500/batch/condor_244.sub | 13 + test/ntuple_qcd_300_500/batch/condor_245.sub | 13 + test/ntuple_qcd_300_500/batch/condor_246.sub | 13 + test/ntuple_qcd_300_500/batch/condor_247.sub | 13 + test/ntuple_qcd_300_500/batch/condor_248.sub | 13 + test/ntuple_qcd_300_500/batch/condor_249.sub | 13 + test/ntuple_qcd_300_500/batch/condor_25.sub | 13 + test/ntuple_qcd_300_500/batch/condor_250.sub | 13 + test/ntuple_qcd_300_500/batch/condor_251.sub | 13 + test/ntuple_qcd_300_500/batch/condor_252.sub | 13 + test/ntuple_qcd_300_500/batch/condor_253.sub | 13 + test/ntuple_qcd_300_500/batch/condor_254.sub | 13 + test/ntuple_qcd_300_500/batch/condor_255.sub | 13 + test/ntuple_qcd_300_500/batch/condor_256.sub | 13 + test/ntuple_qcd_300_500/batch/condor_257.sub | 13 + test/ntuple_qcd_300_500/batch/condor_258.sub | 13 + test/ntuple_qcd_300_500/batch/condor_259.sub | 13 + test/ntuple_qcd_300_500/batch/condor_26.sub | 13 + test/ntuple_qcd_300_500/batch/condor_260.sub | 13 + test/ntuple_qcd_300_500/batch/condor_261.sub | 13 + test/ntuple_qcd_300_500/batch/condor_262.sub | 13 + test/ntuple_qcd_300_500/batch/condor_263.sub | 13 + test/ntuple_qcd_300_500/batch/condor_264.sub | 13 + test/ntuple_qcd_300_500/batch/condor_265.sub | 13 + test/ntuple_qcd_300_500/batch/condor_266.sub | 13 + test/ntuple_qcd_300_500/batch/condor_267.sub | 13 + test/ntuple_qcd_300_500/batch/condor_268.sub | 13 + test/ntuple_qcd_300_500/batch/condor_269.sub | 13 + test/ntuple_qcd_300_500/batch/condor_27.sub | 13 + test/ntuple_qcd_300_500/batch/condor_270.sub | 13 + test/ntuple_qcd_300_500/batch/condor_271.sub | 13 + test/ntuple_qcd_300_500/batch/condor_272.sub | 13 + test/ntuple_qcd_300_500/batch/condor_273.sub | 13 + test/ntuple_qcd_300_500/batch/condor_274.sub | 13 + test/ntuple_qcd_300_500/batch/condor_275.sub | 13 + test/ntuple_qcd_300_500/batch/condor_276.sub | 13 + test/ntuple_qcd_300_500/batch/condor_277.sub | 13 + test/ntuple_qcd_300_500/batch/condor_278.sub | 13 + test/ntuple_qcd_300_500/batch/condor_279.sub | 13 + test/ntuple_qcd_300_500/batch/condor_28.sub | 13 + test/ntuple_qcd_300_500/batch/condor_280.sub | 13 + test/ntuple_qcd_300_500/batch/condor_281.sub | 13 + test/ntuple_qcd_300_500/batch/condor_282.sub | 13 + test/ntuple_qcd_300_500/batch/condor_283.sub | 13 + test/ntuple_qcd_300_500/batch/condor_284.sub | 13 + test/ntuple_qcd_300_500/batch/condor_285.sub | 13 + test/ntuple_qcd_300_500/batch/condor_286.sub | 13 + test/ntuple_qcd_300_500/batch/condor_287.sub | 13 + test/ntuple_qcd_300_500/batch/condor_288.sub | 13 + test/ntuple_qcd_300_500/batch/condor_289.sub | 13 + test/ntuple_qcd_300_500/batch/condor_29.sub | 13 + test/ntuple_qcd_300_500/batch/condor_290.sub | 13 + test/ntuple_qcd_300_500/batch/condor_291.sub | 13 + test/ntuple_qcd_300_500/batch/condor_292.sub | 13 + test/ntuple_qcd_300_500/batch/condor_293.sub | 13 + test/ntuple_qcd_300_500/batch/condor_294.sub | 13 + test/ntuple_qcd_300_500/batch/condor_295.sub | 13 + test/ntuple_qcd_300_500/batch/condor_296.sub | 13 + test/ntuple_qcd_300_500/batch/condor_297.sub | 13 + test/ntuple_qcd_300_500/batch/condor_298.sub | 13 + test/ntuple_qcd_300_500/batch/condor_299.sub | 13 + test/ntuple_qcd_300_500/batch/condor_3.sub | 13 + test/ntuple_qcd_300_500/batch/condor_30.sub | 13 + test/ntuple_qcd_300_500/batch/condor_300.sub | 13 + test/ntuple_qcd_300_500/batch/condor_301.sub | 13 + test/ntuple_qcd_300_500/batch/condor_302.sub | 13 + test/ntuple_qcd_300_500/batch/condor_303.sub | 13 + test/ntuple_qcd_300_500/batch/condor_304.sub | 13 + test/ntuple_qcd_300_500/batch/condor_305.sub | 13 + test/ntuple_qcd_300_500/batch/condor_306.sub | 13 + test/ntuple_qcd_300_500/batch/condor_307.sub | 13 + test/ntuple_qcd_300_500/batch/condor_308.sub | 13 + test/ntuple_qcd_300_500/batch/condor_309.sub | 13 + test/ntuple_qcd_300_500/batch/condor_31.sub | 13 + test/ntuple_qcd_300_500/batch/condor_310.sub | 13 + test/ntuple_qcd_300_500/batch/condor_311.sub | 13 + test/ntuple_qcd_300_500/batch/condor_312.sub | 13 + test/ntuple_qcd_300_500/batch/condor_313.sub | 13 + test/ntuple_qcd_300_500/batch/condor_314.sub | 13 + test/ntuple_qcd_300_500/batch/condor_315.sub | 13 + test/ntuple_qcd_300_500/batch/condor_316.sub | 13 + test/ntuple_qcd_300_500/batch/condor_317.sub | 13 + test/ntuple_qcd_300_500/batch/condor_318.sub | 13 + test/ntuple_qcd_300_500/batch/condor_319.sub | 13 + test/ntuple_qcd_300_500/batch/condor_32.sub | 13 + test/ntuple_qcd_300_500/batch/condor_320.sub | 13 + test/ntuple_qcd_300_500/batch/condor_321.sub | 13 + test/ntuple_qcd_300_500/batch/condor_322.sub | 13 + test/ntuple_qcd_300_500/batch/condor_323.sub | 13 + test/ntuple_qcd_300_500/batch/condor_324.sub | 13 + test/ntuple_qcd_300_500/batch/condor_325.sub | 13 + test/ntuple_qcd_300_500/batch/condor_326.sub | 13 + test/ntuple_qcd_300_500/batch/condor_327.sub | 13 + test/ntuple_qcd_300_500/batch/condor_328.sub | 13 + test/ntuple_qcd_300_500/batch/condor_329.sub | 13 + test/ntuple_qcd_300_500/batch/condor_33.sub | 13 + test/ntuple_qcd_300_500/batch/condor_330.sub | 13 + test/ntuple_qcd_300_500/batch/condor_331.sub | 13 + test/ntuple_qcd_300_500/batch/condor_332.sub | 13 + test/ntuple_qcd_300_500/batch/condor_333.sub | 13 + test/ntuple_qcd_300_500/batch/condor_334.sub | 13 + test/ntuple_qcd_300_500/batch/condor_335.sub | 13 + test/ntuple_qcd_300_500/batch/condor_336.sub | 13 + test/ntuple_qcd_300_500/batch/condor_337.sub | 13 + test/ntuple_qcd_300_500/batch/condor_338.sub | 13 + test/ntuple_qcd_300_500/batch/condor_339.sub | 13 + test/ntuple_qcd_300_500/batch/condor_34.sub | 13 + test/ntuple_qcd_300_500/batch/condor_340.sub | 13 + test/ntuple_qcd_300_500/batch/condor_341.sub | 13 + test/ntuple_qcd_300_500/batch/condor_342.sub | 13 + test/ntuple_qcd_300_500/batch/condor_343.sub | 13 + test/ntuple_qcd_300_500/batch/condor_344.sub | 13 + test/ntuple_qcd_300_500/batch/condor_345.sub | 13 + test/ntuple_qcd_300_500/batch/condor_346.sub | 13 + test/ntuple_qcd_300_500/batch/condor_347.sub | 13 + test/ntuple_qcd_300_500/batch/condor_348.sub | 13 + test/ntuple_qcd_300_500/batch/condor_349.sub | 13 + test/ntuple_qcd_300_500/batch/condor_35.sub | 13 + test/ntuple_qcd_300_500/batch/condor_350.sub | 13 + test/ntuple_qcd_300_500/batch/condor_351.sub | 13 + test/ntuple_qcd_300_500/batch/condor_352.sub | 13 + test/ntuple_qcd_300_500/batch/condor_353.sub | 13 + test/ntuple_qcd_300_500/batch/condor_354.sub | 13 + test/ntuple_qcd_300_500/batch/condor_355.sub | 13 + test/ntuple_qcd_300_500/batch/condor_356.sub | 13 + test/ntuple_qcd_300_500/batch/condor_357.sub | 13 + test/ntuple_qcd_300_500/batch/condor_358.sub | 13 + test/ntuple_qcd_300_500/batch/condor_359.sub | 13 + test/ntuple_qcd_300_500/batch/condor_36.sub | 13 + test/ntuple_qcd_300_500/batch/condor_360.sub | 13 + test/ntuple_qcd_300_500/batch/condor_361.sub | 13 + test/ntuple_qcd_300_500/batch/condor_362.sub | 13 + test/ntuple_qcd_300_500/batch/condor_363.sub | 13 + test/ntuple_qcd_300_500/batch/condor_364.sub | 13 + test/ntuple_qcd_300_500/batch/condor_365.sub | 13 + test/ntuple_qcd_300_500/batch/condor_366.sub | 13 + test/ntuple_qcd_300_500/batch/condor_367.sub | 13 + test/ntuple_qcd_300_500/batch/condor_368.sub | 13 + test/ntuple_qcd_300_500/batch/condor_369.sub | 13 + test/ntuple_qcd_300_500/batch/condor_37.sub | 13 + test/ntuple_qcd_300_500/batch/condor_370.sub | 13 + test/ntuple_qcd_300_500/batch/condor_371.sub | 13 + test/ntuple_qcd_300_500/batch/condor_372.sub | 13 + test/ntuple_qcd_300_500/batch/condor_373.sub | 13 + test/ntuple_qcd_300_500/batch/condor_374.sub | 13 + test/ntuple_qcd_300_500/batch/condor_375.sub | 13 + test/ntuple_qcd_300_500/batch/condor_376.sub | 13 + test/ntuple_qcd_300_500/batch/condor_377.sub | 13 + test/ntuple_qcd_300_500/batch/condor_378.sub | 13 + test/ntuple_qcd_300_500/batch/condor_379.sub | 13 + test/ntuple_qcd_300_500/batch/condor_38.sub | 13 + test/ntuple_qcd_300_500/batch/condor_380.sub | 13 + test/ntuple_qcd_300_500/batch/condor_381.sub | 13 + test/ntuple_qcd_300_500/batch/condor_382.sub | 13 + test/ntuple_qcd_300_500/batch/condor_383.sub | 13 + test/ntuple_qcd_300_500/batch/condor_384.sub | 13 + test/ntuple_qcd_300_500/batch/condor_385.sub | 13 + test/ntuple_qcd_300_500/batch/condor_386.sub | 13 + test/ntuple_qcd_300_500/batch/condor_387.sub | 13 + test/ntuple_qcd_300_500/batch/condor_388.sub | 13 + test/ntuple_qcd_300_500/batch/condor_389.sub | 13 + test/ntuple_qcd_300_500/batch/condor_39.sub | 13 + test/ntuple_qcd_300_500/batch/condor_390.sub | 13 + test/ntuple_qcd_300_500/batch/condor_391.sub | 13 + test/ntuple_qcd_300_500/batch/condor_392.sub | 13 + test/ntuple_qcd_300_500/batch/condor_393.sub | 13 + test/ntuple_qcd_300_500/batch/condor_394.sub | 13 + test/ntuple_qcd_300_500/batch/condor_395.sub | 13 + test/ntuple_qcd_300_500/batch/condor_396.sub | 13 + test/ntuple_qcd_300_500/batch/condor_397.sub | 13 + test/ntuple_qcd_300_500/batch/condor_398.sub | 13 + test/ntuple_qcd_300_500/batch/condor_399.sub | 13 + test/ntuple_qcd_300_500/batch/condor_4.sub | 13 + test/ntuple_qcd_300_500/batch/condor_40.sub | 13 + test/ntuple_qcd_300_500/batch/condor_400.sub | 13 + test/ntuple_qcd_300_500/batch/condor_401.sub | 13 + test/ntuple_qcd_300_500/batch/condor_402.sub | 13 + test/ntuple_qcd_300_500/batch/condor_403.sub | 13 + test/ntuple_qcd_300_500/batch/condor_404.sub | 13 + test/ntuple_qcd_300_500/batch/condor_405.sub | 13 + test/ntuple_qcd_300_500/batch/condor_406.sub | 13 + test/ntuple_qcd_300_500/batch/condor_407.sub | 13 + test/ntuple_qcd_300_500/batch/condor_408.sub | 13 + test/ntuple_qcd_300_500/batch/condor_409.sub | 13 + test/ntuple_qcd_300_500/batch/condor_41.sub | 13 + test/ntuple_qcd_300_500/batch/condor_410.sub | 13 + test/ntuple_qcd_300_500/batch/condor_411.sub | 13 + test/ntuple_qcd_300_500/batch/condor_412.sub | 13 + test/ntuple_qcd_300_500/batch/condor_413.sub | 13 + test/ntuple_qcd_300_500/batch/condor_414.sub | 13 + test/ntuple_qcd_300_500/batch/condor_415.sub | 13 + test/ntuple_qcd_300_500/batch/condor_416.sub | 13 + test/ntuple_qcd_300_500/batch/condor_417.sub | 13 + test/ntuple_qcd_300_500/batch/condor_418.sub | 13 + test/ntuple_qcd_300_500/batch/condor_419.sub | 13 + test/ntuple_qcd_300_500/batch/condor_42.sub | 13 + test/ntuple_qcd_300_500/batch/condor_420.sub | 13 + test/ntuple_qcd_300_500/batch/condor_421.sub | 13 + test/ntuple_qcd_300_500/batch/condor_422.sub | 13 + test/ntuple_qcd_300_500/batch/condor_423.sub | 13 + test/ntuple_qcd_300_500/batch/condor_424.sub | 13 + test/ntuple_qcd_300_500/batch/condor_425.sub | 13 + test/ntuple_qcd_300_500/batch/condor_426.sub | 13 + test/ntuple_qcd_300_500/batch/condor_427.sub | 13 + test/ntuple_qcd_300_500/batch/condor_428.sub | 13 + test/ntuple_qcd_300_500/batch/condor_429.sub | 13 + test/ntuple_qcd_300_500/batch/condor_43.sub | 13 + test/ntuple_qcd_300_500/batch/condor_430.sub | 13 + test/ntuple_qcd_300_500/batch/condor_431.sub | 13 + test/ntuple_qcd_300_500/batch/condor_432.sub | 13 + test/ntuple_qcd_300_500/batch/condor_433.sub | 13 + test/ntuple_qcd_300_500/batch/condor_434.sub | 13 + test/ntuple_qcd_300_500/batch/condor_435.sub | 13 + test/ntuple_qcd_300_500/batch/condor_436.sub | 13 + test/ntuple_qcd_300_500/batch/condor_437.sub | 13 + test/ntuple_qcd_300_500/batch/condor_438.sub | 13 + test/ntuple_qcd_300_500/batch/condor_439.sub | 13 + test/ntuple_qcd_300_500/batch/condor_44.sub | 13 + test/ntuple_qcd_300_500/batch/condor_440.sub | 13 + test/ntuple_qcd_300_500/batch/condor_441.sub | 13 + test/ntuple_qcd_300_500/batch/condor_442.sub | 13 + test/ntuple_qcd_300_500/batch/condor_443.sub | 13 + test/ntuple_qcd_300_500/batch/condor_444.sub | 13 + test/ntuple_qcd_300_500/batch/condor_445.sub | 13 + test/ntuple_qcd_300_500/batch/condor_446.sub | 13 + test/ntuple_qcd_300_500/batch/condor_447.sub | 13 + test/ntuple_qcd_300_500/batch/condor_448.sub | 13 + test/ntuple_qcd_300_500/batch/condor_449.sub | 13 + test/ntuple_qcd_300_500/batch/condor_45.sub | 13 + test/ntuple_qcd_300_500/batch/condor_450.sub | 13 + test/ntuple_qcd_300_500/batch/condor_451.sub | 13 + test/ntuple_qcd_300_500/batch/condor_452.sub | 13 + test/ntuple_qcd_300_500/batch/condor_453.sub | 13 + test/ntuple_qcd_300_500/batch/condor_454.sub | 13 + test/ntuple_qcd_300_500/batch/condor_455.sub | 13 + test/ntuple_qcd_300_500/batch/condor_456.sub | 13 + test/ntuple_qcd_300_500/batch/condor_457.sub | 13 + test/ntuple_qcd_300_500/batch/condor_458.sub | 13 + test/ntuple_qcd_300_500/batch/condor_459.sub | 13 + test/ntuple_qcd_300_500/batch/condor_46.sub | 13 + test/ntuple_qcd_300_500/batch/condor_460.sub | 13 + test/ntuple_qcd_300_500/batch/condor_461.sub | 13 + test/ntuple_qcd_300_500/batch/condor_462.sub | 13 + test/ntuple_qcd_300_500/batch/condor_463.sub | 13 + test/ntuple_qcd_300_500/batch/condor_464.sub | 13 + test/ntuple_qcd_300_500/batch/condor_465.sub | 13 + test/ntuple_qcd_300_500/batch/condor_466.sub | 13 + test/ntuple_qcd_300_500/batch/condor_467.sub | 13 + test/ntuple_qcd_300_500/batch/condor_468.sub | 13 + test/ntuple_qcd_300_500/batch/condor_469.sub | 13 + test/ntuple_qcd_300_500/batch/condor_47.sub | 13 + test/ntuple_qcd_300_500/batch/condor_470.sub | 13 + test/ntuple_qcd_300_500/batch/condor_471.sub | 13 + test/ntuple_qcd_300_500/batch/condor_472.sub | 13 + test/ntuple_qcd_300_500/batch/condor_473.sub | 13 + test/ntuple_qcd_300_500/batch/condor_474.sub | 13 + test/ntuple_qcd_300_500/batch/condor_475.sub | 13 + test/ntuple_qcd_300_500/batch/condor_476.sub | 13 + test/ntuple_qcd_300_500/batch/condor_477.sub | 13 + test/ntuple_qcd_300_500/batch/condor_478.sub | 13 + test/ntuple_qcd_300_500/batch/condor_479.sub | 13 + test/ntuple_qcd_300_500/batch/condor_48.sub | 13 + test/ntuple_qcd_300_500/batch/condor_480.sub | 13 + test/ntuple_qcd_300_500/batch/condor_481.sub | 13 + test/ntuple_qcd_300_500/batch/condor_482.sub | 13 + test/ntuple_qcd_300_500/batch/condor_483.sub | 13 + test/ntuple_qcd_300_500/batch/condor_484.sub | 13 + test/ntuple_qcd_300_500/batch/condor_485.sub | 13 + test/ntuple_qcd_300_500/batch/condor_486.sub | 13 + test/ntuple_qcd_300_500/batch/condor_487.sub | 13 + test/ntuple_qcd_300_500/batch/condor_488.sub | 13 + test/ntuple_qcd_300_500/batch/condor_489.sub | 13 + test/ntuple_qcd_300_500/batch/condor_49.sub | 13 + test/ntuple_qcd_300_500/batch/condor_490.sub | 13 + test/ntuple_qcd_300_500/batch/condor_491.sub | 13 + test/ntuple_qcd_300_500/batch/condor_492.sub | 13 + test/ntuple_qcd_300_500/batch/condor_493.sub | 13 + test/ntuple_qcd_300_500/batch/condor_494.sub | 13 + test/ntuple_qcd_300_500/batch/condor_495.sub | 13 + test/ntuple_qcd_300_500/batch/condor_496.sub | 13 + test/ntuple_qcd_300_500/batch/condor_497.sub | 13 + test/ntuple_qcd_300_500/batch/condor_498.sub | 13 + test/ntuple_qcd_300_500/batch/condor_499.sub | 13 + test/ntuple_qcd_300_500/batch/condor_5.sub | 13 + test/ntuple_qcd_300_500/batch/condor_50.sub | 13 + test/ntuple_qcd_300_500/batch/condor_51.sub | 13 + test/ntuple_qcd_300_500/batch/condor_52.sub | 13 + test/ntuple_qcd_300_500/batch/condor_53.sub | 13 + test/ntuple_qcd_300_500/batch/condor_54.sub | 13 + test/ntuple_qcd_300_500/batch/condor_55.sub | 13 + test/ntuple_qcd_300_500/batch/condor_56.sub | 13 + test/ntuple_qcd_300_500/batch/condor_57.sub | 13 + test/ntuple_qcd_300_500/batch/condor_58.sub | 13 + test/ntuple_qcd_300_500/batch/condor_59.sub | 13 + test/ntuple_qcd_300_500/batch/condor_6.sub | 13 + test/ntuple_qcd_300_500/batch/condor_60.sub | 13 + test/ntuple_qcd_300_500/batch/condor_61.sub | 13 + test/ntuple_qcd_300_500/batch/condor_62.sub | 13 + test/ntuple_qcd_300_500/batch/condor_63.sub | 13 + test/ntuple_qcd_300_500/batch/condor_64.sub | 13 + test/ntuple_qcd_300_500/batch/condor_65.sub | 13 + test/ntuple_qcd_300_500/batch/condor_66.sub | 13 + test/ntuple_qcd_300_500/batch/condor_67.sub | 13 + test/ntuple_qcd_300_500/batch/condor_68.sub | 13 + test/ntuple_qcd_300_500/batch/condor_69.sub | 13 + test/ntuple_qcd_300_500/batch/condor_7.sub | 13 + test/ntuple_qcd_300_500/batch/condor_70.sub | 13 + test/ntuple_qcd_300_500/batch/condor_71.sub | 13 + test/ntuple_qcd_300_500/batch/condor_72.sub | 13 + test/ntuple_qcd_300_500/batch/condor_73.sub | 13 + test/ntuple_qcd_300_500/batch/condor_74.sub | 13 + test/ntuple_qcd_300_500/batch/condor_75.sub | 13 + test/ntuple_qcd_300_500/batch/condor_76.sub | 13 + test/ntuple_qcd_300_500/batch/condor_77.sub | 13 + test/ntuple_qcd_300_500/batch/condor_78.sub | 13 + test/ntuple_qcd_300_500/batch/condor_79.sub | 13 + test/ntuple_qcd_300_500/batch/condor_8.sub | 13 + test/ntuple_qcd_300_500/batch/condor_80.sub | 13 + test/ntuple_qcd_300_500/batch/condor_81.sub | 13 + test/ntuple_qcd_300_500/batch/condor_82.sub | 13 + test/ntuple_qcd_300_500/batch/condor_83.sub | 13 + test/ntuple_qcd_300_500/batch/condor_84.sub | 13 + test/ntuple_qcd_300_500/batch/condor_85.sub | 13 + test/ntuple_qcd_300_500/batch/condor_86.sub | 13 + test/ntuple_qcd_300_500/batch/condor_87.sub | 13 + test/ntuple_qcd_300_500/batch/condor_88.sub | 13 + test/ntuple_qcd_300_500/batch/condor_89.sub | 13 + test/ntuple_qcd_300_500/batch/condor_9.sub | 13 + test/ntuple_qcd_300_500/batch/condor_90.sub | 13 + test/ntuple_qcd_300_500/batch/condor_91.sub | 13 + test/ntuple_qcd_300_500/batch/condor_92.sub | 13 + test/ntuple_qcd_300_500/batch/condor_93.sub | 13 + test/ntuple_qcd_300_500/batch/condor_94.sub | 13 + test/ntuple_qcd_300_500/batch/condor_95.sub | 13 + test/ntuple_qcd_300_500/batch/condor_96.sub | 13 + test/ntuple_qcd_300_500/batch/condor_97.sub | 13 + test/ntuple_qcd_300_500/batch/condor_98.sub | 13 + test/ntuple_qcd_300_500/batch/condor_99.sub | 13 + test/ntuple_qcd_300_500/batch/nJobs.500 | 0 test/ntuple_qcd_300_500/batch/sge_0.sh | 28 + test/ntuple_qcd_300_500/batch/sge_1.sh | 28 + test/ntuple_qcd_300_500/batch/sge_10.sh | 28 + test/ntuple_qcd_300_500/batch/sge_100.sh | 28 + test/ntuple_qcd_300_500/batch/sge_101.sh | 28 + test/ntuple_qcd_300_500/batch/sge_102.sh | 28 + test/ntuple_qcd_300_500/batch/sge_103.sh | 28 + test/ntuple_qcd_300_500/batch/sge_104.sh | 28 + test/ntuple_qcd_300_500/batch/sge_105.sh | 28 + test/ntuple_qcd_300_500/batch/sge_106.sh | 28 + test/ntuple_qcd_300_500/batch/sge_107.sh | 28 + test/ntuple_qcd_300_500/batch/sge_108.sh | 28 + test/ntuple_qcd_300_500/batch/sge_109.sh | 28 + test/ntuple_qcd_300_500/batch/sge_11.sh | 28 + test/ntuple_qcd_300_500/batch/sge_110.sh | 28 + test/ntuple_qcd_300_500/batch/sge_111.sh | 28 + test/ntuple_qcd_300_500/batch/sge_112.sh | 28 + test/ntuple_qcd_300_500/batch/sge_113.sh | 28 + test/ntuple_qcd_300_500/batch/sge_114.sh | 28 + test/ntuple_qcd_300_500/batch/sge_115.sh | 28 + test/ntuple_qcd_300_500/batch/sge_116.sh | 28 + test/ntuple_qcd_300_500/batch/sge_117.sh | 28 + test/ntuple_qcd_300_500/batch/sge_118.sh | 28 + test/ntuple_qcd_300_500/batch/sge_119.sh | 28 + test/ntuple_qcd_300_500/batch/sge_12.sh | 28 + test/ntuple_qcd_300_500/batch/sge_120.sh | 28 + test/ntuple_qcd_300_500/batch/sge_121.sh | 28 + test/ntuple_qcd_300_500/batch/sge_122.sh | 28 + test/ntuple_qcd_300_500/batch/sge_123.sh | 28 + test/ntuple_qcd_300_500/batch/sge_124.sh | 28 + test/ntuple_qcd_300_500/batch/sge_125.sh | 28 + test/ntuple_qcd_300_500/batch/sge_126.sh | 28 + test/ntuple_qcd_300_500/batch/sge_127.sh | 28 + test/ntuple_qcd_300_500/batch/sge_128.sh | 28 + test/ntuple_qcd_300_500/batch/sge_129.sh | 28 + test/ntuple_qcd_300_500/batch/sge_13.sh | 28 + test/ntuple_qcd_300_500/batch/sge_130.sh | 28 + test/ntuple_qcd_300_500/batch/sge_131.sh | 28 + test/ntuple_qcd_300_500/batch/sge_132.sh | 28 + test/ntuple_qcd_300_500/batch/sge_133.sh | 28 + test/ntuple_qcd_300_500/batch/sge_134.sh | 28 + test/ntuple_qcd_300_500/batch/sge_135.sh | 28 + test/ntuple_qcd_300_500/batch/sge_136.sh | 28 + test/ntuple_qcd_300_500/batch/sge_137.sh | 28 + test/ntuple_qcd_300_500/batch/sge_138.sh | 28 + test/ntuple_qcd_300_500/batch/sge_139.sh | 28 + test/ntuple_qcd_300_500/batch/sge_14.sh | 28 + test/ntuple_qcd_300_500/batch/sge_140.sh | 28 + test/ntuple_qcd_300_500/batch/sge_141.sh | 28 + test/ntuple_qcd_300_500/batch/sge_142.sh | 28 + test/ntuple_qcd_300_500/batch/sge_143.sh | 28 + test/ntuple_qcd_300_500/batch/sge_144.sh | 28 + test/ntuple_qcd_300_500/batch/sge_145.sh | 28 + test/ntuple_qcd_300_500/batch/sge_146.sh | 28 + test/ntuple_qcd_300_500/batch/sge_147.sh | 28 + test/ntuple_qcd_300_500/batch/sge_148.sh | 28 + test/ntuple_qcd_300_500/batch/sge_149.sh | 28 + test/ntuple_qcd_300_500/batch/sge_15.sh | 28 + test/ntuple_qcd_300_500/batch/sge_150.sh | 28 + test/ntuple_qcd_300_500/batch/sge_151.sh | 28 + test/ntuple_qcd_300_500/batch/sge_152.sh | 28 + test/ntuple_qcd_300_500/batch/sge_153.sh | 28 + test/ntuple_qcd_300_500/batch/sge_154.sh | 28 + test/ntuple_qcd_300_500/batch/sge_155.sh | 28 + test/ntuple_qcd_300_500/batch/sge_156.sh | 28 + test/ntuple_qcd_300_500/batch/sge_157.sh | 28 + test/ntuple_qcd_300_500/batch/sge_158.sh | 28 + test/ntuple_qcd_300_500/batch/sge_159.sh | 28 + test/ntuple_qcd_300_500/batch/sge_16.sh | 28 + test/ntuple_qcd_300_500/batch/sge_160.sh | 28 + test/ntuple_qcd_300_500/batch/sge_161.sh | 28 + test/ntuple_qcd_300_500/batch/sge_162.sh | 28 + test/ntuple_qcd_300_500/batch/sge_163.sh | 28 + test/ntuple_qcd_300_500/batch/sge_164.sh | 28 + test/ntuple_qcd_300_500/batch/sge_165.sh | 28 + test/ntuple_qcd_300_500/batch/sge_166.sh | 28 + test/ntuple_qcd_300_500/batch/sge_167.sh | 28 + test/ntuple_qcd_300_500/batch/sge_168.sh | 28 + test/ntuple_qcd_300_500/batch/sge_169.sh | 28 + test/ntuple_qcd_300_500/batch/sge_17.sh | 28 + test/ntuple_qcd_300_500/batch/sge_170.sh | 28 + test/ntuple_qcd_300_500/batch/sge_171.sh | 28 + test/ntuple_qcd_300_500/batch/sge_172.sh | 28 + test/ntuple_qcd_300_500/batch/sge_173.sh | 28 + test/ntuple_qcd_300_500/batch/sge_174.sh | 28 + test/ntuple_qcd_300_500/batch/sge_175.sh | 28 + test/ntuple_qcd_300_500/batch/sge_176.sh | 28 + test/ntuple_qcd_300_500/batch/sge_177.sh | 28 + test/ntuple_qcd_300_500/batch/sge_178.sh | 28 + test/ntuple_qcd_300_500/batch/sge_179.sh | 28 + test/ntuple_qcd_300_500/batch/sge_18.sh | 28 + test/ntuple_qcd_300_500/batch/sge_180.sh | 28 + test/ntuple_qcd_300_500/batch/sge_181.sh | 28 + test/ntuple_qcd_300_500/batch/sge_182.sh | 28 + test/ntuple_qcd_300_500/batch/sge_183.sh | 28 + test/ntuple_qcd_300_500/batch/sge_184.sh | 28 + test/ntuple_qcd_300_500/batch/sge_185.sh | 28 + test/ntuple_qcd_300_500/batch/sge_186.sh | 28 + test/ntuple_qcd_300_500/batch/sge_187.sh | 28 + test/ntuple_qcd_300_500/batch/sge_188.sh | 28 + test/ntuple_qcd_300_500/batch/sge_189.sh | 28 + test/ntuple_qcd_300_500/batch/sge_19.sh | 28 + test/ntuple_qcd_300_500/batch/sge_190.sh | 28 + test/ntuple_qcd_300_500/batch/sge_191.sh | 28 + test/ntuple_qcd_300_500/batch/sge_192.sh | 28 + test/ntuple_qcd_300_500/batch/sge_193.sh | 28 + test/ntuple_qcd_300_500/batch/sge_194.sh | 28 + test/ntuple_qcd_300_500/batch/sge_195.sh | 28 + test/ntuple_qcd_300_500/batch/sge_196.sh | 28 + test/ntuple_qcd_300_500/batch/sge_197.sh | 28 + test/ntuple_qcd_300_500/batch/sge_198.sh | 28 + test/ntuple_qcd_300_500/batch/sge_199.sh | 28 + test/ntuple_qcd_300_500/batch/sge_2.sh | 28 + test/ntuple_qcd_300_500/batch/sge_20.sh | 28 + test/ntuple_qcd_300_500/batch/sge_200.sh | 28 + test/ntuple_qcd_300_500/batch/sge_201.sh | 28 + test/ntuple_qcd_300_500/batch/sge_202.sh | 28 + test/ntuple_qcd_300_500/batch/sge_203.sh | 28 + test/ntuple_qcd_300_500/batch/sge_204.sh | 28 + test/ntuple_qcd_300_500/batch/sge_205.sh | 28 + test/ntuple_qcd_300_500/batch/sge_206.sh | 28 + test/ntuple_qcd_300_500/batch/sge_207.sh | 28 + test/ntuple_qcd_300_500/batch/sge_208.sh | 28 + test/ntuple_qcd_300_500/batch/sge_209.sh | 28 + test/ntuple_qcd_300_500/batch/sge_21.sh | 28 + test/ntuple_qcd_300_500/batch/sge_210.sh | 28 + test/ntuple_qcd_300_500/batch/sge_211.sh | 28 + test/ntuple_qcd_300_500/batch/sge_212.sh | 28 + test/ntuple_qcd_300_500/batch/sge_213.sh | 28 + test/ntuple_qcd_300_500/batch/sge_214.sh | 28 + test/ntuple_qcd_300_500/batch/sge_215.sh | 28 + test/ntuple_qcd_300_500/batch/sge_216.sh | 28 + test/ntuple_qcd_300_500/batch/sge_217.sh | 28 + test/ntuple_qcd_300_500/batch/sge_218.sh | 28 + test/ntuple_qcd_300_500/batch/sge_219.sh | 28 + test/ntuple_qcd_300_500/batch/sge_22.sh | 28 + test/ntuple_qcd_300_500/batch/sge_220.sh | 28 + test/ntuple_qcd_300_500/batch/sge_221.sh | 28 + test/ntuple_qcd_300_500/batch/sge_222.sh | 28 + test/ntuple_qcd_300_500/batch/sge_223.sh | 28 + test/ntuple_qcd_300_500/batch/sge_224.sh | 28 + test/ntuple_qcd_300_500/batch/sge_225.sh | 28 + test/ntuple_qcd_300_500/batch/sge_226.sh | 28 + test/ntuple_qcd_300_500/batch/sge_227.sh | 28 + test/ntuple_qcd_300_500/batch/sge_228.sh | 28 + test/ntuple_qcd_300_500/batch/sge_229.sh | 28 + test/ntuple_qcd_300_500/batch/sge_23.sh | 28 + test/ntuple_qcd_300_500/batch/sge_230.sh | 28 + test/ntuple_qcd_300_500/batch/sge_231.sh | 28 + test/ntuple_qcd_300_500/batch/sge_232.sh | 28 + test/ntuple_qcd_300_500/batch/sge_233.sh | 28 + test/ntuple_qcd_300_500/batch/sge_234.sh | 28 + test/ntuple_qcd_300_500/batch/sge_235.sh | 28 + test/ntuple_qcd_300_500/batch/sge_236.sh | 28 + test/ntuple_qcd_300_500/batch/sge_237.sh | 28 + test/ntuple_qcd_300_500/batch/sge_238.sh | 28 + test/ntuple_qcd_300_500/batch/sge_239.sh | 28 + test/ntuple_qcd_300_500/batch/sge_24.sh | 28 + test/ntuple_qcd_300_500/batch/sge_240.sh | 28 + test/ntuple_qcd_300_500/batch/sge_241.sh | 28 + test/ntuple_qcd_300_500/batch/sge_242.sh | 28 + test/ntuple_qcd_300_500/batch/sge_243.sh | 28 + test/ntuple_qcd_300_500/batch/sge_244.sh | 28 + test/ntuple_qcd_300_500/batch/sge_245.sh | 28 + test/ntuple_qcd_300_500/batch/sge_246.sh | 28 + test/ntuple_qcd_300_500/batch/sge_247.sh | 28 + test/ntuple_qcd_300_500/batch/sge_248.sh | 28 + test/ntuple_qcd_300_500/batch/sge_249.sh | 28 + test/ntuple_qcd_300_500/batch/sge_25.sh | 28 + test/ntuple_qcd_300_500/batch/sge_250.sh | 28 + test/ntuple_qcd_300_500/batch/sge_251.sh | 28 + test/ntuple_qcd_300_500/batch/sge_252.sh | 28 + test/ntuple_qcd_300_500/batch/sge_253.sh | 28 + test/ntuple_qcd_300_500/batch/sge_254.sh | 28 + test/ntuple_qcd_300_500/batch/sge_255.sh | 28 + test/ntuple_qcd_300_500/batch/sge_256.sh | 28 + test/ntuple_qcd_300_500/batch/sge_257.sh | 28 + test/ntuple_qcd_300_500/batch/sge_258.sh | 28 + test/ntuple_qcd_300_500/batch/sge_259.sh | 28 + test/ntuple_qcd_300_500/batch/sge_26.sh | 28 + test/ntuple_qcd_300_500/batch/sge_260.sh | 28 + test/ntuple_qcd_300_500/batch/sge_261.sh | 28 + test/ntuple_qcd_300_500/batch/sge_262.sh | 28 + test/ntuple_qcd_300_500/batch/sge_263.sh | 28 + test/ntuple_qcd_300_500/batch/sge_264.sh | 28 + test/ntuple_qcd_300_500/batch/sge_265.sh | 28 + test/ntuple_qcd_300_500/batch/sge_266.sh | 28 + test/ntuple_qcd_300_500/batch/sge_267.sh | 28 + test/ntuple_qcd_300_500/batch/sge_268.sh | 28 + test/ntuple_qcd_300_500/batch/sge_269.sh | 28 + test/ntuple_qcd_300_500/batch/sge_27.sh | 28 + test/ntuple_qcd_300_500/batch/sge_270.sh | 28 + test/ntuple_qcd_300_500/batch/sge_271.sh | 28 + test/ntuple_qcd_300_500/batch/sge_272.sh | 28 + test/ntuple_qcd_300_500/batch/sge_273.sh | 28 + test/ntuple_qcd_300_500/batch/sge_274.sh | 28 + test/ntuple_qcd_300_500/batch/sge_275.sh | 28 + test/ntuple_qcd_300_500/batch/sge_276.sh | 28 + test/ntuple_qcd_300_500/batch/sge_277.sh | 28 + test/ntuple_qcd_300_500/batch/sge_278.sh | 28 + test/ntuple_qcd_300_500/batch/sge_279.sh | 28 + test/ntuple_qcd_300_500/batch/sge_28.sh | 28 + test/ntuple_qcd_300_500/batch/sge_280.sh | 28 + test/ntuple_qcd_300_500/batch/sge_281.sh | 28 + test/ntuple_qcd_300_500/batch/sge_282.sh | 28 + test/ntuple_qcd_300_500/batch/sge_283.sh | 28 + test/ntuple_qcd_300_500/batch/sge_284.sh | 28 + test/ntuple_qcd_300_500/batch/sge_285.sh | 28 + test/ntuple_qcd_300_500/batch/sge_286.sh | 28 + test/ntuple_qcd_300_500/batch/sge_287.sh | 28 + test/ntuple_qcd_300_500/batch/sge_288.sh | 28 + test/ntuple_qcd_300_500/batch/sge_289.sh | 28 + test/ntuple_qcd_300_500/batch/sge_29.sh | 28 + test/ntuple_qcd_300_500/batch/sge_290.sh | 28 + test/ntuple_qcd_300_500/batch/sge_291.sh | 28 + test/ntuple_qcd_300_500/batch/sge_292.sh | 28 + test/ntuple_qcd_300_500/batch/sge_293.sh | 28 + test/ntuple_qcd_300_500/batch/sge_294.sh | 28 + test/ntuple_qcd_300_500/batch/sge_295.sh | 28 + test/ntuple_qcd_300_500/batch/sge_296.sh | 28 + test/ntuple_qcd_300_500/batch/sge_297.sh | 28 + test/ntuple_qcd_300_500/batch/sge_298.sh | 28 + test/ntuple_qcd_300_500/batch/sge_299.sh | 28 + test/ntuple_qcd_300_500/batch/sge_3.sh | 28 + test/ntuple_qcd_300_500/batch/sge_30.sh | 28 + test/ntuple_qcd_300_500/batch/sge_300.sh | 28 + test/ntuple_qcd_300_500/batch/sge_301.sh | 28 + test/ntuple_qcd_300_500/batch/sge_302.sh | 28 + test/ntuple_qcd_300_500/batch/sge_303.sh | 28 + test/ntuple_qcd_300_500/batch/sge_304.sh | 28 + test/ntuple_qcd_300_500/batch/sge_305.sh | 28 + test/ntuple_qcd_300_500/batch/sge_306.sh | 28 + test/ntuple_qcd_300_500/batch/sge_307.sh | 28 + test/ntuple_qcd_300_500/batch/sge_308.sh | 28 + test/ntuple_qcd_300_500/batch/sge_309.sh | 28 + test/ntuple_qcd_300_500/batch/sge_31.sh | 28 + test/ntuple_qcd_300_500/batch/sge_310.sh | 28 + test/ntuple_qcd_300_500/batch/sge_311.sh | 28 + test/ntuple_qcd_300_500/batch/sge_312.sh | 28 + test/ntuple_qcd_300_500/batch/sge_313.sh | 28 + test/ntuple_qcd_300_500/batch/sge_314.sh | 28 + test/ntuple_qcd_300_500/batch/sge_315.sh | 28 + test/ntuple_qcd_300_500/batch/sge_316.sh | 28 + test/ntuple_qcd_300_500/batch/sge_317.sh | 28 + test/ntuple_qcd_300_500/batch/sge_318.sh | 28 + test/ntuple_qcd_300_500/batch/sge_319.sh | 28 + test/ntuple_qcd_300_500/batch/sge_32.sh | 28 + test/ntuple_qcd_300_500/batch/sge_320.sh | 28 + test/ntuple_qcd_300_500/batch/sge_321.sh | 28 + test/ntuple_qcd_300_500/batch/sge_322.sh | 28 + test/ntuple_qcd_300_500/batch/sge_323.sh | 28 + test/ntuple_qcd_300_500/batch/sge_324.sh | 28 + test/ntuple_qcd_300_500/batch/sge_325.sh | 28 + test/ntuple_qcd_300_500/batch/sge_326.sh | 28 + test/ntuple_qcd_300_500/batch/sge_327.sh | 28 + test/ntuple_qcd_300_500/batch/sge_328.sh | 28 + test/ntuple_qcd_300_500/batch/sge_329.sh | 28 + test/ntuple_qcd_300_500/batch/sge_33.sh | 28 + test/ntuple_qcd_300_500/batch/sge_330.sh | 28 + test/ntuple_qcd_300_500/batch/sge_331.sh | 28 + test/ntuple_qcd_300_500/batch/sge_332.sh | 28 + test/ntuple_qcd_300_500/batch/sge_333.sh | 28 + test/ntuple_qcd_300_500/batch/sge_334.sh | 28 + test/ntuple_qcd_300_500/batch/sge_335.sh | 28 + test/ntuple_qcd_300_500/batch/sge_336.sh | 28 + test/ntuple_qcd_300_500/batch/sge_337.sh | 28 + test/ntuple_qcd_300_500/batch/sge_338.sh | 28 + test/ntuple_qcd_300_500/batch/sge_339.sh | 28 + test/ntuple_qcd_300_500/batch/sge_34.sh | 28 + test/ntuple_qcd_300_500/batch/sge_340.sh | 28 + test/ntuple_qcd_300_500/batch/sge_341.sh | 28 + test/ntuple_qcd_300_500/batch/sge_342.sh | 28 + test/ntuple_qcd_300_500/batch/sge_343.sh | 28 + test/ntuple_qcd_300_500/batch/sge_344.sh | 28 + test/ntuple_qcd_300_500/batch/sge_345.sh | 28 + test/ntuple_qcd_300_500/batch/sge_346.sh | 28 + test/ntuple_qcd_300_500/batch/sge_347.sh | 28 + test/ntuple_qcd_300_500/batch/sge_348.sh | 28 + test/ntuple_qcd_300_500/batch/sge_349.sh | 28 + test/ntuple_qcd_300_500/batch/sge_35.sh | 28 + test/ntuple_qcd_300_500/batch/sge_350.sh | 28 + test/ntuple_qcd_300_500/batch/sge_351.sh | 28 + test/ntuple_qcd_300_500/batch/sge_352.sh | 28 + test/ntuple_qcd_300_500/batch/sge_353.sh | 28 + test/ntuple_qcd_300_500/batch/sge_354.sh | 28 + test/ntuple_qcd_300_500/batch/sge_355.sh | 28 + test/ntuple_qcd_300_500/batch/sge_356.sh | 28 + test/ntuple_qcd_300_500/batch/sge_357.sh | 28 + test/ntuple_qcd_300_500/batch/sge_358.sh | 28 + test/ntuple_qcd_300_500/batch/sge_359.sh | 28 + test/ntuple_qcd_300_500/batch/sge_36.sh | 28 + test/ntuple_qcd_300_500/batch/sge_360.sh | 28 + test/ntuple_qcd_300_500/batch/sge_361.sh | 28 + test/ntuple_qcd_300_500/batch/sge_362.sh | 28 + test/ntuple_qcd_300_500/batch/sge_363.sh | 28 + test/ntuple_qcd_300_500/batch/sge_364.sh | 28 + test/ntuple_qcd_300_500/batch/sge_365.sh | 28 + test/ntuple_qcd_300_500/batch/sge_366.sh | 28 + test/ntuple_qcd_300_500/batch/sge_367.sh | 28 + test/ntuple_qcd_300_500/batch/sge_368.sh | 28 + test/ntuple_qcd_300_500/batch/sge_369.sh | 28 + test/ntuple_qcd_300_500/batch/sge_37.sh | 28 + test/ntuple_qcd_300_500/batch/sge_370.sh | 28 + test/ntuple_qcd_300_500/batch/sge_371.sh | 28 + test/ntuple_qcd_300_500/batch/sge_372.sh | 28 + test/ntuple_qcd_300_500/batch/sge_373.sh | 28 + test/ntuple_qcd_300_500/batch/sge_374.sh | 28 + test/ntuple_qcd_300_500/batch/sge_375.sh | 28 + test/ntuple_qcd_300_500/batch/sge_376.sh | 28 + test/ntuple_qcd_300_500/batch/sge_377.sh | 28 + test/ntuple_qcd_300_500/batch/sge_378.sh | 28 + test/ntuple_qcd_300_500/batch/sge_379.sh | 28 + test/ntuple_qcd_300_500/batch/sge_38.sh | 28 + test/ntuple_qcd_300_500/batch/sge_380.sh | 28 + test/ntuple_qcd_300_500/batch/sge_381.sh | 28 + test/ntuple_qcd_300_500/batch/sge_382.sh | 28 + test/ntuple_qcd_300_500/batch/sge_383.sh | 28 + test/ntuple_qcd_300_500/batch/sge_384.sh | 28 + test/ntuple_qcd_300_500/batch/sge_385.sh | 28 + test/ntuple_qcd_300_500/batch/sge_386.sh | 28 + test/ntuple_qcd_300_500/batch/sge_387.sh | 28 + test/ntuple_qcd_300_500/batch/sge_388.sh | 28 + test/ntuple_qcd_300_500/batch/sge_389.sh | 28 + test/ntuple_qcd_300_500/batch/sge_39.sh | 28 + test/ntuple_qcd_300_500/batch/sge_390.sh | 28 + test/ntuple_qcd_300_500/batch/sge_391.sh | 28 + test/ntuple_qcd_300_500/batch/sge_392.sh | 28 + test/ntuple_qcd_300_500/batch/sge_393.sh | 28 + test/ntuple_qcd_300_500/batch/sge_394.sh | 28 + test/ntuple_qcd_300_500/batch/sge_395.sh | 28 + test/ntuple_qcd_300_500/batch/sge_396.sh | 28 + test/ntuple_qcd_300_500/batch/sge_397.sh | 28 + test/ntuple_qcd_300_500/batch/sge_398.sh | 28 + test/ntuple_qcd_300_500/batch/sge_399.sh | 28 + test/ntuple_qcd_300_500/batch/sge_4.sh | 28 + test/ntuple_qcd_300_500/batch/sge_40.sh | 28 + test/ntuple_qcd_300_500/batch/sge_400.sh | 28 + test/ntuple_qcd_300_500/batch/sge_401.sh | 28 + test/ntuple_qcd_300_500/batch/sge_402.sh | 28 + test/ntuple_qcd_300_500/batch/sge_403.sh | 28 + test/ntuple_qcd_300_500/batch/sge_404.sh | 28 + test/ntuple_qcd_300_500/batch/sge_405.sh | 28 + test/ntuple_qcd_300_500/batch/sge_406.sh | 28 + test/ntuple_qcd_300_500/batch/sge_407.sh | 28 + test/ntuple_qcd_300_500/batch/sge_408.sh | 28 + test/ntuple_qcd_300_500/batch/sge_409.sh | 28 + test/ntuple_qcd_300_500/batch/sge_41.sh | 28 + test/ntuple_qcd_300_500/batch/sge_410.sh | 28 + test/ntuple_qcd_300_500/batch/sge_411.sh | 28 + test/ntuple_qcd_300_500/batch/sge_412.sh | 28 + test/ntuple_qcd_300_500/batch/sge_413.sh | 28 + test/ntuple_qcd_300_500/batch/sge_414.sh | 28 + test/ntuple_qcd_300_500/batch/sge_415.sh | 28 + test/ntuple_qcd_300_500/batch/sge_416.sh | 28 + test/ntuple_qcd_300_500/batch/sge_417.sh | 28 + test/ntuple_qcd_300_500/batch/sge_418.sh | 28 + test/ntuple_qcd_300_500/batch/sge_419.sh | 28 + test/ntuple_qcd_300_500/batch/sge_42.sh | 28 + test/ntuple_qcd_300_500/batch/sge_420.sh | 28 + test/ntuple_qcd_300_500/batch/sge_421.sh | 28 + test/ntuple_qcd_300_500/batch/sge_422.sh | 28 + test/ntuple_qcd_300_500/batch/sge_423.sh | 28 + test/ntuple_qcd_300_500/batch/sge_424.sh | 28 + test/ntuple_qcd_300_500/batch/sge_425.sh | 28 + test/ntuple_qcd_300_500/batch/sge_426.sh | 28 + test/ntuple_qcd_300_500/batch/sge_427.sh | 28 + test/ntuple_qcd_300_500/batch/sge_428.sh | 28 + test/ntuple_qcd_300_500/batch/sge_429.sh | 28 + test/ntuple_qcd_300_500/batch/sge_43.sh | 28 + test/ntuple_qcd_300_500/batch/sge_430.sh | 28 + test/ntuple_qcd_300_500/batch/sge_431.sh | 28 + test/ntuple_qcd_300_500/batch/sge_432.sh | 28 + test/ntuple_qcd_300_500/batch/sge_433.sh | 28 + test/ntuple_qcd_300_500/batch/sge_434.sh | 28 + test/ntuple_qcd_300_500/batch/sge_435.sh | 28 + test/ntuple_qcd_300_500/batch/sge_436.sh | 28 + test/ntuple_qcd_300_500/batch/sge_437.sh | 28 + test/ntuple_qcd_300_500/batch/sge_438.sh | 28 + test/ntuple_qcd_300_500/batch/sge_439.sh | 28 + test/ntuple_qcd_300_500/batch/sge_44.sh | 28 + test/ntuple_qcd_300_500/batch/sge_440.sh | 28 + test/ntuple_qcd_300_500/batch/sge_441.sh | 28 + test/ntuple_qcd_300_500/batch/sge_442.sh | 28 + test/ntuple_qcd_300_500/batch/sge_443.sh | 28 + test/ntuple_qcd_300_500/batch/sge_444.sh | 28 + test/ntuple_qcd_300_500/batch/sge_445.sh | 28 + test/ntuple_qcd_300_500/batch/sge_446.sh | 28 + test/ntuple_qcd_300_500/batch/sge_447.sh | 28 + test/ntuple_qcd_300_500/batch/sge_448.sh | 28 + test/ntuple_qcd_300_500/batch/sge_449.sh | 28 + test/ntuple_qcd_300_500/batch/sge_45.sh | 28 + test/ntuple_qcd_300_500/batch/sge_450.sh | 28 + test/ntuple_qcd_300_500/batch/sge_451.sh | 28 + test/ntuple_qcd_300_500/batch/sge_452.sh | 28 + test/ntuple_qcd_300_500/batch/sge_453.sh | 28 + test/ntuple_qcd_300_500/batch/sge_454.sh | 28 + test/ntuple_qcd_300_500/batch/sge_455.sh | 28 + test/ntuple_qcd_300_500/batch/sge_456.sh | 28 + test/ntuple_qcd_300_500/batch/sge_457.sh | 28 + test/ntuple_qcd_300_500/batch/sge_458.sh | 28 + test/ntuple_qcd_300_500/batch/sge_459.sh | 28 + test/ntuple_qcd_300_500/batch/sge_46.sh | 28 + test/ntuple_qcd_300_500/batch/sge_460.sh | 28 + test/ntuple_qcd_300_500/batch/sge_461.sh | 28 + test/ntuple_qcd_300_500/batch/sge_462.sh | 28 + test/ntuple_qcd_300_500/batch/sge_463.sh | 28 + test/ntuple_qcd_300_500/batch/sge_464.sh | 28 + test/ntuple_qcd_300_500/batch/sge_465.sh | 28 + test/ntuple_qcd_300_500/batch/sge_466.sh | 28 + test/ntuple_qcd_300_500/batch/sge_467.sh | 28 + test/ntuple_qcd_300_500/batch/sge_468.sh | 28 + test/ntuple_qcd_300_500/batch/sge_469.sh | 28 + test/ntuple_qcd_300_500/batch/sge_47.sh | 28 + test/ntuple_qcd_300_500/batch/sge_470.sh | 28 + test/ntuple_qcd_300_500/batch/sge_471.sh | 28 + test/ntuple_qcd_300_500/batch/sge_472.sh | 28 + test/ntuple_qcd_300_500/batch/sge_473.sh | 28 + test/ntuple_qcd_300_500/batch/sge_474.sh | 28 + test/ntuple_qcd_300_500/batch/sge_475.sh | 28 + test/ntuple_qcd_300_500/batch/sge_476.sh | 28 + test/ntuple_qcd_300_500/batch/sge_477.sh | 28 + test/ntuple_qcd_300_500/batch/sge_478.sh | 28 + test/ntuple_qcd_300_500/batch/sge_479.sh | 28 + test/ntuple_qcd_300_500/batch/sge_48.sh | 28 + test/ntuple_qcd_300_500/batch/sge_480.sh | 28 + test/ntuple_qcd_300_500/batch/sge_481.sh | 28 + test/ntuple_qcd_300_500/batch/sge_482.sh | 28 + test/ntuple_qcd_300_500/batch/sge_483.sh | 28 + test/ntuple_qcd_300_500/batch/sge_484.sh | 28 + test/ntuple_qcd_300_500/batch/sge_485.sh | 28 + test/ntuple_qcd_300_500/batch/sge_486.sh | 28 + test/ntuple_qcd_300_500/batch/sge_487.sh | 28 + test/ntuple_qcd_300_500/batch/sge_488.sh | 28 + test/ntuple_qcd_300_500/batch/sge_489.sh | 28 + test/ntuple_qcd_300_500/batch/sge_49.sh | 28 + test/ntuple_qcd_300_500/batch/sge_490.sh | 28 + test/ntuple_qcd_300_500/batch/sge_491.sh | 28 + test/ntuple_qcd_300_500/batch/sge_492.sh | 28 + test/ntuple_qcd_300_500/batch/sge_493.sh | 28 + test/ntuple_qcd_300_500/batch/sge_494.sh | 28 + test/ntuple_qcd_300_500/batch/sge_495.sh | 28 + test/ntuple_qcd_300_500/batch/sge_496.sh | 28 + test/ntuple_qcd_300_500/batch/sge_497.sh | 28 + test/ntuple_qcd_300_500/batch/sge_498.sh | 28 + test/ntuple_qcd_300_500/batch/sge_499.sh | 28 + test/ntuple_qcd_300_500/batch/sge_5.sh | 28 + test/ntuple_qcd_300_500/batch/sge_50.sh | 28 + test/ntuple_qcd_300_500/batch/sge_51.sh | 28 + test/ntuple_qcd_300_500/batch/sge_52.sh | 28 + test/ntuple_qcd_300_500/batch/sge_53.sh | 28 + test/ntuple_qcd_300_500/batch/sge_54.sh | 28 + test/ntuple_qcd_300_500/batch/sge_55.sh | 28 + test/ntuple_qcd_300_500/batch/sge_56.sh | 28 + test/ntuple_qcd_300_500/batch/sge_57.sh | 28 + test/ntuple_qcd_300_500/batch/sge_58.sh | 28 + test/ntuple_qcd_300_500/batch/sge_59.sh | 28 + test/ntuple_qcd_300_500/batch/sge_6.sh | 28 + test/ntuple_qcd_300_500/batch/sge_60.sh | 28 + test/ntuple_qcd_300_500/batch/sge_61.sh | 28 + test/ntuple_qcd_300_500/batch/sge_62.sh | 28 + test/ntuple_qcd_300_500/batch/sge_63.sh | 28 + test/ntuple_qcd_300_500/batch/sge_64.sh | 28 + test/ntuple_qcd_300_500/batch/sge_65.sh | 28 + test/ntuple_qcd_300_500/batch/sge_66.sh | 28 + test/ntuple_qcd_300_500/batch/sge_67.sh | 28 + test/ntuple_qcd_300_500/batch/sge_68.sh | 28 + test/ntuple_qcd_300_500/batch/sge_69.sh | 28 + test/ntuple_qcd_300_500/batch/sge_7.sh | 28 + test/ntuple_qcd_300_500/batch/sge_70.sh | 28 + test/ntuple_qcd_300_500/batch/sge_71.sh | 28 + test/ntuple_qcd_300_500/batch/sge_72.sh | 28 + test/ntuple_qcd_300_500/batch/sge_73.sh | 28 + test/ntuple_qcd_300_500/batch/sge_74.sh | 28 + test/ntuple_qcd_300_500/batch/sge_75.sh | 28 + test/ntuple_qcd_300_500/batch/sge_76.sh | 28 + test/ntuple_qcd_300_500/batch/sge_77.sh | 28 + test/ntuple_qcd_300_500/batch/sge_78.sh | 28 + test/ntuple_qcd_300_500/batch/sge_79.sh | 28 + test/ntuple_qcd_300_500/batch/sge_8.sh | 28 + test/ntuple_qcd_300_500/batch/sge_80.sh | 28 + test/ntuple_qcd_300_500/batch/sge_81.sh | 28 + test/ntuple_qcd_300_500/batch/sge_82.sh | 28 + test/ntuple_qcd_300_500/batch/sge_83.sh | 28 + test/ntuple_qcd_300_500/batch/sge_84.sh | 28 + test/ntuple_qcd_300_500/batch/sge_85.sh | 28 + test/ntuple_qcd_300_500/batch/sge_86.sh | 28 + test/ntuple_qcd_300_500/batch/sge_87.sh | 28 + test/ntuple_qcd_300_500/batch/sge_88.sh | 28 + test/ntuple_qcd_300_500/batch/sge_89.sh | 28 + test/ntuple_qcd_300_500/batch/sge_9.sh | 28 + test/ntuple_qcd_300_500/batch/sge_90.sh | 28 + test/ntuple_qcd_300_500/batch/sge_91.sh | 28 + test/ntuple_qcd_300_500/batch/sge_92.sh | 28 + test/ntuple_qcd_300_500/batch/sge_93.sh | 28 + test/ntuple_qcd_300_500/batch/sge_94.sh | 28 + test/ntuple_qcd_300_500/batch/sge_95.sh | 28 + test/ntuple_qcd_300_500/batch/sge_96.sh | 28 + test/ntuple_qcd_300_500/batch/sge_97.sh | 28 + test/ntuple_qcd_300_500/batch/sge_98.sh | 28 + test/ntuple_qcd_300_500/batch/sge_99.sh | 28 + test/ntuple_qcd_300_500/batchscript.sh | 51 ++ test/ntuple_qcd_300_500/condor.sub | 13 + test/ntuple_qcd_300_500/helper | 1 + test/ntuple_qcd_300_500/output | 1 + test/ntuple_qcd_300_500/sge_sub.sh | 500 ++++++++++++++ test/ntuple_qcd_500_700/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_500_700/batch/condor_0.sub | 13 + test/ntuple_qcd_500_700/batch/condor_1.sub | 13 + test/ntuple_qcd_500_700/batch/condor_10.sub | 13 + test/ntuple_qcd_500_700/batch/condor_100.sub | 13 + test/ntuple_qcd_500_700/batch/condor_101.sub | 13 + test/ntuple_qcd_500_700/batch/condor_102.sub | 13 + test/ntuple_qcd_500_700/batch/condor_103.sub | 13 + test/ntuple_qcd_500_700/batch/condor_104.sub | 13 + test/ntuple_qcd_500_700/batch/condor_105.sub | 13 + test/ntuple_qcd_500_700/batch/condor_106.sub | 13 + test/ntuple_qcd_500_700/batch/condor_107.sub | 13 + test/ntuple_qcd_500_700/batch/condor_108.sub | 13 + test/ntuple_qcd_500_700/batch/condor_109.sub | 13 + test/ntuple_qcd_500_700/batch/condor_11.sub | 13 + test/ntuple_qcd_500_700/batch/condor_110.sub | 13 + test/ntuple_qcd_500_700/batch/condor_111.sub | 13 + test/ntuple_qcd_500_700/batch/condor_112.sub | 13 + test/ntuple_qcd_500_700/batch/condor_113.sub | 13 + test/ntuple_qcd_500_700/batch/condor_114.sub | 13 + test/ntuple_qcd_500_700/batch/condor_115.sub | 13 + test/ntuple_qcd_500_700/batch/condor_116.sub | 13 + test/ntuple_qcd_500_700/batch/condor_117.sub | 13 + test/ntuple_qcd_500_700/batch/condor_12.sub | 13 + test/ntuple_qcd_500_700/batch/condor_13.sub | 13 + test/ntuple_qcd_500_700/batch/condor_14.sub | 13 + test/ntuple_qcd_500_700/batch/condor_15.sub | 13 + test/ntuple_qcd_500_700/batch/condor_16.sub | 13 + test/ntuple_qcd_500_700/batch/condor_17.sub | 13 + test/ntuple_qcd_500_700/batch/condor_18.sub | 13 + test/ntuple_qcd_500_700/batch/condor_19.sub | 13 + test/ntuple_qcd_500_700/batch/condor_2.sub | 13 + test/ntuple_qcd_500_700/batch/condor_20.sub | 13 + test/ntuple_qcd_500_700/batch/condor_21.sub | 13 + test/ntuple_qcd_500_700/batch/condor_22.sub | 13 + test/ntuple_qcd_500_700/batch/condor_23.sub | 13 + test/ntuple_qcd_500_700/batch/condor_24.sub | 13 + test/ntuple_qcd_500_700/batch/condor_25.sub | 13 + test/ntuple_qcd_500_700/batch/condor_26.sub | 13 + test/ntuple_qcd_500_700/batch/condor_27.sub | 13 + test/ntuple_qcd_500_700/batch/condor_28.sub | 13 + test/ntuple_qcd_500_700/batch/condor_29.sub | 13 + test/ntuple_qcd_500_700/batch/condor_3.sub | 13 + test/ntuple_qcd_500_700/batch/condor_30.sub | 13 + test/ntuple_qcd_500_700/batch/condor_31.sub | 13 + test/ntuple_qcd_500_700/batch/condor_32.sub | 13 + test/ntuple_qcd_500_700/batch/condor_33.sub | 13 + test/ntuple_qcd_500_700/batch/condor_34.sub | 13 + test/ntuple_qcd_500_700/batch/condor_35.sub | 13 + test/ntuple_qcd_500_700/batch/condor_36.sub | 13 + test/ntuple_qcd_500_700/batch/condor_37.sub | 13 + test/ntuple_qcd_500_700/batch/condor_38.sub | 13 + test/ntuple_qcd_500_700/batch/condor_39.sub | 13 + test/ntuple_qcd_500_700/batch/condor_4.sub | 13 + test/ntuple_qcd_500_700/batch/condor_40.sub | 13 + test/ntuple_qcd_500_700/batch/condor_41.sub | 13 + test/ntuple_qcd_500_700/batch/condor_42.sub | 13 + test/ntuple_qcd_500_700/batch/condor_43.sub | 13 + test/ntuple_qcd_500_700/batch/condor_44.sub | 13 + test/ntuple_qcd_500_700/batch/condor_45.sub | 13 + test/ntuple_qcd_500_700/batch/condor_46.sub | 13 + test/ntuple_qcd_500_700/batch/condor_47.sub | 13 + test/ntuple_qcd_500_700/batch/condor_48.sub | 13 + test/ntuple_qcd_500_700/batch/condor_49.sub | 13 + test/ntuple_qcd_500_700/batch/condor_5.sub | 13 + test/ntuple_qcd_500_700/batch/condor_50.sub | 13 + test/ntuple_qcd_500_700/batch/condor_51.sub | 13 + test/ntuple_qcd_500_700/batch/condor_52.sub | 13 + test/ntuple_qcd_500_700/batch/condor_53.sub | 13 + test/ntuple_qcd_500_700/batch/condor_54.sub | 13 + test/ntuple_qcd_500_700/batch/condor_55.sub | 13 + test/ntuple_qcd_500_700/batch/condor_56.sub | 13 + test/ntuple_qcd_500_700/batch/condor_57.sub | 13 + test/ntuple_qcd_500_700/batch/condor_58.sub | 13 + test/ntuple_qcd_500_700/batch/condor_59.sub | 13 + test/ntuple_qcd_500_700/batch/condor_6.sub | 13 + test/ntuple_qcd_500_700/batch/condor_60.sub | 13 + test/ntuple_qcd_500_700/batch/condor_61.sub | 13 + test/ntuple_qcd_500_700/batch/condor_62.sub | 13 + test/ntuple_qcd_500_700/batch/condor_63.sub | 13 + test/ntuple_qcd_500_700/batch/condor_64.sub | 13 + test/ntuple_qcd_500_700/batch/condor_65.sub | 13 + test/ntuple_qcd_500_700/batch/condor_66.sub | 13 + test/ntuple_qcd_500_700/batch/condor_67.sub | 13 + test/ntuple_qcd_500_700/batch/condor_68.sub | 13 + test/ntuple_qcd_500_700/batch/condor_69.sub | 13 + test/ntuple_qcd_500_700/batch/condor_7.sub | 13 + test/ntuple_qcd_500_700/batch/condor_70.sub | 13 + test/ntuple_qcd_500_700/batch/condor_71.sub | 13 + test/ntuple_qcd_500_700/batch/condor_72.sub | 13 + test/ntuple_qcd_500_700/batch/condor_73.sub | 13 + test/ntuple_qcd_500_700/batch/condor_74.sub | 13 + test/ntuple_qcd_500_700/batch/condor_75.sub | 13 + test/ntuple_qcd_500_700/batch/condor_76.sub | 13 + test/ntuple_qcd_500_700/batch/condor_77.sub | 13 + test/ntuple_qcd_500_700/batch/condor_78.sub | 13 + test/ntuple_qcd_500_700/batch/condor_79.sub | 13 + test/ntuple_qcd_500_700/batch/condor_8.sub | 13 + test/ntuple_qcd_500_700/batch/condor_80.sub | 13 + test/ntuple_qcd_500_700/batch/condor_81.sub | 13 + test/ntuple_qcd_500_700/batch/condor_82.sub | 13 + test/ntuple_qcd_500_700/batch/condor_83.sub | 13 + test/ntuple_qcd_500_700/batch/condor_84.sub | 13 + test/ntuple_qcd_500_700/batch/condor_85.sub | 13 + test/ntuple_qcd_500_700/batch/condor_86.sub | 13 + test/ntuple_qcd_500_700/batch/condor_87.sub | 13 + test/ntuple_qcd_500_700/batch/condor_88.sub | 13 + test/ntuple_qcd_500_700/batch/condor_89.sub | 13 + test/ntuple_qcd_500_700/batch/condor_9.sub | 13 + test/ntuple_qcd_500_700/batch/condor_90.sub | 13 + test/ntuple_qcd_500_700/batch/condor_91.sub | 13 + test/ntuple_qcd_500_700/batch/condor_92.sub | 13 + test/ntuple_qcd_500_700/batch/condor_93.sub | 13 + test/ntuple_qcd_500_700/batch/condor_94.sub | 13 + test/ntuple_qcd_500_700/batch/condor_95.sub | 13 + test/ntuple_qcd_500_700/batch/condor_96.sub | 13 + test/ntuple_qcd_500_700/batch/condor_97.sub | 13 + test/ntuple_qcd_500_700/batch/condor_98.sub | 13 + test/ntuple_qcd_500_700/batch/condor_99.sub | 13 + test/ntuple_qcd_500_700/batch/nJobs.118 | 0 test/ntuple_qcd_500_700/batch/sge_0.sh | 28 + test/ntuple_qcd_500_700/batch/sge_1.sh | 28 + test/ntuple_qcd_500_700/batch/sge_10.sh | 28 + test/ntuple_qcd_500_700/batch/sge_100.sh | 28 + test/ntuple_qcd_500_700/batch/sge_101.sh | 28 + test/ntuple_qcd_500_700/batch/sge_102.sh | 28 + test/ntuple_qcd_500_700/batch/sge_103.sh | 28 + test/ntuple_qcd_500_700/batch/sge_104.sh | 28 + test/ntuple_qcd_500_700/batch/sge_105.sh | 28 + test/ntuple_qcd_500_700/batch/sge_106.sh | 28 + test/ntuple_qcd_500_700/batch/sge_107.sh | 28 + test/ntuple_qcd_500_700/batch/sge_108.sh | 28 + test/ntuple_qcd_500_700/batch/sge_109.sh | 28 + test/ntuple_qcd_500_700/batch/sge_11.sh | 28 + test/ntuple_qcd_500_700/batch/sge_110.sh | 28 + test/ntuple_qcd_500_700/batch/sge_111.sh | 28 + test/ntuple_qcd_500_700/batch/sge_112.sh | 28 + test/ntuple_qcd_500_700/batch/sge_113.sh | 28 + test/ntuple_qcd_500_700/batch/sge_114.sh | 28 + test/ntuple_qcd_500_700/batch/sge_115.sh | 28 + test/ntuple_qcd_500_700/batch/sge_116.sh | 28 + test/ntuple_qcd_500_700/batch/sge_117.sh | 28 + test/ntuple_qcd_500_700/batch/sge_12.sh | 28 + test/ntuple_qcd_500_700/batch/sge_13.sh | 28 + test/ntuple_qcd_500_700/batch/sge_14.sh | 28 + test/ntuple_qcd_500_700/batch/sge_15.sh | 28 + test/ntuple_qcd_500_700/batch/sge_16.sh | 28 + test/ntuple_qcd_500_700/batch/sge_17.sh | 28 + test/ntuple_qcd_500_700/batch/sge_18.sh | 28 + test/ntuple_qcd_500_700/batch/sge_19.sh | 28 + test/ntuple_qcd_500_700/batch/sge_2.sh | 28 + test/ntuple_qcd_500_700/batch/sge_20.sh | 28 + test/ntuple_qcd_500_700/batch/sge_21.sh | 28 + test/ntuple_qcd_500_700/batch/sge_22.sh | 28 + test/ntuple_qcd_500_700/batch/sge_23.sh | 28 + test/ntuple_qcd_500_700/batch/sge_24.sh | 28 + test/ntuple_qcd_500_700/batch/sge_25.sh | 28 + test/ntuple_qcd_500_700/batch/sge_26.sh | 28 + test/ntuple_qcd_500_700/batch/sge_27.sh | 28 + test/ntuple_qcd_500_700/batch/sge_28.sh | 28 + test/ntuple_qcd_500_700/batch/sge_29.sh | 28 + test/ntuple_qcd_500_700/batch/sge_3.sh | 28 + test/ntuple_qcd_500_700/batch/sge_30.sh | 28 + test/ntuple_qcd_500_700/batch/sge_31.sh | 28 + test/ntuple_qcd_500_700/batch/sge_32.sh | 28 + test/ntuple_qcd_500_700/batch/sge_33.sh | 28 + test/ntuple_qcd_500_700/batch/sge_34.sh | 28 + test/ntuple_qcd_500_700/batch/sge_35.sh | 28 + test/ntuple_qcd_500_700/batch/sge_36.sh | 28 + test/ntuple_qcd_500_700/batch/sge_37.sh | 28 + test/ntuple_qcd_500_700/batch/sge_38.sh | 28 + test/ntuple_qcd_500_700/batch/sge_39.sh | 28 + test/ntuple_qcd_500_700/batch/sge_4.sh | 28 + test/ntuple_qcd_500_700/batch/sge_40.sh | 28 + test/ntuple_qcd_500_700/batch/sge_41.sh | 28 + test/ntuple_qcd_500_700/batch/sge_42.sh | 28 + test/ntuple_qcd_500_700/batch/sge_43.sh | 28 + test/ntuple_qcd_500_700/batch/sge_44.sh | 28 + test/ntuple_qcd_500_700/batch/sge_45.sh | 28 + test/ntuple_qcd_500_700/batch/sge_46.sh | 28 + test/ntuple_qcd_500_700/batch/sge_47.sh | 28 + test/ntuple_qcd_500_700/batch/sge_48.sh | 28 + test/ntuple_qcd_500_700/batch/sge_49.sh | 28 + test/ntuple_qcd_500_700/batch/sge_5.sh | 28 + test/ntuple_qcd_500_700/batch/sge_50.sh | 28 + test/ntuple_qcd_500_700/batch/sge_51.sh | 28 + test/ntuple_qcd_500_700/batch/sge_52.sh | 28 + test/ntuple_qcd_500_700/batch/sge_53.sh | 28 + test/ntuple_qcd_500_700/batch/sge_54.sh | 28 + test/ntuple_qcd_500_700/batch/sge_55.sh | 28 + test/ntuple_qcd_500_700/batch/sge_56.sh | 28 + test/ntuple_qcd_500_700/batch/sge_57.sh | 28 + test/ntuple_qcd_500_700/batch/sge_58.sh | 28 + test/ntuple_qcd_500_700/batch/sge_59.sh | 28 + test/ntuple_qcd_500_700/batch/sge_6.sh | 28 + test/ntuple_qcd_500_700/batch/sge_60.sh | 28 + test/ntuple_qcd_500_700/batch/sge_61.sh | 28 + test/ntuple_qcd_500_700/batch/sge_62.sh | 28 + test/ntuple_qcd_500_700/batch/sge_63.sh | 28 + test/ntuple_qcd_500_700/batch/sge_64.sh | 28 + test/ntuple_qcd_500_700/batch/sge_65.sh | 28 + test/ntuple_qcd_500_700/batch/sge_66.sh | 28 + test/ntuple_qcd_500_700/batch/sge_67.sh | 28 + test/ntuple_qcd_500_700/batch/sge_68.sh | 28 + test/ntuple_qcd_500_700/batch/sge_69.sh | 28 + test/ntuple_qcd_500_700/batch/sge_7.sh | 28 + test/ntuple_qcd_500_700/batch/sge_70.sh | 28 + test/ntuple_qcd_500_700/batch/sge_71.sh | 28 + test/ntuple_qcd_500_700/batch/sge_72.sh | 28 + test/ntuple_qcd_500_700/batch/sge_73.sh | 28 + test/ntuple_qcd_500_700/batch/sge_74.sh | 28 + test/ntuple_qcd_500_700/batch/sge_75.sh | 28 + test/ntuple_qcd_500_700/batch/sge_76.sh | 28 + test/ntuple_qcd_500_700/batch/sge_77.sh | 28 + test/ntuple_qcd_500_700/batch/sge_78.sh | 28 + test/ntuple_qcd_500_700/batch/sge_79.sh | 28 + test/ntuple_qcd_500_700/batch/sge_8.sh | 28 + test/ntuple_qcd_500_700/batch/sge_80.sh | 28 + test/ntuple_qcd_500_700/batch/sge_81.sh | 28 + test/ntuple_qcd_500_700/batch/sge_82.sh | 28 + test/ntuple_qcd_500_700/batch/sge_83.sh | 28 + test/ntuple_qcd_500_700/batch/sge_84.sh | 28 + test/ntuple_qcd_500_700/batch/sge_85.sh | 28 + test/ntuple_qcd_500_700/batch/sge_86.sh | 28 + test/ntuple_qcd_500_700/batch/sge_87.sh | 28 + test/ntuple_qcd_500_700/batch/sge_88.sh | 28 + test/ntuple_qcd_500_700/batch/sge_89.sh | 28 + test/ntuple_qcd_500_700/batch/sge_9.sh | 28 + test/ntuple_qcd_500_700/batch/sge_90.sh | 28 + test/ntuple_qcd_500_700/batch/sge_91.sh | 28 + test/ntuple_qcd_500_700/batch/sge_92.sh | 28 + test/ntuple_qcd_500_700/batch/sge_93.sh | 28 + test/ntuple_qcd_500_700/batch/sge_94.sh | 28 + test/ntuple_qcd_500_700/batch/sge_95.sh | 28 + test/ntuple_qcd_500_700/batch/sge_96.sh | 28 + test/ntuple_qcd_500_700/batch/sge_97.sh | 28 + test/ntuple_qcd_500_700/batch/sge_98.sh | 28 + test/ntuple_qcd_500_700/batch/sge_99.sh | 28 + test/ntuple_qcd_500_700/batchscript.sh | 51 ++ test/ntuple_qcd_500_700/condor.sub | 13 + test/ntuple_qcd_500_700/helper | 1 + test/ntuple_qcd_500_700/output | 1 + test/ntuple_qcd_500_700/sge_sub.sh | 118 ++++ test/ntuple_qcd_700_1000/ademoor.cc | Bin 0 -> 5609 bytes test/ntuple_qcd_700_1000/batch/condor_0.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_1.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_10.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_100.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_101.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_102.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_103.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_104.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_105.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_106.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_107.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_108.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_109.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_11.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_110.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_111.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_112.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_113.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_114.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_115.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_116.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_117.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_118.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_119.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_12.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_120.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_121.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_122.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_123.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_124.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_125.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_126.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_127.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_128.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_129.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_13.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_130.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_131.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_132.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_133.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_134.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_135.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_136.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_137.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_138.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_139.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_14.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_140.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_141.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_142.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_143.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_144.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_145.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_146.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_147.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_148.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_149.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_15.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_150.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_151.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_152.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_153.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_154.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_155.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_156.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_157.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_158.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_159.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_16.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_160.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_161.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_162.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_163.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_164.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_165.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_166.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_167.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_168.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_169.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_17.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_170.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_171.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_172.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_173.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_174.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_175.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_176.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_177.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_178.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_179.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_18.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_180.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_181.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_182.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_183.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_184.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_185.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_186.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_187.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_188.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_189.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_19.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_190.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_191.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_192.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_193.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_194.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_195.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_196.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_197.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_198.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_199.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_2.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_20.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_200.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_201.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_202.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_203.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_204.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_205.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_206.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_207.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_208.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_209.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_21.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_210.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_211.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_212.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_213.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_214.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_215.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_216.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_217.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_218.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_219.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_22.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_220.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_221.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_222.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_223.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_224.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_225.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_226.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_227.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_228.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_229.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_23.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_230.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_231.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_232.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_233.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_234.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_235.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_236.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_237.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_238.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_239.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_24.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_240.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_241.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_242.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_243.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_244.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_245.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_246.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_247.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_248.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_249.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_25.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_250.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_251.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_252.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_253.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_254.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_255.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_256.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_257.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_258.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_259.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_26.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_260.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_261.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_262.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_263.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_264.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_265.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_266.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_267.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_268.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_269.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_27.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_270.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_271.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_272.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_273.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_274.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_275.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_276.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_277.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_278.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_279.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_28.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_280.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_281.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_282.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_283.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_284.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_285.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_286.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_287.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_288.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_289.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_29.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_290.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_291.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_292.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_293.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_294.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_295.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_296.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_297.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_298.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_299.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_3.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_30.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_300.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_301.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_302.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_303.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_304.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_305.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_306.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_307.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_308.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_309.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_31.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_310.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_311.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_312.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_313.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_314.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_315.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_316.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_317.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_318.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_319.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_32.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_320.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_321.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_322.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_323.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_324.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_325.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_326.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_327.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_328.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_329.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_33.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_330.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_331.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_332.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_333.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_334.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_335.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_336.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_337.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_338.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_339.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_34.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_340.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_341.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_342.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_343.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_344.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_345.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_346.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_347.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_348.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_349.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_35.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_350.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_351.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_352.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_353.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_354.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_355.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_356.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_357.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_358.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_359.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_36.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_360.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_361.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_362.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_363.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_364.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_365.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_366.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_367.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_368.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_369.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_37.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_370.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_371.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_372.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_373.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_374.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_375.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_376.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_377.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_378.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_379.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_38.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_380.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_381.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_382.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_383.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_384.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_385.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_386.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_387.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_388.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_389.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_39.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_390.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_391.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_392.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_393.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_394.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_395.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_396.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_397.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_398.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_399.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_4.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_40.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_400.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_401.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_402.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_403.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_404.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_405.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_406.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_407.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_408.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_409.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_41.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_410.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_411.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_412.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_413.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_414.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_415.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_416.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_417.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_418.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_419.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_42.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_420.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_421.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_422.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_423.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_424.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_425.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_426.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_427.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_428.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_429.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_43.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_430.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_431.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_432.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_433.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_434.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_435.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_436.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_437.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_438.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_439.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_44.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_440.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_441.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_442.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_443.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_444.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_445.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_446.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_447.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_448.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_449.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_45.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_450.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_451.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_452.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_453.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_454.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_455.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_456.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_457.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_458.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_459.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_46.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_460.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_461.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_462.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_463.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_464.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_465.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_466.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_467.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_468.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_469.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_47.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_470.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_471.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_472.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_473.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_474.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_475.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_476.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_477.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_478.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_479.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_48.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_480.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_481.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_482.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_483.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_484.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_485.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_486.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_487.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_488.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_489.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_49.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_490.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_491.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_492.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_493.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_494.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_495.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_496.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_497.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_498.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_499.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_5.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_50.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_51.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_52.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_53.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_54.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_55.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_56.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_57.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_58.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_59.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_6.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_60.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_61.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_62.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_63.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_64.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_65.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_66.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_67.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_68.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_69.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_7.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_70.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_71.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_72.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_73.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_74.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_75.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_76.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_77.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_78.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_79.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_8.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_80.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_81.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_82.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_83.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_84.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_85.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_86.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_87.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_88.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_89.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_9.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_90.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_91.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_92.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_93.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_94.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_95.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_96.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_97.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_98.sub | 13 + test/ntuple_qcd_700_1000/batch/condor_99.sub | 13 + test/ntuple_qcd_700_1000/batch/nJobs.500 | 0 test/ntuple_qcd_700_1000/batch/sge_0.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_1.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_10.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_100.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_101.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_102.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_103.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_104.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_105.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_106.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_107.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_108.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_109.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_11.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_110.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_111.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_112.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_113.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_114.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_115.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_116.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_117.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_118.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_119.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_12.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_120.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_121.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_122.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_123.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_124.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_125.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_126.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_127.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_128.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_129.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_13.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_130.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_131.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_132.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_133.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_134.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_135.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_136.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_137.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_138.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_139.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_14.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_140.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_141.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_142.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_143.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_144.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_145.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_146.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_147.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_148.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_149.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_15.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_150.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_151.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_152.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_153.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_154.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_155.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_156.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_157.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_158.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_159.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_16.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_160.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_161.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_162.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_163.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_164.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_165.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_166.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_167.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_168.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_169.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_17.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_170.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_171.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_172.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_173.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_174.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_175.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_176.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_177.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_178.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_179.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_18.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_180.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_181.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_182.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_183.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_184.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_185.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_186.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_187.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_188.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_189.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_19.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_190.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_191.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_192.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_193.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_194.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_195.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_196.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_197.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_198.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_199.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_2.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_20.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_200.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_201.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_202.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_203.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_204.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_205.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_206.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_207.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_208.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_209.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_21.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_210.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_211.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_212.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_213.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_214.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_215.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_216.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_217.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_218.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_219.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_22.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_220.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_221.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_222.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_223.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_224.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_225.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_226.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_227.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_228.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_229.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_23.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_230.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_231.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_232.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_233.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_234.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_235.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_236.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_237.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_238.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_239.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_24.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_240.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_241.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_242.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_243.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_244.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_245.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_246.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_247.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_248.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_249.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_25.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_250.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_251.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_252.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_253.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_254.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_255.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_256.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_257.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_258.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_259.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_26.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_260.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_261.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_262.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_263.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_264.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_265.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_266.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_267.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_268.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_269.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_27.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_270.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_271.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_272.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_273.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_274.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_275.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_276.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_277.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_278.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_279.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_28.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_280.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_281.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_282.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_283.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_284.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_285.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_286.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_287.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_288.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_289.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_29.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_290.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_291.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_292.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_293.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_294.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_295.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_296.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_297.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_298.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_299.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_3.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_30.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_300.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_301.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_302.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_303.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_304.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_305.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_306.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_307.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_308.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_309.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_31.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_310.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_311.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_312.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_313.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_314.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_315.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_316.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_317.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_318.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_319.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_32.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_320.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_321.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_322.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_323.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_324.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_325.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_326.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_327.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_328.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_329.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_33.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_330.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_331.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_332.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_333.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_334.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_335.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_336.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_337.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_338.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_339.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_34.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_340.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_341.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_342.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_343.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_344.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_345.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_346.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_347.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_348.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_349.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_35.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_350.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_351.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_352.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_353.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_354.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_355.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_356.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_357.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_358.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_359.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_36.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_360.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_361.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_362.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_363.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_364.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_365.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_366.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_367.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_368.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_369.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_37.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_370.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_371.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_372.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_373.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_374.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_375.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_376.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_377.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_378.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_379.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_38.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_380.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_381.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_382.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_383.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_384.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_385.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_386.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_387.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_388.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_389.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_39.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_390.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_391.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_392.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_393.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_394.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_395.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_396.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_397.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_398.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_399.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_4.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_40.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_400.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_401.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_402.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_403.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_404.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_405.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_406.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_407.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_408.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_409.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_41.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_410.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_411.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_412.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_413.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_414.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_415.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_416.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_417.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_418.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_419.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_42.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_420.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_421.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_422.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_423.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_424.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_425.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_426.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_427.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_428.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_429.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_43.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_430.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_431.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_432.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_433.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_434.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_435.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_436.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_437.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_438.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_439.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_44.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_440.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_441.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_442.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_443.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_444.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_445.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_446.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_447.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_448.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_449.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_45.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_450.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_451.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_452.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_453.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_454.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_455.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_456.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_457.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_458.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_459.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_46.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_460.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_461.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_462.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_463.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_464.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_465.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_466.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_467.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_468.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_469.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_47.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_470.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_471.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_472.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_473.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_474.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_475.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_476.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_477.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_478.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_479.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_48.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_480.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_481.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_482.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_483.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_484.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_485.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_486.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_487.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_488.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_489.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_49.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_490.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_491.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_492.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_493.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_494.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_495.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_496.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_497.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_498.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_499.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_5.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_50.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_51.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_52.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_53.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_54.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_55.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_56.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_57.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_58.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_59.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_6.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_60.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_61.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_62.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_63.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_64.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_65.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_66.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_67.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_68.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_69.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_7.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_70.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_71.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_72.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_73.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_74.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_75.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_76.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_77.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_78.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_79.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_8.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_80.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_81.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_82.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_83.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_84.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_85.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_86.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_87.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_88.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_89.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_9.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_90.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_91.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_92.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_93.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_94.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_95.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_96.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_97.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_98.sh | 28 + test/ntuple_qcd_700_1000/batch/sge_99.sh | 28 + test/ntuple_qcd_700_1000/batchscript.sh | 51 ++ test/ntuple_qcd_700_1000/condor.sub | 13 + test/ntuple_qcd_700_1000/helper | 1 + test/ntuple_qcd_700_1000/output | 1 + test/ntuple_qcd_700_1000/sge_sub.sh | 500 ++++++++++++++ 6274 files changed, 131732 insertions(+), 83 deletions(-) create mode 100644 DeepNtuplizer/production/DV_small.cfg create mode 100644 test/DeepNtuplizer.py create mode 100644 test/ntuple_bulk_grav_1/ademoor.cc create mode 100644 test/ntuple_bulk_grav_1/batch/condor_0.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_1.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_10.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_100.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_101.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_102.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_103.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_104.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_105.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_106.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_107.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_108.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_109.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_11.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_110.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_111.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_112.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_113.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_114.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_115.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_116.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_117.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_118.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_119.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_12.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_120.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_121.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_122.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_123.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_124.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_125.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_126.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_127.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_128.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_129.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_13.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_130.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_131.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_132.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_133.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_134.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_135.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_136.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_137.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_138.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_139.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_14.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_140.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_141.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_142.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_143.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_144.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_145.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_146.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_147.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_148.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_149.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_15.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_150.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_151.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_152.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_153.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_154.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_155.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_156.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_157.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_158.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_159.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_16.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_160.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_161.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_162.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_163.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_164.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_165.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_166.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_167.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_168.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_169.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_17.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_170.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_171.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_172.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_173.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_174.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_175.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_176.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_177.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_178.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_179.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_18.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_180.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_181.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_182.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_183.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_184.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_185.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_186.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_187.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_188.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_189.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_19.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_190.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_191.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_192.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_193.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_194.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_195.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_196.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_197.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_198.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_199.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_2.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_20.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_200.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_201.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_21.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_22.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_23.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_24.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_25.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_26.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_27.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_28.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_29.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_3.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_30.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_31.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_32.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_33.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_34.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_35.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_36.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_37.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_38.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_39.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_4.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_40.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_41.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_42.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_43.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_44.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_45.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_46.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_47.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_48.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_49.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_5.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_50.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_51.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_52.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_53.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_54.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_55.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_56.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_57.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_58.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_59.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_6.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_60.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_61.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_62.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_63.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_64.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_65.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_66.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_67.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_68.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_69.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_7.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_70.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_71.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_72.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_73.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_74.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_75.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_76.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_77.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_78.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_79.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_8.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_80.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_81.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_82.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_83.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_84.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_85.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_86.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_87.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_88.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_89.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_9.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_90.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_91.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_92.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_93.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_94.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_95.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_96.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_97.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_98.sub create mode 100644 test/ntuple_bulk_grav_1/batch/condor_99.sub create mode 100644 test/ntuple_bulk_grav_1/batch/nJobs.202 create mode 100755 test/ntuple_bulk_grav_1/batch/sge_0.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_1.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_10.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_100.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_101.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_102.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_103.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_104.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_105.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_106.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_107.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_108.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_109.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_11.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_110.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_111.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_112.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_113.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_114.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_115.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_116.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_117.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_118.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_119.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_12.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_120.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_121.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_122.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_123.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_124.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_125.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_126.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_127.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_128.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_129.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_13.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_130.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_131.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_132.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_133.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_134.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_135.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_136.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_137.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_138.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_139.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_14.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_140.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_141.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_142.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_143.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_144.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_145.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_146.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_147.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_148.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_149.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_15.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_150.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_151.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_152.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_153.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_154.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_155.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_156.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_157.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_158.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_159.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_16.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_160.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_161.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_162.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_163.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_164.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_165.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_166.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_167.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_168.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_169.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_17.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_170.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_171.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_172.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_173.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_174.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_175.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_176.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_177.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_178.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_179.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_18.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_180.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_181.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_182.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_183.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_184.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_185.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_186.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_187.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_188.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_189.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_19.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_190.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_191.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_192.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_193.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_194.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_195.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_196.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_197.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_198.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_199.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_2.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_20.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_200.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_201.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_21.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_22.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_23.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_24.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_25.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_26.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_27.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_28.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_29.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_3.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_30.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_31.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_32.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_33.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_34.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_35.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_36.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_37.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_38.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_39.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_4.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_40.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_41.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_42.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_43.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_44.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_45.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_46.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_47.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_48.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_49.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_5.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_50.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_51.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_52.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_53.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_54.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_55.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_56.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_57.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_58.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_59.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_6.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_60.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_61.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_62.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_63.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_64.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_65.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_66.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_67.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_68.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_69.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_7.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_70.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_71.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_72.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_73.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_74.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_75.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_76.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_77.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_78.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_79.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_8.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_80.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_81.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_82.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_83.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_84.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_85.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_86.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_87.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_88.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_89.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_9.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_90.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_91.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_92.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_93.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_94.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_95.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_96.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_97.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_98.sh create mode 100755 test/ntuple_bulk_grav_1/batch/sge_99.sh create mode 100755 test/ntuple_bulk_grav_1/batchscript.sh create mode 100644 test/ntuple_bulk_grav_1/condor.sub create mode 120000 test/ntuple_bulk_grav_1/helper create mode 120000 test/ntuple_bulk_grav_1/output create mode 100755 test/ntuple_bulk_grav_1/sge_sub.sh create mode 100644 test/ntuple_bulk_grav_2/ademoor.cc create mode 100644 test/ntuple_bulk_grav_2/batch/condor_0.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_1.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_10.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_100.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_101.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_102.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_103.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_104.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_105.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_106.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_107.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_108.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_109.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_11.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_110.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_111.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_112.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_113.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_114.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_115.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_116.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_117.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_118.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_119.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_12.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_120.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_121.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_122.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_123.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_124.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_125.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_126.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_127.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_128.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_129.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_13.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_130.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_131.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_132.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_133.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_134.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_135.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_136.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_137.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_138.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_139.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_14.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_140.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_141.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_142.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_143.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_144.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_145.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_146.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_147.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_148.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_149.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_15.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_150.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_151.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_152.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_153.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_154.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_155.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_156.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_157.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_158.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_159.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_16.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_160.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_161.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_162.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_163.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_164.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_165.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_166.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_167.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_168.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_169.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_17.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_170.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_171.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_172.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_173.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_174.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_175.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_176.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_177.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_178.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_179.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_18.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_19.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_2.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_20.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_21.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_22.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_23.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_24.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_25.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_26.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_27.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_28.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_29.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_3.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_30.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_31.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_32.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_33.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_34.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_35.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_36.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_37.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_38.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_39.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_4.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_40.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_41.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_42.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_43.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_44.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_45.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_46.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_47.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_48.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_49.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_5.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_50.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_51.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_52.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_53.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_54.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_55.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_56.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_57.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_58.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_59.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_6.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_60.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_61.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_62.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_63.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_64.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_65.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_66.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_67.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_68.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_69.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_7.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_70.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_71.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_72.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_73.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_74.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_75.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_76.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_77.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_78.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_79.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_8.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_80.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_81.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_82.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_83.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_84.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_85.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_86.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_87.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_88.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_89.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_9.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_90.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_91.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_92.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_93.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_94.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_95.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_96.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_97.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_98.sub create mode 100644 test/ntuple_bulk_grav_2/batch/condor_99.sub create mode 100644 test/ntuple_bulk_grav_2/batch/nJobs.180 create mode 100755 test/ntuple_bulk_grav_2/batch/sge_0.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_1.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_10.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_100.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_101.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_102.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_103.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_104.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_105.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_106.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_107.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_108.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_109.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_11.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_110.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_111.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_112.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_113.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_114.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_115.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_116.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_117.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_118.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_119.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_12.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_120.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_121.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_122.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_123.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_124.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_125.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_126.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_127.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_128.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_129.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_13.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_130.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_131.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_132.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_133.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_134.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_135.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_136.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_137.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_138.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_139.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_14.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_140.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_141.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_142.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_143.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_144.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_145.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_146.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_147.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_148.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_149.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_15.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_150.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_151.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_152.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_153.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_154.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_155.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_156.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_157.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_158.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_159.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_16.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_160.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_161.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_162.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_163.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_164.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_165.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_166.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_167.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_168.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_169.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_17.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_170.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_171.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_172.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_173.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_174.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_175.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_176.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_177.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_178.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_179.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_18.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_19.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_2.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_20.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_21.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_22.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_23.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_24.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_25.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_26.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_27.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_28.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_29.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_3.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_30.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_31.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_32.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_33.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_34.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_35.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_36.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_37.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_38.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_39.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_4.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_40.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_41.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_42.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_43.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_44.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_45.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_46.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_47.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_48.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_49.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_5.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_50.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_51.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_52.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_53.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_54.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_55.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_56.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_57.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_58.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_59.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_6.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_60.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_61.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_62.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_63.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_64.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_65.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_66.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_67.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_68.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_69.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_7.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_70.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_71.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_72.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_73.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_74.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_75.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_76.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_77.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_78.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_79.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_8.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_80.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_81.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_82.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_83.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_84.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_85.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_86.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_87.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_88.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_89.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_9.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_90.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_91.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_92.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_93.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_94.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_95.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_96.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_97.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_98.sh create mode 100755 test/ntuple_bulk_grav_2/batch/sge_99.sh create mode 100755 test/ntuple_bulk_grav_2/batchscript.sh create mode 100644 test/ntuple_bulk_grav_2/condor.sub create mode 120000 test/ntuple_bulk_grav_2/helper create mode 120000 test/ntuple_bulk_grav_2/output create mode 100755 test/ntuple_bulk_grav_2/sge_sub.sh create mode 100644 test/ntuple_bulk_grav_3/ademoor.cc create mode 100644 test/ntuple_bulk_grav_3/batch/condor_0.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_1.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_10.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_100.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_101.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_102.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_103.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_104.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_105.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_106.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_107.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_108.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_109.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_11.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_110.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_111.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_112.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_113.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_114.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_115.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_116.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_117.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_118.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_119.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_12.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_120.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_121.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_122.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_123.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_124.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_125.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_126.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_127.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_128.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_129.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_13.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_130.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_131.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_132.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_133.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_134.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_135.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_136.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_137.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_138.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_139.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_14.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_140.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_141.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_142.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_143.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_144.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_145.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_146.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_147.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_148.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_149.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_15.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_150.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_151.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_152.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_153.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_154.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_155.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_156.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_157.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_158.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_159.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_16.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_160.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_161.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_162.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_163.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_164.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_165.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_166.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_167.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_168.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_169.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_17.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_170.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_171.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_172.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_173.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_174.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_175.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_176.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_177.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_178.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_179.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_18.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_180.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_181.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_182.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_19.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_2.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_20.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_21.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_22.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_23.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_24.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_25.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_26.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_27.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_28.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_29.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_3.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_30.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_31.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_32.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_33.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_34.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_35.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_36.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_37.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_38.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_39.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_4.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_40.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_41.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_42.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_43.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_44.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_45.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_46.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_47.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_48.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_49.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_5.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_50.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_51.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_52.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_53.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_54.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_55.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_56.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_57.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_58.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_59.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_6.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_60.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_61.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_62.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_63.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_64.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_65.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_66.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_67.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_68.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_69.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_7.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_70.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_71.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_72.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_73.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_74.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_75.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_76.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_77.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_78.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_79.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_8.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_80.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_81.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_82.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_83.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_84.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_85.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_86.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_87.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_88.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_89.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_9.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_90.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_91.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_92.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_93.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_94.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_95.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_96.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_97.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_98.sub create mode 100644 test/ntuple_bulk_grav_3/batch/condor_99.sub create mode 100644 test/ntuple_bulk_grav_3/batch/nJobs.183 create mode 100755 test/ntuple_bulk_grav_3/batch/sge_0.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_1.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_10.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_100.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_101.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_102.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_103.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_104.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_105.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_106.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_107.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_108.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_109.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_11.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_110.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_111.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_112.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_113.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_114.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_115.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_116.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_117.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_118.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_119.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_12.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_120.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_121.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_122.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_123.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_124.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_125.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_126.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_127.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_128.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_129.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_13.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_130.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_131.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_132.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_133.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_134.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_135.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_136.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_137.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_138.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_139.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_14.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_140.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_141.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_142.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_143.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_144.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_145.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_146.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_147.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_148.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_149.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_15.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_150.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_151.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_152.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_153.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_154.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_155.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_156.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_157.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_158.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_159.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_16.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_160.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_161.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_162.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_163.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_164.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_165.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_166.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_167.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_168.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_169.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_17.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_170.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_171.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_172.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_173.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_174.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_175.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_176.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_177.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_178.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_179.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_18.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_180.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_181.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_182.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_19.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_2.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_20.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_21.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_22.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_23.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_24.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_25.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_26.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_27.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_28.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_29.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_3.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_30.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_31.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_32.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_33.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_34.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_35.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_36.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_37.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_38.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_39.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_4.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_40.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_41.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_42.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_43.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_44.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_45.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_46.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_47.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_48.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_49.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_5.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_50.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_51.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_52.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_53.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_54.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_55.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_56.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_57.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_58.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_59.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_6.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_60.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_61.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_62.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_63.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_64.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_65.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_66.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_67.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_68.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_69.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_7.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_70.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_71.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_72.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_73.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_74.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_75.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_76.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_77.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_78.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_79.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_8.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_80.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_81.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_82.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_83.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_84.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_85.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_86.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_87.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_88.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_89.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_9.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_90.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_91.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_92.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_93.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_94.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_95.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_96.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_97.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_98.sh create mode 100755 test/ntuple_bulk_grav_3/batch/sge_99.sh create mode 100755 test/ntuple_bulk_grav_3/batchscript.sh create mode 100644 test/ntuple_bulk_grav_3/condor.sub create mode 120000 test/ntuple_bulk_grav_3/helper create mode 120000 test/ntuple_bulk_grav_3/output create mode 100755 test/ntuple_bulk_grav_3/sge_sub.sh create mode 100644 test/ntuple_qcd_1000_1500/ademoor.cc create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_0.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_1.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_10.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_100.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_101.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_102.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_103.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_104.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_105.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_106.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_107.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_108.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_109.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_11.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_110.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_111.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_112.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_113.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_114.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_115.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_116.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_117.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_118.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_119.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_12.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_120.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_121.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_122.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_123.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_124.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_125.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_126.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_127.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_128.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_129.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_13.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_130.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_131.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_132.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_133.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_134.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_135.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_136.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_137.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_138.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_139.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_14.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_140.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_141.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_142.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_143.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_144.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_145.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_146.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_147.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_148.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_149.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_15.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_150.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_151.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_152.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_153.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_154.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_155.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_156.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_157.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_158.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_159.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_16.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_160.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_161.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_162.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_163.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_164.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_165.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_166.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_167.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_168.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_169.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_17.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_170.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_171.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_172.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_173.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_174.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_175.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_176.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_177.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_178.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_179.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_18.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_180.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_181.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_182.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_183.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_184.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_185.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_186.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_187.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_188.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_189.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_19.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_190.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_191.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_192.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_193.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_194.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_195.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_2.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_20.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_21.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_22.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_23.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_24.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_25.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_26.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_27.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_28.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_29.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_3.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_30.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_31.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_32.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_33.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_34.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_35.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_36.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_37.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_38.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_39.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_4.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_40.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_41.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_42.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_43.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_44.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_45.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_46.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_47.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_48.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_49.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_5.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_50.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_51.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_52.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_53.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_54.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_55.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_56.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_57.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_58.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_59.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_6.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_60.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_61.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_62.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_63.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_64.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_65.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_66.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_67.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_68.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_69.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_7.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_70.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_71.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_72.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_73.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_74.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_75.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_76.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_77.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_78.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_79.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_8.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_80.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_81.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_82.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_83.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_84.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_85.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_86.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_87.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_88.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_89.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_9.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_90.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_91.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_92.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_93.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_94.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_95.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_96.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_97.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_98.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/condor_99.sub create mode 100644 test/ntuple_qcd_1000_1500/batch/nJobs.196 create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_0.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_1.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_10.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_100.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_101.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_102.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_103.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_104.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_105.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_106.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_107.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_108.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_109.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_11.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_110.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_111.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_112.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_113.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_114.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_115.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_116.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_117.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_118.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_119.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_12.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_120.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_121.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_122.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_123.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_124.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_125.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_126.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_127.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_128.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_129.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_13.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_130.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_131.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_132.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_133.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_134.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_135.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_136.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_137.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_138.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_139.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_14.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_140.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_141.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_142.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_143.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_144.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_145.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_146.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_147.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_148.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_149.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_15.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_150.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_151.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_152.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_153.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_154.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_155.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_156.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_157.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_158.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_159.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_16.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_160.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_161.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_162.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_163.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_164.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_165.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_166.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_167.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_168.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_169.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_17.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_170.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_171.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_172.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_173.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_174.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_175.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_176.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_177.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_178.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_179.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_18.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_180.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_181.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_182.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_183.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_184.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_185.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_186.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_187.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_188.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_189.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_19.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_190.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_191.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_192.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_193.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_194.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_195.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_2.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_20.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_21.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_22.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_23.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_24.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_25.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_26.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_27.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_28.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_29.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_3.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_30.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_31.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_32.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_33.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_34.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_35.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_36.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_37.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_38.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_39.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_4.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_40.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_41.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_42.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_43.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_44.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_45.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_46.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_47.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_48.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_49.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_5.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_50.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_51.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_52.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_53.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_54.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_55.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_56.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_57.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_58.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_59.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_6.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_60.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_61.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_62.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_63.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_64.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_65.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_66.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_67.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_68.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_69.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_7.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_70.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_71.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_72.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_73.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_74.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_75.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_76.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_77.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_78.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_79.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_8.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_80.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_81.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_82.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_83.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_84.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_85.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_86.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_87.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_88.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_89.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_9.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_90.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_91.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_92.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_93.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_94.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_95.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_96.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_97.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_98.sh create mode 100755 test/ntuple_qcd_1000_1500/batch/sge_99.sh create mode 100755 test/ntuple_qcd_1000_1500/batchscript.sh create mode 100644 test/ntuple_qcd_1000_1500/condor.sub create mode 120000 test/ntuple_qcd_1000_1500/helper create mode 120000 test/ntuple_qcd_1000_1500/output create mode 100755 test/ntuple_qcd_1000_1500/sge_sub.sh create mode 100644 test/ntuple_qcd_100_200/ademoor.cc create mode 100644 test/ntuple_qcd_100_200/batch/condor_0.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_1.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_10.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_100.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_101.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_102.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_103.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_104.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_105.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_106.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_107.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_108.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_109.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_11.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_110.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_111.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_112.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_113.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_114.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_115.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_116.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_117.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_118.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_119.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_12.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_120.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_121.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_122.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_123.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_124.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_125.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_126.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_127.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_128.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_129.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_13.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_130.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_131.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_132.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_133.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_134.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_135.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_136.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_137.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_138.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_139.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_14.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_140.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_141.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_142.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_143.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_144.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_145.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_146.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_147.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_148.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_149.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_15.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_150.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_151.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_152.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_153.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_154.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_155.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_156.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_157.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_158.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_159.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_16.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_160.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_161.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_162.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_163.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_164.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_165.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_166.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_167.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_168.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_169.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_17.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_170.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_171.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_172.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_173.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_174.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_175.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_176.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_177.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_178.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_179.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_18.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_180.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_181.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_182.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_183.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_184.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_185.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_186.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_187.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_188.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_189.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_19.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_190.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_191.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_192.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_193.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_194.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_195.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_196.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_197.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_198.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_199.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_2.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_20.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_200.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_201.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_202.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_203.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_204.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_205.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_206.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_207.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_208.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_209.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_21.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_210.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_211.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_212.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_213.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_214.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_215.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_216.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_217.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_218.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_219.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_22.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_220.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_221.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_222.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_223.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_224.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_225.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_226.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_227.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_228.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_229.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_23.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_230.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_231.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_232.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_233.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_234.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_235.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_236.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_237.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_238.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_239.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_24.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_240.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_241.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_242.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_243.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_244.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_245.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_246.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_247.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_248.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_249.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_25.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_250.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_251.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_252.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_253.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_254.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_255.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_256.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_257.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_258.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_259.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_26.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_260.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_261.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_262.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_263.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_264.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_265.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_266.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_267.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_268.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_269.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_27.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_270.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_271.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_272.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_273.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_274.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_275.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_276.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_277.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_278.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_279.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_28.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_280.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_281.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_282.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_283.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_284.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_285.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_286.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_287.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_288.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_289.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_29.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_290.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_291.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_292.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_293.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_294.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_295.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_296.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_297.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_298.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_299.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_3.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_30.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_300.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_301.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_302.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_303.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_304.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_305.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_306.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_307.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_308.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_309.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_31.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_310.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_311.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_312.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_313.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_314.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_315.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_316.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_317.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_318.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_319.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_32.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_320.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_321.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_322.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_323.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_324.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_325.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_326.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_327.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_328.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_329.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_33.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_330.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_331.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_332.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_333.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_334.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_335.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_336.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_337.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_338.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_339.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_34.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_340.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_341.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_342.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_343.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_344.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_345.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_346.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_347.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_348.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_349.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_35.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_350.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_351.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_352.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_353.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_354.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_355.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_356.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_357.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_358.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_359.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_36.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_360.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_361.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_362.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_363.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_364.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_365.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_366.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_367.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_368.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_369.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_37.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_370.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_371.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_372.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_373.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_374.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_375.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_376.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_377.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_378.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_379.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_38.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_380.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_381.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_382.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_383.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_384.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_385.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_386.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_387.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_388.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_389.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_39.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_390.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_391.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_392.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_393.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_394.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_395.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_396.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_397.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_398.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_399.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_4.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_40.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_400.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_401.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_402.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_403.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_404.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_405.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_406.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_407.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_408.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_409.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_41.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_410.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_411.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_412.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_413.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_414.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_415.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_416.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_417.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_418.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_419.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_42.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_420.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_421.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_422.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_423.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_424.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_425.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_426.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_427.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_428.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_429.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_43.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_430.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_431.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_432.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_433.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_434.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_435.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_436.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_437.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_438.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_439.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_44.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_440.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_441.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_442.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_443.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_444.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_445.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_446.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_447.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_448.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_449.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_45.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_450.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_451.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_452.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_453.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_454.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_455.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_456.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_457.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_458.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_459.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_46.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_460.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_461.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_462.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_463.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_464.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_465.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_466.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_467.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_468.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_469.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_47.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_470.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_471.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_472.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_473.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_474.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_475.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_476.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_477.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_478.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_479.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_48.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_480.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_481.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_482.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_483.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_484.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_485.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_486.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_487.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_488.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_489.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_49.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_490.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_491.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_492.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_493.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_494.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_495.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_496.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_497.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_498.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_499.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_5.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_50.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_51.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_52.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_53.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_54.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_55.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_56.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_57.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_58.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_59.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_6.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_60.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_61.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_62.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_63.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_64.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_65.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_66.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_67.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_68.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_69.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_7.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_70.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_71.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_72.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_73.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_74.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_75.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_76.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_77.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_78.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_79.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_8.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_80.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_81.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_82.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_83.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_84.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_85.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_86.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_87.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_88.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_89.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_9.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_90.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_91.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_92.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_93.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_94.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_95.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_96.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_97.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_98.sub create mode 100644 test/ntuple_qcd_100_200/batch/condor_99.sub create mode 100644 test/ntuple_qcd_100_200/batch/nJobs.500 create mode 100755 test/ntuple_qcd_100_200/batch/sge_0.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_1.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_10.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_100.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_101.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_102.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_103.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_104.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_105.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_106.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_107.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_108.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_109.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_11.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_110.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_111.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_112.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_113.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_114.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_115.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_116.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_117.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_118.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_119.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_12.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_120.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_121.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_122.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_123.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_124.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_125.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_126.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_127.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_128.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_129.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_13.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_130.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_131.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_132.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_133.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_134.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_135.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_136.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_137.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_138.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_139.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_14.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_140.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_141.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_142.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_143.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_144.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_145.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_146.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_147.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_148.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_149.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_15.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_150.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_151.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_152.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_153.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_154.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_155.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_156.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_157.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_158.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_159.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_16.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_160.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_161.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_162.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_163.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_164.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_165.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_166.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_167.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_168.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_169.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_17.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_170.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_171.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_172.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_173.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_174.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_175.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_176.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_177.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_178.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_179.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_18.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_180.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_181.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_182.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_183.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_184.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_185.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_186.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_187.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_188.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_189.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_19.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_190.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_191.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_192.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_193.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_194.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_195.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_196.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_197.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_198.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_199.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_2.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_20.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_200.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_201.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_202.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_203.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_204.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_205.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_206.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_207.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_208.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_209.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_21.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_210.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_211.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_212.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_213.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_214.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_215.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_216.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_217.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_218.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_219.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_22.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_220.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_221.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_222.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_223.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_224.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_225.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_226.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_227.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_228.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_229.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_23.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_230.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_231.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_232.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_233.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_234.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_235.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_236.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_237.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_238.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_239.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_24.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_240.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_241.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_242.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_243.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_244.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_245.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_246.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_247.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_248.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_249.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_25.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_250.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_251.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_252.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_253.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_254.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_255.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_256.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_257.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_258.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_259.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_26.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_260.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_261.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_262.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_263.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_264.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_265.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_266.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_267.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_268.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_269.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_27.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_270.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_271.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_272.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_273.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_274.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_275.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_276.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_277.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_278.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_279.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_28.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_280.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_281.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_282.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_283.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_284.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_285.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_286.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_287.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_288.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_289.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_29.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_290.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_291.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_292.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_293.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_294.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_295.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_296.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_297.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_298.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_299.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_3.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_30.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_300.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_301.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_302.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_303.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_304.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_305.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_306.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_307.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_308.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_309.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_31.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_310.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_311.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_312.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_313.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_314.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_315.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_316.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_317.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_318.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_319.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_32.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_320.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_321.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_322.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_323.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_324.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_325.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_326.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_327.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_328.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_329.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_33.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_330.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_331.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_332.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_333.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_334.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_335.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_336.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_337.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_338.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_339.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_34.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_340.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_341.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_342.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_343.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_344.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_345.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_346.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_347.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_348.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_349.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_35.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_350.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_351.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_352.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_353.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_354.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_355.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_356.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_357.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_358.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_359.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_36.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_360.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_361.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_362.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_363.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_364.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_365.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_366.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_367.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_368.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_369.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_37.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_370.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_371.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_372.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_373.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_374.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_375.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_376.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_377.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_378.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_379.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_38.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_380.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_381.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_382.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_383.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_384.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_385.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_386.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_387.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_388.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_389.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_39.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_390.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_391.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_392.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_393.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_394.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_395.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_396.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_397.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_398.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_399.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_4.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_40.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_400.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_401.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_402.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_403.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_404.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_405.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_406.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_407.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_408.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_409.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_41.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_410.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_411.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_412.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_413.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_414.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_415.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_416.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_417.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_418.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_419.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_42.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_420.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_421.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_422.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_423.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_424.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_425.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_426.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_427.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_428.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_429.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_43.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_430.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_431.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_432.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_433.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_434.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_435.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_436.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_437.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_438.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_439.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_44.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_440.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_441.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_442.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_443.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_444.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_445.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_446.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_447.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_448.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_449.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_45.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_450.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_451.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_452.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_453.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_454.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_455.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_456.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_457.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_458.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_459.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_46.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_460.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_461.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_462.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_463.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_464.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_465.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_466.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_467.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_468.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_469.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_47.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_470.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_471.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_472.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_473.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_474.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_475.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_476.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_477.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_478.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_479.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_48.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_480.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_481.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_482.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_483.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_484.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_485.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_486.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_487.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_488.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_489.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_49.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_490.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_491.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_492.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_493.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_494.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_495.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_496.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_497.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_498.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_499.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_5.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_50.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_51.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_52.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_53.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_54.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_55.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_56.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_57.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_58.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_59.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_6.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_60.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_61.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_62.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_63.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_64.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_65.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_66.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_67.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_68.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_69.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_7.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_70.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_71.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_72.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_73.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_74.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_75.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_76.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_77.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_78.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_79.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_8.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_80.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_81.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_82.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_83.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_84.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_85.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_86.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_87.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_88.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_89.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_9.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_90.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_91.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_92.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_93.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_94.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_95.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_96.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_97.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_98.sh create mode 100755 test/ntuple_qcd_100_200/batch/sge_99.sh create mode 100755 test/ntuple_qcd_100_200/batchscript.sh create mode 100644 test/ntuple_qcd_100_200/condor.sub create mode 120000 test/ntuple_qcd_100_200/helper create mode 120000 test/ntuple_qcd_100_200/output create mode 100755 test/ntuple_qcd_100_200/sge_sub.sh create mode 100644 test/ntuple_qcd_1500_2000/ademoor.cc create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_0.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_1.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_10.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_100.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_101.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_102.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_103.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_104.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_105.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_106.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_107.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_108.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_109.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_11.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_110.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_111.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_112.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_113.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_114.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_115.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_116.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_117.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_118.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_119.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_12.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_120.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_121.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_122.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_123.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_124.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_125.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_126.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_127.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_128.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_129.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_13.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_130.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_131.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_132.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_133.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_134.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_135.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_136.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_137.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_138.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_14.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_15.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_16.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_17.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_18.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_19.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_2.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_20.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_21.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_22.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_23.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_24.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_25.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_26.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_27.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_28.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_29.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_3.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_30.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_31.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_32.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_33.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_34.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_35.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_36.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_37.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_38.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_39.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_4.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_40.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_41.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_42.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_43.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_44.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_45.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_46.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_47.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_48.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_49.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_5.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_50.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_51.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_52.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_53.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_54.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_55.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_56.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_57.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_58.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_59.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_6.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_60.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_61.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_62.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_63.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_64.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_65.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_66.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_67.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_68.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_69.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_7.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_70.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_71.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_72.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_73.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_74.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_75.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_76.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_77.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_78.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_79.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_8.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_80.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_81.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_82.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_83.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_84.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_85.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_86.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_87.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_88.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_89.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_9.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_90.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_91.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_92.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_93.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_94.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_95.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_96.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_97.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_98.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/condor_99.sub create mode 100644 test/ntuple_qcd_1500_2000/batch/nJobs.139 create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_0.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_1.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_10.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_100.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_101.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_102.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_103.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_104.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_105.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_106.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_107.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_108.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_109.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_11.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_110.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_111.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_112.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_113.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_114.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_115.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_116.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_117.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_118.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_119.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_12.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_120.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_121.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_122.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_123.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_124.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_125.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_126.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_127.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_128.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_129.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_13.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_130.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_131.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_132.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_133.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_134.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_135.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_136.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_137.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_138.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_14.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_15.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_16.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_17.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_18.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_19.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_2.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_20.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_21.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_22.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_23.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_24.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_25.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_26.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_27.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_28.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_29.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_3.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_30.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_31.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_32.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_33.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_34.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_35.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_36.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_37.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_38.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_39.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_4.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_40.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_41.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_42.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_43.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_44.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_45.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_46.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_47.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_48.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_49.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_5.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_50.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_51.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_52.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_53.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_54.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_55.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_56.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_57.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_58.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_59.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_6.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_60.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_61.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_62.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_63.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_64.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_65.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_66.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_67.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_68.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_69.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_7.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_70.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_71.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_72.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_73.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_74.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_75.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_76.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_77.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_78.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_79.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_8.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_80.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_81.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_82.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_83.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_84.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_85.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_86.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_87.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_88.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_89.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_9.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_90.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_91.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_92.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_93.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_94.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_95.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_96.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_97.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_98.sh create mode 100755 test/ntuple_qcd_1500_2000/batch/sge_99.sh create mode 100755 test/ntuple_qcd_1500_2000/batchscript.sh create mode 100644 test/ntuple_qcd_1500_2000/condor.sub create mode 120000 test/ntuple_qcd_1500_2000/helper create mode 120000 test/ntuple_qcd_1500_2000/output create mode 100755 test/ntuple_qcd_1500_2000/sge_sub.sh create mode 100644 test/ntuple_qcd_2000_Inf/ademoor.cc create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_0.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_1.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_10.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_11.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_12.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_13.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_14.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_15.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_16.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_17.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_18.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_19.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_2.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_20.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_21.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_22.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_23.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_24.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_25.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_26.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_27.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_28.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_29.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_3.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_30.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_31.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_32.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_33.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_34.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_35.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_36.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_37.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_38.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_39.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_4.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_40.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_41.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_42.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_43.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_44.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_45.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_46.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_47.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_48.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_49.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_5.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_50.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_51.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_52.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_53.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_54.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_55.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_56.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_57.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_58.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_59.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_6.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_60.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_61.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_62.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_63.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_64.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_65.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_66.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_67.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_68.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_69.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_7.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_70.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_71.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_72.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_73.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_74.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_75.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_76.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_8.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_9.sub create mode 100644 test/ntuple_qcd_2000_Inf/batch/nJobs.77 create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_0.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_1.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_10.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_11.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_12.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_13.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_14.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_15.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_16.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_17.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_18.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_19.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_2.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_20.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_21.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_22.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_23.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_24.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_25.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_26.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_27.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_28.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_29.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_3.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_30.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_31.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_32.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_33.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_34.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_35.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_36.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_37.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_38.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_39.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_4.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_40.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_41.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_42.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_43.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_44.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_45.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_46.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_47.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_48.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_49.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_5.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_50.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_51.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_52.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_53.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_54.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_55.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_56.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_57.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_58.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_59.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_6.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_60.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_61.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_62.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_63.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_64.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_65.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_66.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_67.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_68.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_69.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_7.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_70.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_71.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_72.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_73.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_74.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_75.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_76.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_8.sh create mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_9.sh create mode 100755 test/ntuple_qcd_2000_Inf/batchscript.sh create mode 100644 test/ntuple_qcd_2000_Inf/condor.sub create mode 120000 test/ntuple_qcd_2000_Inf/helper create mode 120000 test/ntuple_qcd_2000_Inf/output create mode 100755 test/ntuple_qcd_2000_Inf/sge_sub.sh create mode 100644 test/ntuple_qcd_200_300/ademoor.cc create mode 100644 test/ntuple_qcd_200_300/batch/condor_0.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_1.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_10.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_100.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_101.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_102.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_103.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_104.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_105.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_106.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_107.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_108.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_109.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_11.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_110.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_111.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_112.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_113.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_114.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_115.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_116.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_117.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_118.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_119.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_12.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_120.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_121.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_122.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_123.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_124.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_125.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_126.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_127.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_128.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_129.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_13.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_130.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_131.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_132.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_133.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_134.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_135.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_136.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_137.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_138.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_139.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_14.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_140.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_141.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_142.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_143.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_144.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_145.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_146.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_147.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_148.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_149.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_15.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_150.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_151.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_152.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_153.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_154.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_155.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_156.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_157.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_158.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_159.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_16.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_160.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_161.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_162.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_163.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_164.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_165.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_166.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_167.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_168.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_169.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_17.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_170.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_171.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_172.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_173.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_174.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_175.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_176.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_177.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_178.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_179.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_18.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_180.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_181.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_182.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_183.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_184.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_185.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_186.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_187.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_188.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_189.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_19.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_190.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_191.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_192.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_193.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_194.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_195.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_196.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_197.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_198.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_199.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_2.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_20.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_200.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_201.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_202.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_203.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_204.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_205.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_206.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_207.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_208.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_209.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_21.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_210.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_211.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_212.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_213.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_214.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_215.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_216.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_217.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_218.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_219.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_22.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_220.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_221.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_222.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_223.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_224.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_225.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_226.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_227.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_228.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_229.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_23.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_230.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_231.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_232.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_233.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_234.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_235.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_236.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_237.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_238.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_239.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_24.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_240.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_241.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_242.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_243.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_244.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_245.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_246.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_247.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_248.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_249.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_25.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_250.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_251.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_252.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_253.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_254.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_255.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_256.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_257.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_258.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_259.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_26.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_260.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_261.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_262.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_263.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_264.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_265.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_266.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_267.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_268.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_269.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_27.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_270.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_271.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_272.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_273.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_274.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_275.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_276.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_277.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_278.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_279.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_28.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_280.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_281.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_282.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_283.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_284.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_285.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_286.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_287.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_288.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_289.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_29.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_290.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_291.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_292.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_293.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_294.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_295.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_296.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_297.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_298.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_299.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_3.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_30.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_300.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_301.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_302.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_303.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_304.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_305.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_306.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_307.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_308.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_309.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_31.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_310.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_311.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_312.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_313.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_314.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_315.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_316.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_317.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_318.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_319.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_32.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_320.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_321.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_322.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_323.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_324.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_325.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_326.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_327.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_328.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_329.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_33.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_330.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_331.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_332.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_333.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_334.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_335.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_336.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_337.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_338.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_339.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_34.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_340.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_341.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_342.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_343.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_344.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_345.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_346.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_347.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_348.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_349.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_35.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_350.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_351.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_352.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_353.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_354.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_355.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_356.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_357.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_358.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_359.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_36.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_360.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_361.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_362.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_363.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_364.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_365.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_366.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_367.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_368.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_369.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_37.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_370.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_371.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_372.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_373.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_374.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_375.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_376.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_377.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_378.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_379.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_38.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_380.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_381.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_382.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_383.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_384.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_385.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_386.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_387.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_388.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_389.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_39.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_390.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_391.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_392.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_393.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_394.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_395.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_396.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_397.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_398.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_399.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_4.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_40.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_400.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_401.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_402.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_403.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_404.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_405.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_406.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_407.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_408.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_409.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_41.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_410.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_411.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_412.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_413.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_414.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_415.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_416.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_417.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_418.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_419.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_42.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_420.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_421.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_422.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_423.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_424.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_425.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_426.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_427.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_428.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_429.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_43.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_430.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_431.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_432.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_433.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_434.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_435.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_436.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_437.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_438.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_439.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_44.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_440.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_441.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_442.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_443.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_444.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_445.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_446.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_447.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_448.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_449.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_45.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_450.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_451.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_452.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_453.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_454.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_455.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_456.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_457.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_458.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_459.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_46.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_460.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_461.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_462.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_463.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_464.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_465.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_466.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_467.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_468.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_469.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_47.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_470.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_471.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_472.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_473.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_474.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_475.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_476.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_477.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_478.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_479.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_48.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_480.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_481.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_482.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_483.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_484.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_485.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_486.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_487.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_488.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_489.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_49.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_490.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_491.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_492.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_493.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_494.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_495.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_496.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_497.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_498.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_499.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_5.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_50.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_51.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_52.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_53.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_54.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_55.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_56.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_57.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_58.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_59.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_6.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_60.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_61.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_62.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_63.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_64.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_65.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_66.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_67.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_68.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_69.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_7.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_70.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_71.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_72.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_73.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_74.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_75.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_76.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_77.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_78.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_79.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_8.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_80.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_81.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_82.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_83.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_84.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_85.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_86.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_87.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_88.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_89.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_9.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_90.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_91.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_92.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_93.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_94.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_95.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_96.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_97.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_98.sub create mode 100644 test/ntuple_qcd_200_300/batch/condor_99.sub create mode 100644 test/ntuple_qcd_200_300/batch/nJobs.500 create mode 100755 test/ntuple_qcd_200_300/batch/sge_0.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_1.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_10.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_100.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_101.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_102.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_103.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_104.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_105.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_106.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_107.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_108.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_109.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_11.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_110.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_111.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_112.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_113.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_114.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_115.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_116.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_117.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_118.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_119.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_12.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_120.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_121.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_122.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_123.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_124.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_125.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_126.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_127.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_128.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_129.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_13.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_130.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_131.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_132.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_133.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_134.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_135.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_136.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_137.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_138.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_139.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_14.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_140.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_141.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_142.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_143.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_144.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_145.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_146.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_147.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_148.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_149.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_15.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_150.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_151.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_152.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_153.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_154.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_155.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_156.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_157.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_158.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_159.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_16.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_160.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_161.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_162.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_163.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_164.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_165.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_166.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_167.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_168.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_169.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_17.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_170.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_171.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_172.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_173.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_174.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_175.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_176.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_177.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_178.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_179.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_18.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_180.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_181.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_182.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_183.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_184.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_185.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_186.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_187.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_188.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_189.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_19.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_190.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_191.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_192.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_193.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_194.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_195.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_196.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_197.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_198.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_199.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_2.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_20.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_200.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_201.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_202.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_203.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_204.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_205.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_206.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_207.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_208.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_209.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_21.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_210.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_211.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_212.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_213.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_214.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_215.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_216.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_217.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_218.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_219.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_22.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_220.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_221.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_222.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_223.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_224.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_225.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_226.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_227.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_228.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_229.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_23.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_230.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_231.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_232.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_233.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_234.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_235.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_236.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_237.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_238.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_239.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_24.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_240.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_241.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_242.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_243.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_244.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_245.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_246.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_247.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_248.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_249.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_25.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_250.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_251.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_252.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_253.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_254.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_255.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_256.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_257.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_258.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_259.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_26.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_260.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_261.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_262.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_263.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_264.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_265.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_266.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_267.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_268.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_269.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_27.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_270.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_271.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_272.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_273.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_274.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_275.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_276.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_277.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_278.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_279.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_28.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_280.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_281.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_282.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_283.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_284.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_285.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_286.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_287.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_288.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_289.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_29.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_290.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_291.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_292.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_293.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_294.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_295.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_296.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_297.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_298.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_299.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_3.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_30.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_300.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_301.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_302.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_303.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_304.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_305.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_306.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_307.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_308.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_309.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_31.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_310.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_311.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_312.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_313.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_314.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_315.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_316.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_317.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_318.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_319.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_32.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_320.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_321.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_322.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_323.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_324.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_325.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_326.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_327.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_328.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_329.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_33.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_330.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_331.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_332.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_333.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_334.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_335.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_336.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_337.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_338.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_339.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_34.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_340.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_341.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_342.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_343.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_344.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_345.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_346.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_347.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_348.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_349.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_35.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_350.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_351.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_352.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_353.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_354.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_355.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_356.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_357.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_358.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_359.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_36.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_360.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_361.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_362.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_363.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_364.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_365.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_366.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_367.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_368.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_369.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_37.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_370.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_371.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_372.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_373.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_374.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_375.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_376.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_377.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_378.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_379.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_38.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_380.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_381.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_382.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_383.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_384.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_385.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_386.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_387.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_388.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_389.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_39.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_390.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_391.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_392.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_393.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_394.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_395.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_396.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_397.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_398.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_399.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_4.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_40.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_400.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_401.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_402.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_403.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_404.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_405.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_406.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_407.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_408.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_409.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_41.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_410.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_411.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_412.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_413.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_414.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_415.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_416.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_417.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_418.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_419.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_42.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_420.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_421.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_422.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_423.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_424.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_425.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_426.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_427.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_428.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_429.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_43.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_430.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_431.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_432.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_433.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_434.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_435.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_436.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_437.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_438.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_439.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_44.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_440.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_441.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_442.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_443.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_444.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_445.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_446.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_447.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_448.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_449.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_45.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_450.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_451.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_452.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_453.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_454.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_455.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_456.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_457.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_458.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_459.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_46.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_460.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_461.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_462.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_463.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_464.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_465.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_466.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_467.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_468.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_469.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_47.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_470.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_471.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_472.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_473.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_474.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_475.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_476.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_477.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_478.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_479.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_48.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_480.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_481.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_482.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_483.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_484.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_485.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_486.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_487.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_488.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_489.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_49.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_490.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_491.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_492.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_493.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_494.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_495.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_496.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_497.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_498.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_499.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_5.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_50.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_51.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_52.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_53.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_54.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_55.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_56.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_57.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_58.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_59.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_6.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_60.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_61.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_62.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_63.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_64.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_65.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_66.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_67.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_68.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_69.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_7.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_70.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_71.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_72.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_73.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_74.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_75.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_76.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_77.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_78.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_79.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_8.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_80.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_81.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_82.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_83.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_84.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_85.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_86.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_87.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_88.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_89.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_9.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_90.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_91.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_92.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_93.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_94.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_95.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_96.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_97.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_98.sh create mode 100755 test/ntuple_qcd_200_300/batch/sge_99.sh create mode 100755 test/ntuple_qcd_200_300/batchscript.sh create mode 100644 test/ntuple_qcd_200_300/condor.sub create mode 120000 test/ntuple_qcd_200_300/helper create mode 120000 test/ntuple_qcd_200_300/output create mode 100755 test/ntuple_qcd_200_300/sge_sub.sh create mode 100644 test/ntuple_qcd_300_500/ademoor.cc create mode 100644 test/ntuple_qcd_300_500/batch/condor_0.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_1.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_10.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_100.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_101.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_102.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_103.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_104.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_105.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_106.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_107.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_108.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_109.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_11.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_110.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_111.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_112.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_113.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_114.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_115.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_116.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_117.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_118.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_119.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_12.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_120.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_121.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_122.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_123.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_124.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_125.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_126.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_127.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_128.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_129.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_13.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_130.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_131.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_132.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_133.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_134.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_135.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_136.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_137.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_138.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_139.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_14.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_140.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_141.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_142.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_143.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_144.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_145.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_146.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_147.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_148.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_149.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_15.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_150.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_151.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_152.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_153.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_154.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_155.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_156.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_157.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_158.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_159.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_16.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_160.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_161.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_162.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_163.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_164.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_165.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_166.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_167.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_168.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_169.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_17.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_170.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_171.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_172.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_173.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_174.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_175.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_176.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_177.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_178.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_179.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_18.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_180.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_181.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_182.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_183.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_184.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_185.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_186.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_187.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_188.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_189.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_19.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_190.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_191.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_192.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_193.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_194.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_195.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_196.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_197.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_198.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_199.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_2.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_20.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_200.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_201.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_202.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_203.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_204.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_205.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_206.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_207.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_208.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_209.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_21.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_210.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_211.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_212.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_213.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_214.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_215.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_216.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_217.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_218.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_219.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_22.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_220.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_221.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_222.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_223.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_224.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_225.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_226.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_227.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_228.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_229.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_23.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_230.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_231.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_232.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_233.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_234.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_235.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_236.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_237.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_238.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_239.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_24.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_240.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_241.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_242.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_243.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_244.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_245.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_246.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_247.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_248.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_249.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_25.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_250.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_251.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_252.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_253.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_254.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_255.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_256.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_257.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_258.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_259.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_26.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_260.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_261.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_262.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_263.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_264.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_265.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_266.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_267.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_268.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_269.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_27.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_270.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_271.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_272.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_273.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_274.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_275.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_276.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_277.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_278.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_279.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_28.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_280.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_281.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_282.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_283.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_284.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_285.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_286.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_287.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_288.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_289.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_29.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_290.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_291.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_292.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_293.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_294.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_295.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_296.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_297.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_298.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_299.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_3.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_30.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_300.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_301.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_302.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_303.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_304.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_305.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_306.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_307.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_308.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_309.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_31.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_310.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_311.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_312.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_313.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_314.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_315.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_316.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_317.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_318.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_319.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_32.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_320.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_321.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_322.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_323.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_324.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_325.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_326.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_327.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_328.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_329.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_33.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_330.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_331.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_332.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_333.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_334.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_335.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_336.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_337.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_338.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_339.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_34.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_340.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_341.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_342.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_343.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_344.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_345.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_346.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_347.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_348.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_349.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_35.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_350.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_351.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_352.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_353.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_354.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_355.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_356.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_357.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_358.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_359.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_36.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_360.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_361.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_362.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_363.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_364.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_365.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_366.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_367.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_368.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_369.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_37.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_370.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_371.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_372.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_373.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_374.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_375.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_376.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_377.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_378.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_379.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_38.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_380.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_381.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_382.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_383.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_384.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_385.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_386.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_387.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_388.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_389.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_39.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_390.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_391.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_392.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_393.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_394.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_395.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_396.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_397.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_398.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_399.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_4.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_40.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_400.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_401.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_402.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_403.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_404.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_405.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_406.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_407.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_408.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_409.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_41.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_410.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_411.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_412.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_413.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_414.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_415.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_416.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_417.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_418.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_419.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_42.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_420.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_421.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_422.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_423.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_424.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_425.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_426.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_427.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_428.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_429.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_43.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_430.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_431.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_432.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_433.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_434.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_435.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_436.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_437.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_438.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_439.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_44.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_440.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_441.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_442.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_443.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_444.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_445.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_446.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_447.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_448.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_449.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_45.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_450.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_451.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_452.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_453.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_454.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_455.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_456.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_457.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_458.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_459.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_46.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_460.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_461.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_462.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_463.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_464.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_465.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_466.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_467.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_468.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_469.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_47.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_470.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_471.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_472.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_473.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_474.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_475.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_476.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_477.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_478.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_479.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_48.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_480.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_481.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_482.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_483.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_484.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_485.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_486.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_487.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_488.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_489.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_49.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_490.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_491.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_492.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_493.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_494.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_495.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_496.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_497.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_498.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_499.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_5.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_50.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_51.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_52.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_53.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_54.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_55.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_56.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_57.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_58.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_59.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_6.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_60.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_61.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_62.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_63.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_64.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_65.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_66.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_67.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_68.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_69.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_7.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_70.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_71.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_72.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_73.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_74.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_75.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_76.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_77.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_78.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_79.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_8.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_80.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_81.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_82.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_83.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_84.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_85.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_86.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_87.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_88.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_89.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_9.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_90.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_91.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_92.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_93.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_94.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_95.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_96.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_97.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_98.sub create mode 100644 test/ntuple_qcd_300_500/batch/condor_99.sub create mode 100644 test/ntuple_qcd_300_500/batch/nJobs.500 create mode 100755 test/ntuple_qcd_300_500/batch/sge_0.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_1.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_10.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_100.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_101.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_102.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_103.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_104.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_105.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_106.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_107.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_108.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_109.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_11.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_110.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_111.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_112.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_113.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_114.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_115.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_116.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_117.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_118.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_119.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_12.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_120.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_121.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_122.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_123.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_124.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_125.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_126.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_127.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_128.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_129.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_13.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_130.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_131.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_132.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_133.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_134.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_135.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_136.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_137.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_138.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_139.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_14.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_140.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_141.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_142.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_143.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_144.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_145.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_146.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_147.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_148.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_149.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_15.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_150.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_151.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_152.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_153.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_154.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_155.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_156.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_157.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_158.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_159.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_16.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_160.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_161.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_162.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_163.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_164.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_165.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_166.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_167.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_168.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_169.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_17.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_170.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_171.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_172.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_173.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_174.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_175.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_176.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_177.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_178.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_179.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_18.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_180.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_181.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_182.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_183.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_184.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_185.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_186.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_187.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_188.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_189.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_19.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_190.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_191.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_192.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_193.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_194.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_195.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_196.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_197.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_198.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_199.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_2.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_20.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_200.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_201.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_202.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_203.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_204.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_205.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_206.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_207.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_208.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_209.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_21.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_210.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_211.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_212.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_213.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_214.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_215.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_216.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_217.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_218.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_219.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_22.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_220.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_221.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_222.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_223.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_224.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_225.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_226.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_227.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_228.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_229.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_23.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_230.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_231.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_232.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_233.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_234.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_235.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_236.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_237.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_238.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_239.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_24.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_240.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_241.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_242.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_243.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_244.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_245.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_246.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_247.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_248.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_249.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_25.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_250.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_251.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_252.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_253.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_254.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_255.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_256.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_257.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_258.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_259.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_26.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_260.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_261.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_262.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_263.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_264.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_265.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_266.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_267.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_268.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_269.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_27.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_270.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_271.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_272.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_273.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_274.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_275.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_276.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_277.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_278.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_279.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_28.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_280.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_281.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_282.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_283.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_284.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_285.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_286.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_287.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_288.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_289.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_29.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_290.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_291.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_292.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_293.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_294.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_295.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_296.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_297.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_298.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_299.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_3.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_30.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_300.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_301.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_302.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_303.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_304.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_305.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_306.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_307.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_308.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_309.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_31.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_310.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_311.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_312.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_313.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_314.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_315.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_316.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_317.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_318.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_319.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_32.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_320.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_321.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_322.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_323.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_324.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_325.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_326.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_327.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_328.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_329.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_33.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_330.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_331.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_332.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_333.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_334.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_335.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_336.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_337.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_338.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_339.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_34.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_340.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_341.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_342.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_343.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_344.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_345.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_346.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_347.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_348.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_349.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_35.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_350.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_351.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_352.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_353.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_354.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_355.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_356.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_357.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_358.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_359.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_36.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_360.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_361.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_362.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_363.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_364.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_365.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_366.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_367.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_368.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_369.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_37.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_370.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_371.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_372.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_373.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_374.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_375.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_376.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_377.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_378.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_379.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_38.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_380.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_381.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_382.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_383.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_384.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_385.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_386.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_387.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_388.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_389.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_39.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_390.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_391.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_392.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_393.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_394.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_395.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_396.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_397.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_398.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_399.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_4.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_40.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_400.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_401.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_402.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_403.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_404.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_405.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_406.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_407.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_408.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_409.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_41.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_410.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_411.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_412.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_413.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_414.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_415.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_416.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_417.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_418.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_419.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_42.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_420.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_421.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_422.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_423.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_424.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_425.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_426.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_427.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_428.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_429.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_43.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_430.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_431.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_432.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_433.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_434.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_435.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_436.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_437.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_438.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_439.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_44.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_440.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_441.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_442.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_443.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_444.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_445.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_446.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_447.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_448.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_449.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_45.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_450.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_451.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_452.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_453.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_454.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_455.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_456.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_457.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_458.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_459.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_46.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_460.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_461.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_462.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_463.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_464.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_465.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_466.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_467.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_468.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_469.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_47.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_470.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_471.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_472.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_473.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_474.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_475.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_476.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_477.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_478.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_479.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_48.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_480.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_481.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_482.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_483.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_484.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_485.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_486.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_487.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_488.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_489.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_49.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_490.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_491.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_492.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_493.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_494.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_495.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_496.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_497.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_498.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_499.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_5.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_50.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_51.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_52.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_53.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_54.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_55.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_56.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_57.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_58.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_59.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_6.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_60.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_61.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_62.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_63.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_64.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_65.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_66.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_67.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_68.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_69.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_7.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_70.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_71.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_72.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_73.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_74.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_75.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_76.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_77.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_78.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_79.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_8.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_80.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_81.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_82.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_83.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_84.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_85.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_86.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_87.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_88.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_89.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_9.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_90.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_91.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_92.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_93.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_94.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_95.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_96.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_97.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_98.sh create mode 100755 test/ntuple_qcd_300_500/batch/sge_99.sh create mode 100755 test/ntuple_qcd_300_500/batchscript.sh create mode 100644 test/ntuple_qcd_300_500/condor.sub create mode 120000 test/ntuple_qcd_300_500/helper create mode 120000 test/ntuple_qcd_300_500/output create mode 100755 test/ntuple_qcd_300_500/sge_sub.sh create mode 100644 test/ntuple_qcd_500_700/ademoor.cc create mode 100644 test/ntuple_qcd_500_700/batch/condor_0.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_1.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_10.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_100.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_101.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_102.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_103.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_104.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_105.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_106.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_107.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_108.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_109.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_11.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_110.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_111.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_112.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_113.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_114.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_115.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_116.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_117.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_12.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_13.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_14.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_15.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_16.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_17.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_18.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_19.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_2.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_20.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_21.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_22.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_23.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_24.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_25.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_26.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_27.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_28.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_29.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_3.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_30.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_31.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_32.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_33.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_34.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_35.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_36.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_37.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_38.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_39.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_4.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_40.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_41.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_42.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_43.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_44.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_45.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_46.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_47.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_48.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_49.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_5.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_50.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_51.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_52.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_53.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_54.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_55.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_56.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_57.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_58.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_59.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_6.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_60.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_61.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_62.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_63.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_64.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_65.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_66.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_67.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_68.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_69.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_7.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_70.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_71.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_72.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_73.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_74.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_75.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_76.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_77.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_78.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_79.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_8.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_80.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_81.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_82.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_83.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_84.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_85.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_86.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_87.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_88.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_89.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_9.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_90.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_91.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_92.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_93.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_94.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_95.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_96.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_97.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_98.sub create mode 100644 test/ntuple_qcd_500_700/batch/condor_99.sub create mode 100644 test/ntuple_qcd_500_700/batch/nJobs.118 create mode 100755 test/ntuple_qcd_500_700/batch/sge_0.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_1.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_10.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_100.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_101.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_102.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_103.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_104.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_105.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_106.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_107.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_108.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_109.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_11.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_110.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_111.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_112.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_113.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_114.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_115.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_116.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_117.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_12.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_13.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_14.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_15.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_16.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_17.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_18.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_19.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_2.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_20.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_21.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_22.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_23.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_24.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_25.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_26.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_27.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_28.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_29.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_3.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_30.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_31.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_32.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_33.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_34.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_35.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_36.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_37.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_38.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_39.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_4.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_40.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_41.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_42.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_43.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_44.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_45.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_46.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_47.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_48.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_49.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_5.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_50.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_51.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_52.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_53.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_54.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_55.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_56.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_57.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_58.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_59.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_6.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_60.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_61.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_62.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_63.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_64.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_65.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_66.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_67.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_68.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_69.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_7.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_70.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_71.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_72.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_73.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_74.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_75.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_76.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_77.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_78.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_79.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_8.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_80.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_81.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_82.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_83.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_84.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_85.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_86.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_87.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_88.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_89.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_9.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_90.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_91.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_92.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_93.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_94.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_95.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_96.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_97.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_98.sh create mode 100755 test/ntuple_qcd_500_700/batch/sge_99.sh create mode 100755 test/ntuple_qcd_500_700/batchscript.sh create mode 100644 test/ntuple_qcd_500_700/condor.sub create mode 120000 test/ntuple_qcd_500_700/helper create mode 120000 test/ntuple_qcd_500_700/output create mode 100755 test/ntuple_qcd_500_700/sge_sub.sh create mode 100644 test/ntuple_qcd_700_1000/ademoor.cc create mode 100644 test/ntuple_qcd_700_1000/batch/condor_0.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_1.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_10.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_100.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_101.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_102.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_103.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_104.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_105.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_106.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_107.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_108.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_109.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_11.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_110.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_111.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_112.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_113.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_114.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_115.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_116.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_117.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_118.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_119.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_12.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_120.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_121.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_122.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_123.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_124.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_125.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_126.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_127.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_128.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_129.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_13.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_130.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_131.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_132.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_133.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_134.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_135.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_136.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_137.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_138.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_139.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_14.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_140.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_141.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_142.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_143.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_144.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_145.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_146.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_147.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_148.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_149.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_15.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_150.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_151.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_152.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_153.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_154.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_155.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_156.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_157.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_158.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_159.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_16.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_160.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_161.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_162.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_163.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_164.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_165.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_166.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_167.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_168.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_169.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_17.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_170.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_171.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_172.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_173.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_174.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_175.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_176.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_177.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_178.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_179.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_18.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_180.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_181.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_182.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_183.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_184.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_185.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_186.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_187.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_188.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_189.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_19.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_190.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_191.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_192.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_193.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_194.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_195.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_196.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_197.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_198.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_199.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_2.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_20.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_200.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_201.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_202.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_203.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_204.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_205.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_206.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_207.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_208.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_209.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_21.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_210.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_211.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_212.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_213.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_214.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_215.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_216.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_217.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_218.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_219.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_22.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_220.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_221.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_222.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_223.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_224.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_225.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_226.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_227.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_228.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_229.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_23.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_230.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_231.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_232.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_233.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_234.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_235.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_236.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_237.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_238.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_239.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_24.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_240.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_241.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_242.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_243.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_244.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_245.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_246.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_247.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_248.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_249.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_25.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_250.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_251.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_252.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_253.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_254.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_255.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_256.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_257.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_258.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_259.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_26.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_260.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_261.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_262.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_263.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_264.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_265.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_266.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_267.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_268.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_269.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_27.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_270.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_271.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_272.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_273.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_274.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_275.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_276.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_277.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_278.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_279.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_28.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_280.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_281.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_282.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_283.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_284.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_285.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_286.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_287.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_288.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_289.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_29.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_290.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_291.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_292.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_293.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_294.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_295.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_296.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_297.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_298.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_299.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_3.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_30.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_300.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_301.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_302.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_303.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_304.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_305.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_306.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_307.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_308.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_309.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_31.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_310.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_311.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_312.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_313.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_314.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_315.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_316.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_317.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_318.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_319.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_32.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_320.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_321.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_322.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_323.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_324.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_325.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_326.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_327.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_328.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_329.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_33.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_330.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_331.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_332.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_333.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_334.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_335.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_336.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_337.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_338.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_339.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_34.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_340.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_341.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_342.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_343.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_344.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_345.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_346.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_347.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_348.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_349.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_35.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_350.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_351.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_352.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_353.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_354.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_355.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_356.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_357.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_358.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_359.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_36.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_360.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_361.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_362.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_363.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_364.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_365.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_366.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_367.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_368.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_369.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_37.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_370.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_371.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_372.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_373.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_374.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_375.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_376.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_377.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_378.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_379.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_38.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_380.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_381.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_382.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_383.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_384.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_385.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_386.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_387.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_388.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_389.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_39.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_390.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_391.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_392.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_393.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_394.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_395.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_396.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_397.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_398.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_399.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_4.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_40.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_400.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_401.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_402.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_403.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_404.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_405.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_406.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_407.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_408.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_409.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_41.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_410.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_411.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_412.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_413.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_414.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_415.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_416.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_417.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_418.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_419.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_42.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_420.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_421.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_422.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_423.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_424.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_425.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_426.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_427.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_428.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_429.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_43.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_430.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_431.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_432.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_433.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_434.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_435.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_436.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_437.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_438.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_439.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_44.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_440.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_441.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_442.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_443.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_444.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_445.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_446.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_447.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_448.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_449.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_45.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_450.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_451.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_452.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_453.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_454.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_455.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_456.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_457.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_458.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_459.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_46.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_460.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_461.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_462.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_463.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_464.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_465.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_466.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_467.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_468.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_469.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_47.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_470.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_471.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_472.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_473.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_474.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_475.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_476.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_477.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_478.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_479.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_48.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_480.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_481.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_482.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_483.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_484.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_485.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_486.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_487.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_488.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_489.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_49.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_490.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_491.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_492.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_493.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_494.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_495.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_496.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_497.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_498.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_499.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_5.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_50.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_51.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_52.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_53.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_54.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_55.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_56.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_57.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_58.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_59.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_6.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_60.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_61.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_62.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_63.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_64.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_65.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_66.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_67.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_68.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_69.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_7.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_70.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_71.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_72.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_73.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_74.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_75.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_76.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_77.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_78.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_79.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_8.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_80.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_81.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_82.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_83.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_84.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_85.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_86.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_87.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_88.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_89.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_9.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_90.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_91.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_92.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_93.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_94.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_95.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_96.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_97.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_98.sub create mode 100644 test/ntuple_qcd_700_1000/batch/condor_99.sub create mode 100644 test/ntuple_qcd_700_1000/batch/nJobs.500 create mode 100755 test/ntuple_qcd_700_1000/batch/sge_0.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_1.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_10.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_100.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_101.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_102.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_103.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_104.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_105.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_106.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_107.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_108.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_109.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_11.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_110.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_111.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_112.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_113.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_114.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_115.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_116.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_117.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_118.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_119.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_12.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_120.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_121.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_122.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_123.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_124.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_125.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_126.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_127.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_128.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_129.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_13.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_130.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_131.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_132.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_133.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_134.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_135.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_136.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_137.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_138.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_139.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_14.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_140.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_141.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_142.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_143.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_144.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_145.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_146.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_147.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_148.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_149.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_15.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_150.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_151.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_152.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_153.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_154.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_155.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_156.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_157.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_158.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_159.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_16.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_160.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_161.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_162.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_163.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_164.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_165.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_166.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_167.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_168.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_169.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_17.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_170.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_171.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_172.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_173.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_174.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_175.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_176.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_177.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_178.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_179.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_18.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_180.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_181.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_182.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_183.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_184.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_185.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_186.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_187.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_188.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_189.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_19.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_190.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_191.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_192.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_193.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_194.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_195.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_196.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_197.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_198.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_199.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_2.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_20.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_200.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_201.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_202.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_203.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_204.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_205.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_206.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_207.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_208.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_209.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_21.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_210.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_211.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_212.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_213.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_214.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_215.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_216.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_217.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_218.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_219.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_22.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_220.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_221.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_222.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_223.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_224.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_225.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_226.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_227.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_228.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_229.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_23.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_230.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_231.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_232.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_233.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_234.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_235.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_236.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_237.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_238.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_239.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_24.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_240.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_241.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_242.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_243.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_244.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_245.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_246.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_247.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_248.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_249.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_25.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_250.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_251.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_252.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_253.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_254.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_255.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_256.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_257.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_258.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_259.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_26.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_260.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_261.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_262.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_263.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_264.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_265.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_266.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_267.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_268.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_269.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_27.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_270.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_271.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_272.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_273.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_274.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_275.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_276.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_277.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_278.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_279.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_28.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_280.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_281.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_282.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_283.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_284.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_285.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_286.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_287.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_288.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_289.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_29.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_290.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_291.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_292.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_293.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_294.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_295.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_296.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_297.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_298.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_299.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_3.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_30.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_300.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_301.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_302.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_303.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_304.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_305.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_306.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_307.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_308.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_309.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_31.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_310.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_311.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_312.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_313.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_314.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_315.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_316.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_317.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_318.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_319.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_32.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_320.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_321.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_322.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_323.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_324.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_325.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_326.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_327.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_328.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_329.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_33.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_330.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_331.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_332.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_333.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_334.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_335.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_336.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_337.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_338.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_339.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_34.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_340.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_341.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_342.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_343.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_344.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_345.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_346.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_347.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_348.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_349.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_35.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_350.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_351.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_352.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_353.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_354.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_355.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_356.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_357.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_358.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_359.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_36.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_360.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_361.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_362.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_363.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_364.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_365.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_366.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_367.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_368.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_369.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_37.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_370.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_371.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_372.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_373.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_374.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_375.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_376.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_377.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_378.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_379.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_38.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_380.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_381.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_382.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_383.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_384.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_385.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_386.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_387.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_388.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_389.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_39.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_390.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_391.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_392.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_393.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_394.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_395.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_396.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_397.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_398.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_399.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_4.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_40.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_400.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_401.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_402.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_403.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_404.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_405.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_406.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_407.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_408.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_409.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_41.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_410.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_411.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_412.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_413.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_414.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_415.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_416.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_417.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_418.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_419.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_42.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_420.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_421.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_422.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_423.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_424.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_425.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_426.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_427.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_428.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_429.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_43.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_430.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_431.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_432.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_433.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_434.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_435.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_436.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_437.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_438.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_439.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_44.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_440.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_441.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_442.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_443.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_444.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_445.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_446.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_447.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_448.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_449.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_45.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_450.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_451.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_452.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_453.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_454.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_455.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_456.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_457.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_458.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_459.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_46.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_460.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_461.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_462.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_463.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_464.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_465.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_466.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_467.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_468.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_469.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_47.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_470.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_471.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_472.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_473.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_474.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_475.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_476.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_477.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_478.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_479.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_48.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_480.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_481.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_482.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_483.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_484.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_485.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_486.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_487.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_488.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_489.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_49.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_490.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_491.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_492.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_493.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_494.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_495.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_496.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_497.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_498.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_499.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_5.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_50.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_51.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_52.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_53.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_54.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_55.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_56.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_57.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_58.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_59.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_6.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_60.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_61.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_62.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_63.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_64.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_65.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_66.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_67.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_68.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_69.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_7.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_70.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_71.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_72.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_73.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_74.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_75.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_76.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_77.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_78.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_79.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_8.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_80.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_81.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_82.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_83.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_84.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_85.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_86.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_87.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_88.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_89.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_9.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_90.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_91.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_92.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_93.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_94.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_95.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_96.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_97.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_98.sh create mode 100755 test/ntuple_qcd_700_1000/batch/sge_99.sh create mode 100755 test/ntuple_qcd_700_1000/batchscript.sh create mode 100644 test/ntuple_qcd_700_1000/condor.sub create mode 120000 test/ntuple_qcd_700_1000/helper create mode 120000 test/ntuple_qcd_700_1000/output create mode 100755 test/ntuple_qcd_700_1000/sge_sub.sh diff --git a/DeepNtuplizer/interface/ntuple_SV.h b/DeepNtuplizer/interface/ntuple_SV.h index 7c3ca0a00d2..d3886fb1f6c 100644 --- a/DeepNtuplizer/interface/ntuple_SV.h +++ b/DeepNtuplizer/interface/ntuple_SV.h @@ -38,6 +38,7 @@ class ntuple_SV: public ntuple_content{ float sv_pt_[max_sv]; float sv_eta_[max_sv]; float sv_phi_[max_sv]; + float sv_e_[max_sv]; float sv_etarel_[max_sv]; float sv_phirel_[max_sv]; float sv_deltaR_[max_sv]; diff --git a/DeepNtuplizer/interface/ntuple_pfCands.h b/DeepNtuplizer/interface/ntuple_pfCands.h index 60e1665c699..b1475f4a929 100644 --- a/DeepNtuplizer/interface/ntuple_pfCands.h +++ b/DeepNtuplizer/interface/ntuple_pfCands.h @@ -32,11 +32,11 @@ class ntuple_pfCands: public ntuple_content{ private: float jetradius_; - float min_candidate_pt_ = -1; + float min_candidate_pt_ = -1; edm::ESHandle builder; - unsigned int n_Cpfcand_; + int n_Cpfcand_; float nCpfcand_; static constexpr size_t max_pfcand_=50; @@ -45,14 +45,15 @@ class ntuple_pfCands: public ntuple_content{ float Cpfcan_eta_[max_pfcand_]; float Cpfcan_phi_[max_pfcand_]; float Cpfcan_ptrel_[max_pfcand_]; + float Cpfcan_e_[max_pfcand_]; float Cpfcan_erel_[max_pfcand_]; float Cpfcan_phirel_[max_pfcand_]; float Cpfcan_etarel_[max_pfcand_]; float Cpfcan_deltaR_[max_pfcand_]; float Cpfcan_puppiw_[max_pfcand_]; - float Cpfcan_VTX_ass_[max_pfcand_]; + float Cpfcan_VTX_ass_[max_pfcand_]; - float Cpfcan_fromPV_[max_pfcand_]; + float Cpfcan_fromPV_[max_pfcand_]; float Cpfcan_vertexChi2_[max_pfcand_]; float Cpfcan_vertexNdof_[max_pfcand_]; @@ -107,19 +108,96 @@ class ntuple_pfCands: public ntuple_content{ // track quality float Cpfcan_lostInnerHits_[max_pfcand_]; float Cpfcan_numberOfPixelHits_[max_pfcand_]; - float Cpfcan_chi2_[max_pfcand_]; float Cpfcan_quality_[max_pfcand_]; - float Cpfcan_drminsv_[max_pfcand_]; + float Cpfcan_distminsv_[max_pfcand_]; + float Cpfcan_dxminsv_[max_pfcand_]; + float Cpfcan_dyminsv_[max_pfcand_]; + float Cpfcan_dzminsv_[max_pfcand_]; + float Cpfcan_dxpv_[max_pfcand_]; + float Cpfcan_dypv_[max_pfcand_]; + float Cpfcan_dzpv_[max_pfcand_]; + + //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h + //Tracker per layer + //Pixel barrel + float Cpfcan_nhitpixelBarrelLayer1_[max_pfcand_]; + float Cpfcan_nhitpixelBarrelLayer2_[max_pfcand_]; + float Cpfcan_nhitpixelBarrelLayer3_[max_pfcand_]; + float Cpfcan_nhitpixelBarrelLayer4_[max_pfcand_]; + //Pixel Endcap + float Cpfcan_nhitpixelEndcapLayer1_[max_pfcand_]; + float Cpfcan_nhitpixelEndcapLayer2_[max_pfcand_]; + //Strip TIB + float Cpfcan_nhitstripTIBLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTIBLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTIBLayer3_[max_pfcand_]; + float Cpfcan_nhitstripTIBLayer4_[max_pfcand_]; + //Strip TID + float Cpfcan_nhitstripTIDLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTIDLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTIDLayer3_[max_pfcand_]; + //Strip TOB + float Cpfcan_nhitstripTOBLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer3_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer4_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer5_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer6_[max_pfcand_]; + //Strip TEC + float Cpfcan_nhitstripTECLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer3_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer4_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer5_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer6_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer7_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer8_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer9_[max_pfcand_]; + //Tracker all layers together + //Valid hits + float Cpfcan_numberOfValidHits_[max_pfcand_]; + float Cpfcan_numberOfValidTrackerHits_[max_pfcand_]; + float Cpfcan_numberOfValidPixelHits_[max_pfcand_]; + float Cpfcan_numberOfValidPixelBarrelHits_[max_pfcand_]; + float Cpfcan_numberOfValidPixelEndcapHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTIBHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTIDHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTOBHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTECHits_[max_pfcand_]; + //LayersWithMeasurement + float Cpfcan_trackerLayersWithMeasurementOld_[max_pfcand_]; + float Cpfcan_trackerLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_pixelLayersWithMeasurementOld_[max_pfcand_]; + float Cpfcan_pixelLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_pixelBarrelLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_pixelEndcapLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTIBLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTIDLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTOBLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTECLayersWithMeasurement_[max_pfcand_]; + //Null + float Cpfcan_trackerLayersNull_[max_pfcand_]; + float Cpfcan_pixelLayersNull_[max_pfcand_]; + float Cpfcan_stripLayersNull_[max_pfcand_]; + float Cpfcan_pixelBarrelLayersNull_[max_pfcand_]; + float Cpfcan_pixelEndcapLayersNull_[max_pfcand_]; + float Cpfcan_stripTIBLayersNull_[max_pfcand_]; + float Cpfcan_stripTIDLayersNull_[max_pfcand_]; + float Cpfcan_stripTOBLayersNull_[max_pfcand_]; + float Cpfcan_stripTECLayersNull_[max_pfcand_]; //Neutral Pf candidates - unsigned int n_Npfcand_; + int n_Npfcand_; float nNpfcand_; float Npfcan_pt_[max_pfcand_]; float Npfcan_eta_[max_pfcand_]; float Npfcan_phi_[max_pfcand_]; float Npfcan_ptrel_[max_pfcand_]; + float Npfcan_e_[max_pfcand_]; float Npfcan_erel_[max_pfcand_]; float Npfcan_puppiw_[max_pfcand_]; float Npfcan_phirel_[max_pfcand_]; @@ -131,6 +209,9 @@ class ntuple_pfCands: public ntuple_content{ float mindrsvpfcand(const pat::PackedCandidate* pfcand); + float mindistsvpfcand(const reco::TransientTrack track); + GlobalPoint mingpsvpfcand(const reco::TransientTrack track); + GlobalPoint gppvpfcand(const reco::TransientTrack track, GlobalVector direction, const reco::Vertex vertex); }; diff --git a/DeepNtuplizer/production/DV_small.cfg b/DeepNtuplizer/production/DV_small.cfg new file mode 100644 index 00000000000..4ca95109d34 --- /dev/null +++ b/DeepNtuplizer/production/DV_small.cfg @@ -0,0 +1,12 @@ +500 /BulkGravitonToHHTo4Q_MX-600to6000_MH-15to250_part1_TuneCP5_13TeV-madgraph_pythia8/RunIISummer19UL17MiniAODv2-multigridpack_106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_bulk_grav_1 +500 /BulkGravitonToHHTo4Q_MX-600to6000_MH-15to250_part2_TuneCP5_13TeV-madgraph_pythia8/RunIISummer19UL17MiniAODv2-multigridpack_106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_bulk_grav_2 +500 /BulkGravitonToHHTo4Q_MX-600to6000_MH-15to250_part3_TuneCP5_13TeV-madgraph_pythia8/RunIISummer19UL17MiniAODv2-multigridpack_106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_bulk_grav_3 + +500 /QCD_HT1000to1500_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1500 +500 /QCD_HT100to200_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_100_200 +500 /QCD_HT1500to2000_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1500_2000 +500 /QCD_HT2000toInf_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_2000_Inf +500 /QCD_HT200to300_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_200_300 +500 /QCD_HT300to500_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_300_500 +500 /QCD_HT500to700_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_500_700 +500 /QCD_HT700to1000_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_700_1000 diff --git a/DeepNtuplizer/production/DeepNtuplizer.py b/DeepNtuplizer/production/DeepNtuplizer.py index 3b4c24cca1e..626752a2939 100644 --- a/DeepNtuplizer/production/DeepNtuplizer.py +++ b/DeepNtuplizer/production/DeepNtuplizer.py @@ -9,11 +9,11 @@ options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',15001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('maxEvents',-1,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('reportEvery', 10000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") @@ -94,12 +94,15 @@ bTagInfos = [ 'pfImpactParameterTagInfos', 'pfInclusiveSecondaryVertexFinderTagInfos', - 'pfDeepCSVTagInfos' ] + 'pfDeepCSVTagInfos', + 'pfParticleNetAK4TagInfos', +] else : bTagInfos = [ 'pfImpactParameterTagInfos', 'pfInclusiveSecondaryVertexFinderTagInfos', 'deepNNTagInfos', + 'pfParticleNetAK4TagInfos', ] @@ -114,6 +117,18 @@ 'pfDeepCSVJetTags:probb', 'pfDeepCSVJetTags:probc', 'pfDeepCSVJetTags:probbb', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', ] else : bTagDiscriminators = [ @@ -127,6 +142,18 @@ 'pfDeepCSVJetTags:probc', 'pfDeepCSVJetTags:probbb', 'pfDeepCSVJetTags:probcc', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', ] jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') @@ -242,7 +269,7 @@ # DeepNtuplizer process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") -process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour'); +process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') process.deepntuplizer.bDiscriminators = bTagDiscriminators process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") @@ -274,9 +301,9 @@ #Trick to make it work in 9_1_X process.tsk = cms.Task() -for mod in process.producers_().itervalues(): +for mod in process.producers_().values(): #.itervalues(): process.tsk.add(mod) -for mod in process.filters_().itervalues(): +for mod in process.filters_().values(): #.itervalues(): process.tsk.add(mod) process.p = cms.Path( diff --git a/DeepNtuplizer/src/ntuple_SV.cc b/DeepNtuplizer/src/ntuple_SV.cc index a32fc6757f8..b4098106eca 100644 --- a/DeepNtuplizer/src/ntuple_SV.cc +++ b/DeepNtuplizer/src/ntuple_SV.cc @@ -37,6 +37,7 @@ void ntuple_SV::initBranches(TTree* tree){ addBranch(tree,(prefix_+"sv_pt").c_str() ,&sv_pt_ ,(prefix_+"sv_pt_["+prefix_+"sv_num_]/f").c_str() ); addBranch(tree,(prefix_+"sv_eta").c_str() ,&sv_eta_ ,(prefix_+"sv_eta_["+prefix_+"sv_num_]/f").c_str() ); addBranch(tree,(prefix_+"sv_phi").c_str() ,&sv_phi_ ,(prefix_+"sv_phi_["+prefix_+"sv_num_]/f").c_str() ); + addBranch(tree,(prefix_+"sv_e").c_str() ,&sv_e_ ,(prefix_+"sv_e_["+prefix_+"sv_num_]/f").c_str() ); addBranch(tree,(prefix_+"sv_etarel").c_str() ,&sv_etarel_ ,(prefix_+"sv_etarel_["+prefix_+"sv_num_]/f").c_str() ); addBranch(tree,(prefix_+"sv_phirel").c_str() ,&sv_phirel_ ,(prefix_+"sv_phirel_["+prefix_+"sv_num_]/f").c_str() ); addBranch(tree,(prefix_+"sv_deltaR").c_str() ,&sv_deltaR_ ,(prefix_+"sv_deltaR_["+prefix_+"sv_num_]/f").c_str() ); @@ -131,6 +132,7 @@ bool ntuple_SV::fillBranches(const pat::Jet & jet, const size_t& jetidx, const // of the tracks in the SV and the flight direction betwen PV and SV) sv_enratio_[sv_num_]=sv.energy()/jet_uncorr_e; + sv_e_[sv_num_]=sv.energy(); diff --git a/DeepNtuplizer/src/ntuple_pfCands.cc b/DeepNtuplizer/src/ntuple_pfCands.cc index fd019e32323..65c3bf9189c 100644 --- a/DeepNtuplizer/src/ntuple_pfCands.cc +++ b/DeepNtuplizer/src/ntuple_pfCands.cc @@ -18,6 +18,14 @@ #include "RecoVertex/VertexTools/interface/VertexDistance3D.h" #include "TVector3.h" +#include "DataFormats/GeometrySurface/interface/Line.h" +#include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h" +#include "TrackingTools/GeomPropagators/interface/AnalyticalTrajectoryExtrapolatorToLine.h" +#include "TrackingTools/GeomPropagators/interface/AnalyticalImpactPointExtrapolator.h" +#include "DataFormats/GeometryCommonDetAlgo/interface/Measurement1D.h" +#include "RecoVertex/VertexTools/interface/VertexDistanceXY.h" +#include "RecoVertex/VertexPrimitives/interface/ConvertToFromReco.h" + class TrackInfoBuilder{ public: TrackInfoBuilder(edm::ESHandle & build): @@ -36,7 +44,13 @@ class TrackInfoBuilder{ trackSip3dSig_(0), trackJetDistVal_(0), - trackJetDistSig_(0) + trackJetDistSig_(0), + //trackMinDistSV_(0), + //trackMinDistXSV_(0), + //trackMinDistYSV_(0), + //trackMinDistZSV_(0) + ttrack_(0) + { @@ -64,12 +78,18 @@ class TrackInfoBuilder{ trackSip3dSig_=0.; trackJetDistVal_=0.; trackJetDistSig_=0.; + //ttrack_ = 0; + //trackMinDistSV_=0.; + //trackMinDistXSV_=0.; + //trackMinDistYSV_=0.; + //trackMinDistZSV_=0.; return; } const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); reco::TransientTrack transientTrack; + //reco::TransientTrack* transientTrack2; transientTrack=builder->build(PseudoTrack); Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; @@ -77,6 +97,8 @@ class TrackInfoBuilder{ math::XYZVector trackMom = PseudoTrack.momentum(); double trackMag = std::sqrt(trackMom.Mag2()); TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + //float mindistsv = mindistsvpfcand(transientTrack); + //GlobalPoint mindistgpsv = mingpsvpfcand(transientTrack); trackMomentum_=std::sqrt(trackMom.Mag2()); @@ -93,10 +115,17 @@ class TrackInfoBuilder{ trackSip3dVal_=(meas_ip3d.value()); - trackSip3dSig_=meas_ip3d.significance(); + trackSip3dSig_= meas_ip3d.significance(); trackJetDistVal_= jetdist.value(); trackJetDistSig_= jetdist.significance(); + //trackMinDistSV_= mindistsv; + //trackMinDistXSV_= mindistgpsv.x(); + //trackMinDistYSV_= mindistgpsv.y(); + //trackMinDistZSV_= mindistgpsv.z(); + ttrack_ = transientTrack; + + } const float& getTrackDeltaR() const {return trackDeltaR_;} @@ -114,6 +143,13 @@ class TrackInfoBuilder{ const float& getTrackSip3dSig() const {return trackSip3dSig_;} const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const reco::TransientTrack getTTrack() const {return ttrack_;} + + //const float& getrackMinDistSV() const {return trackMinDistSV_;} + //const float& getTrackMinDistXSV() const {return trackMinDistXSV_;} + //const float& getTrackMinDistYSV() const {return trackMinDistYSV_;} + //const float& getTrackMinDistZSV() const {return trackMinDistZSV_;} + private: edm::ESHandle& builder; @@ -133,6 +169,11 @@ class TrackInfoBuilder{ float trackJetDistVal_; float trackJetDistSig_; + reco::TransientTrack ttrack_; + //float trackMinDistSV_; + //float trackMinDistXSV_; + //float trackMinDistYSV_; + //float trackMinDistZSV_; }; @@ -151,39 +192,47 @@ void ntuple_pfCands::getInput(const edm::ParameterSet& iConfig){ void ntuple_pfCands::initBranches(TTree* tree){ - addBranch(tree,"n_Cpfcand", &n_Cpfcand_,"n_Cpfcand_/i"); + addBranch(tree,"n_Cpfcand", &n_Cpfcand_,"n_Cpfcand_/I"); - addBranch(tree,"nCpfcand", &nCpfcand_,"nCpfcand_/f"); + addBranch(tree,"nCpfcand", &nCpfcand_,"nCpfcand_/F"); - addBranch(tree,"Cpfcan_pt", &Cpfcan_pt_,"Cpfcan_pt_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_eta", &Cpfcan_eta_,"Cpfcan_eta_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_phi", &Cpfcan_phi_,"Cpfcan_phi_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_ptrel", &Cpfcan_ptrel_,"Cpfcan_ptrel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_erel", &Cpfcan_erel_,"Cpfcan_erel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_phirel",&Cpfcan_phirel_,"Cpfcan_phirel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_etarel",&Cpfcan_etarel_,"Cpfcan_etarel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_deltaR",&Cpfcan_deltaR_,"Cpfcan_deltaR_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_puppiw",&Cpfcan_puppiw_,"Cpfcan_puppiw_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dxy",&Cpfcan_dxy_,"Cpfcan_dxy_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_pt", &Cpfcan_pt_,"Cpfcan_pt_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_eta", &Cpfcan_eta_,"Cpfcan_eta_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_phi", &Cpfcan_phi_,"Cpfcan_phi_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_ptrel", &Cpfcan_ptrel_,"Cpfcan_ptrel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_e", &Cpfcan_e_,"Cpfcan_e_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_erel", &Cpfcan_erel_,"Cpfcan_erel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_phirel",&Cpfcan_phirel_,"Cpfcan_phirel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_etarel",&Cpfcan_etarel_,"Cpfcan_etarel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_deltaR",&Cpfcan_deltaR_,"Cpfcan_deltaR_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_puppiw",&Cpfcan_puppiw_,"Cpfcan_puppiw_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxy",&Cpfcan_dxy_,"Cpfcan_dxy_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dxyerrinv",&Cpfcan_dxyerrinv_,"Cpfcan_dxyerrinv_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dxysig",&Cpfcan_dxysig_,"Cpfcan_dxysig_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_dxyerrinv",&Cpfcan_dxyerrinv_,"Cpfcan_dxyerrinv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxysig",&Cpfcan_dxysig_,"Cpfcan_dxysig_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dz",&Cpfcan_dz_,"Cpfcan_dz_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_dz",&Cpfcan_dz_,"Cpfcan_dz_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_VTX_ass",&Cpfcan_VTX_ass_,"Cpfcan_VTX_ass_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_VTX_ass",&Cpfcan_VTX_ass_,"Cpfcan_VTX_ass_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_fromPV",&Cpfcan_fromPV_,"Cpfcan_fromPV_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_fromPV",&Cpfcan_fromPV_,"Cpfcan_fromPV_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_drminsv",&Cpfcan_drminsv_,"Cpfcan_drminsv_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_drminsv",&Cpfcan_drminsv_,"Cpfcan_drminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_distminsv",&Cpfcan_distminsv_,"Cpfcan_distminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxminsv",&Cpfcan_dxminsv_,"Cpfcan_dxminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dyminsv",&Cpfcan_dyminsv_,"Cpfcan_dyminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dzminsv",&Cpfcan_dzminsv_,"Cpfcan_dzminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxpv",&Cpfcan_dxpv_,"Cpfcan_dxpv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dypv",&Cpfcan_dypv_,"Cpfcan_dypv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dzpv",&Cpfcan_dzpv_,"Cpfcan_dzpv_[n_Cpfcand_]/F"); //commented ones don't work /**///addBranch(tree,"Cpfcan_vertexChi2",&Cpfcan_vertexChi2_,"Cpfcan_vertexChi2_[n_Cpfcand_]/f"); /**///addBranch(tree,"Cpfcan_vertexNdof",&Cpfcan_vertexNdof_,"Cpfcan_vertexNdof_[n_Cpfcand_]/f"); /**///addBranch(tree,"Cpfcan_vertexNormalizedChi2",&Cpfcan_vertexNormalizedChi2_,"Cpfcan_vertexNormalizedChi2_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_vertex_rho",&Cpfcan_vertex_rho_,"Cpfcan_vertex_rho_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_vertex_phirel",&Cpfcan_vertex_phirel_,"Cpfcan_vertex_phirel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_vertex_etarel",&Cpfcan_vertex_etarel_,"Cpfcan_vertex_etarel_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_vertex_rho",&Cpfcan_vertex_rho_,"Cpfcan_vertex_rho_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_vertex_phirel",&Cpfcan_vertex_phirel_,"Cpfcan_vertex_phirel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_vertex_etarel",&Cpfcan_vertex_etarel_,"Cpfcan_vertex_etarel_[n_Cpfcand_]/F"); /**///addBranch(tree,"Cpfcan_vertexRef_mass",&Cpfcan_vertexRef_mass_,"Cpfcan_vertexRef_mass_[n_Cpfcand_]/f"); /* @@ -201,57 +250,123 @@ void ntuple_pfCands::initBranches(TTree* tree){ - addBranch(tree,"Cpfcan_BtagPf_trackMomentum",&Cpfcan_BtagPf_trackMomentum_,"Cpfcan_BtagPf_trackMomentum_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackEta",&Cpfcan_BtagPf_trackEta_,"Cpfcan_BtagPf_trackEta_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackEtaRel",&Cpfcan_BtagPf_trackEtaRel_,"Cpfcan_BtagPf_trackEtaRel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackPtRel",&Cpfcan_BtagPf_trackPtRel_,"Cpfcan_BtagPf_trackPtRel_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackPPar",&Cpfcan_BtagPf_trackPPar_,"Cpfcan_BtagPf_trackPPar_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackDeltaR",&Cpfcan_BtagPf_trackDeltaR_,"Cpfcan_BtagPf_trackDeltaR_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackPtRatio",&Cpfcan_BtagPf_trackPtRatio_,"Cpfcan_BtagPf_trackPtRatio_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackPParRatio",&Cpfcan_BtagPf_trackPParRatio_,"Cpfcan_BtagPf_trackPParRatio[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackSip3dVal",&Cpfcan_BtagPf_trackSip3dVal_,"Cpfcan_BtagPf_trackSip3dVal_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackSip3dSig",&Cpfcan_BtagPf_trackSip3dSig_,"Cpfcan_BtagPf_trackSip3dSig_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackSip2dVal",&Cpfcan_BtagPf_trackSip2dVal_,"Cpfcan_BtagPf_trackSip2dVal_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackSip2dSig",&Cpfcan_BtagPf_trackSip2dSig_,"Cpfcan_BtagPf_trackSip2dSig_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackDecayLen",&Cpfcan_BtagPf_trackDecayLen_,"Cpfcan_BtagPf_trackDecayLen_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackJetDistVal",&Cpfcan_BtagPf_trackJetDistVal_,"Cpfcan_BtagPf_trackJetDistVal_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_BtagPf_trackJetDistSig",&Cpfcan_BtagPf_trackJetDistSig_,"Cpfcan_BtagPf_trackJetDistSig_[n_Cpfcand_]/f"); - - - - - addBranch(tree,"Cpfcan_isMu",&Cpfcan_isMu_,"Cpfcan_isMu_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_isEl",&Cpfcan_isEl_,"Cpfcan_isEl_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_BtagPf_trackMomentum",&Cpfcan_BtagPf_trackMomentum_,"Cpfcan_BtagPf_trackMomentum_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackEta",&Cpfcan_BtagPf_trackEta_,"Cpfcan_BtagPf_trackEta_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackEtaRel",&Cpfcan_BtagPf_trackEtaRel_,"Cpfcan_BtagPf_trackEtaRel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPtRel",&Cpfcan_BtagPf_trackPtRel_,"Cpfcan_BtagPf_trackPtRel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPPar",&Cpfcan_BtagPf_trackPPar_,"Cpfcan_BtagPf_trackPPar_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackDeltaR",&Cpfcan_BtagPf_trackDeltaR_,"Cpfcan_BtagPf_trackDeltaR_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPtRatio",&Cpfcan_BtagPf_trackPtRatio_,"Cpfcan_BtagPf_trackPtRatio_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPParRatio",&Cpfcan_BtagPf_trackPParRatio_,"Cpfcan_BtagPf_trackPParRatio[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip3dVal",&Cpfcan_BtagPf_trackSip3dVal_,"Cpfcan_BtagPf_trackSip3dVal_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip3dSig",&Cpfcan_BtagPf_trackSip3dSig_,"Cpfcan_BtagPf_trackSip3dSig_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip2dVal",&Cpfcan_BtagPf_trackSip2dVal_,"Cpfcan_BtagPf_trackSip2dVal_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip2dSig",&Cpfcan_BtagPf_trackSip2dSig_,"Cpfcan_BtagPf_trackSip2dSig_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackDecayLen",&Cpfcan_BtagPf_trackDecayLen_,"Cpfcan_BtagPf_trackDecayLen_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackJetDistVal",&Cpfcan_BtagPf_trackJetDistVal_,"Cpfcan_BtagPf_trackJetDistVal_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackJetDistSig",&Cpfcan_BtagPf_trackJetDistSig_,"Cpfcan_BtagPf_trackJetDistSig_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_isMu",&Cpfcan_isMu_,"Cpfcan_isMu_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_isEl",&Cpfcan_isEl_,"Cpfcan_isEl_[n_Cpfcand_]/F"); + // did not give integers !! + addBranch(tree,"Cpfcan_charge",&Cpfcan_charge_,"Cpfcan_charge_[n_Cpfcand_]/F"); //in16 conversion broken - addBranch(tree,"Cpfcan_lostInnerHits",&Cpfcan_lostInnerHits_,"Cpfcan_lostInnerHits_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_numberOfPixelHits",&Cpfcan_numberOfPixelHits_,"Cpfcan_numberOfPixelHits_[n_Cpfcand_]/f"); - - addBranch(tree,"Cpfcan_chi2",&Cpfcan_chi2_,"Cpfcan_chi2_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_quality",&Cpfcan_quality_,"Cpfcan_quality_[n_Cpfcand_]/f"); - - // did not give integers !! - addBranch(tree,"Cpfcan_charge",&Cpfcan_charge_,"Cpfcan_charge_[n_Cpfcand_]/f"); + addBranch(tree,"Cpfcan_lostInnerHits",&Cpfcan_lostInnerHits_,"Cpfcan_lostInnerHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfPixelHits",&Cpfcan_numberOfPixelHits_,"Cpfcan_numberOfPixelHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_chi2",&Cpfcan_chi2_,"Cpfcan_chi2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_quality",&Cpfcan_quality_,"Cpfcan_quality_[n_Cpfcand_]/F"); + //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h + //Tracker per layer + //Pixel barrel + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer1",&Cpfcan_nhitpixelBarrelLayer1_,"Cpfcan_nhitpixelBarrelLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer2",&Cpfcan_nhitpixelBarrelLayer2_,"Cpfcan_nhitpixelBarrelLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer3",&Cpfcan_nhitpixelBarrelLayer3_,"Cpfcan_nhitpixelBarrelLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer4",&Cpfcan_nhitpixelBarrelLayer4_,"Cpfcan_nhitpixelBarrelLayer4_[n_Cpfcand_]/F"); + //Pixel Endcap + addBranch(tree,"Cpfcan_nhitpixelEndcapLayer1",&Cpfcan_nhitpixelEndcapLayer1_,"Cpfcan_nhitpixelEndcapLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelEndcapLayer2",&Cpfcan_nhitpixelEndcapLayer2_,"Cpfcan_nhitpixelEndcapLayer2_[n_Cpfcand_]/F"); + //Strip TIB + addBranch(tree,"Cpfcan_nhitstripTIBLayer1",&Cpfcan_nhitstripTIBLayer1_,"Cpfcan_nhitstripTIBLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIBLayer2",&Cpfcan_nhitstripTIBLayer2_,"Cpfcan_nhitstripTIBLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIBLayer3",&Cpfcan_nhitstripTIBLayer3_,"Cpfcan_nhitstripTIBLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIBLayer4",&Cpfcan_nhitstripTIBLayer4_,"Cpfcan_nhitstripTIBLayer4_[n_Cpfcand_]/F"); + //Strip TID + addBranch(tree,"Cpfcan_nhitstripTIDLayer1",&Cpfcan_nhitstripTIDLayer1_,"Cpfcan_nhitstripTIDLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIDLayer2",&Cpfcan_nhitstripTIDLayer2_,"Cpfcan_nhitstripTIDLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIDLayer3",&Cpfcan_nhitstripTIDLayer3_,"Cpfcan_nhitstripTIDLayer3_[n_Cpfcand_]/F"); + //Strip TOB + addBranch(tree,"Cpfcan_nhitstripTOBLayer1",&Cpfcan_nhitstripTOBLayer1_,"Cpfcan_nhitstripTOBLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer2",&Cpfcan_nhitstripTOBLayer2_,"Cpfcan_nhitstripTOBLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer3",&Cpfcan_nhitstripTOBLayer3_,"Cpfcan_nhitstripTOBLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer4",&Cpfcan_nhitstripTOBLayer4_,"Cpfcan_nhitstripTOBLayer4_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer5",&Cpfcan_nhitstripTOBLayer5_,"Cpfcan_nhitstripTOBLayer5_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer6",&Cpfcan_nhitstripTOBLayer6_,"Cpfcan_nhitstripTOBLayer6_[n_Cpfcand_]/F"); + //Strip TEC + addBranch(tree,"Cpfcan_nhitstripTECLayer1",&Cpfcan_nhitstripTECLayer1_,"Cpfcan_nhitstripTECLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer2",&Cpfcan_nhitstripTECLayer2_,"Cpfcan_nhitstripTECLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer3",&Cpfcan_nhitstripTECLayer3_,"Cpfcan_nhitstripTECLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer4",&Cpfcan_nhitstripTECLayer4_,"Cpfcan_nhitstripTECLayer4_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer5",&Cpfcan_nhitstripTECLayer5_,"Cpfcan_nhitstripTECLayer5_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer6",&Cpfcan_nhitstripTECLayer6_,"Cpfcan_nhitstripTECLayer6_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer7",&Cpfcan_nhitstripTECLayer7_,"Cpfcan_nhitstripTECLayer7_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer8",&Cpfcan_nhitstripTECLayer8_,"Cpfcan_nhitstripTECLayer8_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer9",&Cpfcan_nhitstripTECLayer9_,"Cpfcan_nhitstripTECLayer9_[n_Cpfcand_]/F"); + //Tracker all layers together + //Valid hits + addBranch(tree,"Cpfcan_numberOfValidHits",&Cpfcan_numberOfValidHits_,"Cpfcan_numberOfValidHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidTrackerHits",&Cpfcan_numberOfValidTrackerHits_,"Cpfcan_numberOfValidTrackerHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidPixelHits",&Cpfcan_numberOfValidPixelHits_,"Cpfcan_numberOfValidPixelHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidPixelBarrelHits",&Cpfcan_numberOfValidPixelBarrelHits_,"Cpfcan_numberOfValidPixelBarrelHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidPixelEndcapHits",&Cpfcan_numberOfValidPixelEndcapHits_,"Cpfcan_numberOfValidPixelEndcapHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripHits",&Cpfcan_numberOfValidStripHits_,"Cpfcan_numberOfValidStripHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTIBHits",&Cpfcan_numberOfValidStripTIBHits_,"Cpfcan_numberOfValidStripTIBHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTIDHits",&Cpfcan_numberOfValidStripTIDHits_,"Cpfcan_numberOfValidStripTIDHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTOBHits",&Cpfcan_numberOfValidStripTOBHits_,"Cpfcan_numberOfValidStripTOBHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTECHits",&Cpfcan_numberOfValidStripTECHits_,"Cpfcan_numberOfValidStripTECHits_[n_Cpfcand_]/F"); + //LayersWithMeasuremen + addBranch(tree,"Cpfcan_trackerLayersWithMeasurementOld",&Cpfcan_trackerLayersWithMeasurementOld_,"Cpfcan_trackerLayersWithMeasurementOld_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_trackerLayersWithMeasurement",&Cpfcan_trackerLayersWithMeasurement_,"Cpfcan_trackerLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelLayersWithMeasurementOld",&Cpfcan_pixelLayersWithMeasurementOld_,"Cpfcan_pixelLayersWithMeasurementOld_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelLayersWithMeasurement",&Cpfcan_pixelLayersWithMeasurement_,"Cpfcan_pixelLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripLayersWithMeasurement",&Cpfcan_stripLayersWithMeasurement_,"Cpfcan_stripLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelBarrelLayersWithMeasurement",&Cpfcan_pixelBarrelLayersWithMeasurement_,"Cpfcan_pixelBarrelLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelEndcapLayersWithMeasurement",&Cpfcan_pixelEndcapLayersWithMeasurement_,"Cpfcan_pixelEndcapLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIBLayersWithMeasurement",&Cpfcan_stripTIBLayersWithMeasurement_,"Cpfcan_stripTIBLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIDLayersWithMeasurement",&Cpfcan_stripTIDLayersWithMeasurement_,"Cpfcan_stripTIDLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTOBLayersWithMeasurement",&Cpfcan_stripTOBLayersWithMeasurement_,"Cpfcan_stripTOBLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTECLayersWithMeasurement",&Cpfcan_stripTECLayersWithMeasurement_,"Cpfcan_stripTECLayersWithMeasurement_[n_Cpfcand_]/F"); + //Null + addBranch(tree,"Cpfcan_trackerLayersNull",&Cpfcan_trackerLayersNull_,"Cpfcan_trackerLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelLayersNull",&Cpfcan_pixelLayersNull_,"Cpfcan_pixelLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripLayersNull",&Cpfcan_stripLayersNull_,"Cpfcan_stripLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelBarrelLayersNull",&Cpfcan_pixelBarrelLayersNull_,"Cpfcan_pixelBarrelLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelEndcapLayersNull",&Cpfcan_pixelEndcapLayersNull_,"Cpfcan_pixelEndcapLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIBLayersNull",&Cpfcan_stripTIBLayersNull_,"Cpfcan_stripTIBLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIDLayersNull",&Cpfcan_stripTIDLayersNull_,"Cpfcan_stripTIDLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTOBLayersNull",&Cpfcan_stripTOBLayersNull_,"Cpfcan_stripTOBLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTECLayersNull",&Cpfcan_stripTECLayersNull_,"Cpfcan_stripTECLayersNull_[n_Cpfcand_]/F"); //Neutral Pf candidates - addBranch(tree,"n_Npfcand", &n_Npfcand_,"n_Npfcand_/i"); - addBranch(tree,"nNpfcand", &nNpfcand_,"nNpfcand/f"); + addBranch(tree,"n_Npfcand", &n_Npfcand_,"n_Npfcand_/I"); + addBranch(tree,"nNpfcand", &nNpfcand_,"nNpfcand/F"); - addBranch(tree,"Npfcan_pt", &Npfcan_pt_,"Npfcan_pt_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_eta", &Npfcan_eta_,"Npfcan_eta_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_phi", &Npfcan_phi_,"Npfcan_phi_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_ptrel", &Npfcan_ptrel_,"Npfcan_ptrel_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_erel", &Npfcan_erel_,"Npfcan_erel_[n_Npfcand_]/f"); + addBranch(tree,"Npfcan_pt", &Npfcan_pt_,"Npfcan_pt_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_eta", &Npfcan_eta_,"Npfcan_eta_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_phi", &Npfcan_phi_,"Npfcan_phi_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_ptrel", &Npfcan_ptrel_,"Npfcan_ptrel_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_e", &Npfcan_e_,"Npfcan_e_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_erel", &Npfcan_erel_,"Npfcan_erel_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_puppiw", &Npfcan_puppiw_,"Npfcan_puppiw_[n_Npfcand_]/f"); + addBranch(tree,"Npfcan_puppiw", &Npfcan_puppiw_,"Npfcan_puppiw_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_phirel",&Npfcan_phirel_,"Npfcan_phirel_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_etarel",&Npfcan_etarel_,"Npfcan_etarel_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_deltaR",&Npfcan_deltaR_,"Npfcan_deltaR_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_isGamma",&Npfcan_isGamma_,"Npfcan_isGamma_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_HadFrac",&Npfcan_HadFrac_,"Npfcan_HadFrac_[n_Npfcand_]/f"); - addBranch(tree,"Npfcan_drminsv",&Npfcan_drminsv_,"Npfcan_drminsv_[n_Npfcand_]/f"); + addBranch(tree,"Npfcan_phirel",&Npfcan_phirel_,"Npfcan_phirel_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_etarel",&Npfcan_etarel_,"Npfcan_etarel_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_deltaR",&Npfcan_deltaR_,"Npfcan_deltaR_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_isGamma",&Npfcan_isGamma_,"Npfcan_isGamma_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_HadFrac",&Npfcan_HadFrac_,"Npfcan_HadFrac_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_drminsv",&Npfcan_drminsv_,"Npfcan_drminsv_[n_Npfcand_]/F"); } @@ -276,6 +391,7 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co const reco::Vertex & pv = vertices()->at(0); + std::vector > sortedcharged, sortedneutrals; const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); @@ -333,6 +449,7 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Cpfcan_phi_[fillntupleentry] = PackedCandidate_->phi(); Cpfcan_ptrel_[fillntupleentry] = catchInfsAndBound(PackedCandidate_->pt()/jet_uncorr_pt,0,-1,0,-1); Cpfcan_erel_[fillntupleentry] = catchInfsAndBound(PackedCandidate_->energy()/jet_uncorr_e,0,-1,0,-1); + Cpfcan_e_[fillntupleentry] = PackedCandidate_->energy(); Cpfcan_phirel_[fillntupleentry] = catchInfsAndBound(fabs(reco::deltaPhi(PackedCandidate_->phi(),jet.phi())),0,-2,0,-0.5); Cpfcan_etarel_[fillntupleentry] = catchInfsAndBound(fabs(PackedCandidate_->eta()-jet.eta()),0,-2,0,-0.5); Cpfcan_deltaR_[fillntupleentry] =catchInfsAndBound(reco::deltaR(*PackedCandidate_,jet),0,-0.6,0,-0.6); @@ -381,6 +498,25 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co trackinfo.buildTrackInfo(PackedCandidate_,jetDir,jetRefTrackDir,pv); + const reco::TransientTrack ttrack = trackinfo.getTTrack(); + float mindistsv = mindistsvpfcand(ttrack); + GlobalPoint mindistgpsv = mingpsvpfcand(ttrack); + GlobalPoint gppv = gppvpfcand(ttrack, jetRefTrackDir, pv); + + Cpfcan_distminsv_[fillntupleentry] = mindistsv; + Cpfcan_dxminsv_[fillntupleentry] = mindistgpsv.x(); + Cpfcan_dyminsv_[fillntupleentry] = mindistgpsv.y(); + Cpfcan_dzminsv_[fillntupleentry] = mindistgpsv.z(); + Cpfcan_dxpv_[fillntupleentry] = gppv.x(); + Cpfcan_dypv_[fillntupleentry] = gppv.y(); + Cpfcan_dzpv_[fillntupleentry] = gppv.z(); + + //trackMinDistSV_= mindistsv; + //trackMinDistXSV_= mindistgpsv.x(); + //trackMinDistYSV_= mindistgpsv.y(); + //trackMinDistZSV_= mindistgpsv.z(); + + Cpfcan_BtagPf_trackMomentum_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackMomentum(),0,0 ,1000); Cpfcan_BtagPf_trackEta_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackEta() , 0,-5,5); Cpfcan_BtagPf_trackEtaRel_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackEtaRel(), 0,-5,15); @@ -412,19 +548,272 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Cpfcan_charge_[fillntupleentry] = cand_charge_; Cpfcan_lostInnerHits_[fillntupleentry] = catchInfs(PackedCandidate_->lostInnerHits(),2); Cpfcan_numberOfPixelHits_[fillntupleentry] = catchInfs(PackedCandidate_->numberOfPixelHits(),-1); - //std::cout << PackedCandidate_->lostInnerHits()<< " inner hits " <numberOfPixelHits()<< " Pixel hits + masked " <pixelLayersWithMeasurement()<< " Pixel hits " <hasTrackDetails() ? \ catchInfsAndBound(PackedCandidate_->pseudoTrack().normalizedChi2(),300,-1,300) : -1; //for some reason this returns the quality enum not a mask. Cpfcan_quality_[fillntupleentry] = PackedCandidate_->hasTrackDetails() ? PackedCandidate_->pseudoTrack().qualityMask() : (1 << reco::TrackBase::loose); - Cpfcan_drminsv_[fillntupleentry] = catchInfsAndBound(drminpfcandsv_,0,-0.4,0,-0.4); - + //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h + //get track associated to a jet constituent + const reco::Track *track_ptr = nullptr; + auto pf_candidate = dynamic_cast(PackedCandidate_); + auto packed_candidate = dynamic_cast(PackedCandidate_); + if(pf_candidate){ + track_ptr = pf_candidate->bestTrack(); //trackRef was sometimes null + }else if(packed_candidate && packed_candidate->hasTrackDetails()){//if PackedCandidate does not have TrackDetails this gives an Exception because unpackCovariance might be called for pseudoTrack/bestTrack + track_ptr = &(packed_candidate->pseudoTrack()); + } + //get hit pattern information + if(track_ptr){ + const reco::HitPattern &p = track_ptr->hitPattern(); + //Tracker per layer + //Pixel barrel + int Cpfcan_nhitpixelBarrelLayer1 = 0; + int Cpfcan_nhitpixelBarrelLayer2 = 0; + int Cpfcan_nhitpixelBarrelLayer3 = 0; + int Cpfcan_nhitpixelBarrelLayer4 = 0; + //Pixel Endcap + int Cpfcan_nhitpixelEndcapLayer1 = 0; + int Cpfcan_nhitpixelEndcapLayer2 = 0; + //Strip TIB + int Cpfcan_nhitstripTIBLayer1 = 0; + int Cpfcan_nhitstripTIBLayer2 = 0; + int Cpfcan_nhitstripTIBLayer3 = 0; + int Cpfcan_nhitstripTIBLayer4 = 0; + //Strip TID + int Cpfcan_nhitstripTIDLayer1 = 0; + int Cpfcan_nhitstripTIDLayer2 = 0; + int Cpfcan_nhitstripTIDLayer3 = 0; + //Strip TOB + int Cpfcan_nhitstripTOBLayer1 = 0; + int Cpfcan_nhitstripTOBLayer2 = 0; + int Cpfcan_nhitstripTOBLayer3 = 0; + int Cpfcan_nhitstripTOBLayer4 = 0; + int Cpfcan_nhitstripTOBLayer5 = 0; + int Cpfcan_nhitstripTOBLayer6 = 0; + //Strip TEC + int Cpfcan_nhitstripTECLayer1 = 0; + int Cpfcan_nhitstripTECLayer2 = 0; + int Cpfcan_nhitstripTECLayer3 = 0; + int Cpfcan_nhitstripTECLayer4 = 0; + int Cpfcan_nhitstripTECLayer5 = 0; + int Cpfcan_nhitstripTECLayer6 = 0; + int Cpfcan_nhitstripTECLayer7 = 0; + int Cpfcan_nhitstripTECLayer8 = 0; + int Cpfcan_nhitstripTECLayer9 = 0; + // loop over the hits of the track. + //const static unsigned short LayerOffset = 3; + //const static unsigned short LayerMask = 0xF; + for(int nh = 0; nh < p.numberOfAllHits(reco::HitPattern::TRACK_HITS); nh++){ + uint32_t hit = p.getHitPattern(reco::HitPattern::TRACK_HITS, nh); + if(p.validHitFilter(hit)){// if the hit is valid + //Pixel Barrel // it is in pixel barrel + if(p.pixelBarrelHitFilter(hit)){ + //std::cout << "valid hit found in pixel Barrel layer " << p.getLayer(hit) << std::endl; + //if(p.getLayer(hit)==1){ + // std::cout<< (hit >> LayerOffset) << " " << ((hit >> LayerOffset) & LayerMask) << std::endl; + //} + if(p.getLayer(hit)==1) Cpfcan_nhitpixelBarrelLayer1 = Cpfcan_nhitpixelBarrelLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitpixelBarrelLayer2 = Cpfcan_nhitpixelBarrelLayer2+1; + if(p.getLayer(hit)==3) Cpfcan_nhitpixelBarrelLayer3 = Cpfcan_nhitpixelBarrelLayer3+1; + if(p.getLayer(hit)==4) Cpfcan_nhitpixelBarrelLayer4 = Cpfcan_nhitpixelBarrelLayer4+1; + } + //Pixel Endcap + if(p.pixelEndcapHitFilter(hit)){ + //std::cout << "valid hit found in pixel Endcap layer " << p.getLayer(hit) << std::endl; + if(p.getLayer(hit)==1) Cpfcan_nhitpixelEndcapLayer1 = Cpfcan_nhitpixelEndcapLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitpixelEndcapLayer2 = Cpfcan_nhitpixelEndcapLayer2+1; + } + //Strip TIB + if(p.stripTIBHitFilter(hit)){ + //std::cout << "valid hit found in TIB layer " << p.getLayer(hit) << std::endl; + if(p.getLayer(hit)==1) Cpfcan_nhitstripTIBLayer1 = Cpfcan_nhitstripTIBLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitstripTIBLayer2 = Cpfcan_nhitstripTIBLayer2+1; + if(p.getLayer(hit)==3) Cpfcan_nhitstripTIBLayer3 = Cpfcan_nhitstripTIBLayer3+1; + if(p.getLayer(hit)==4) Cpfcan_nhitstripTIBLayer4 = Cpfcan_nhitstripTIBLayer4+1; + } + //Strip TID + if(p.stripTIDHitFilter(hit)){ + //std::cout << "valid hit found in TID layer " << p.getLayer(hit) << std::endl; + if(p.getLayer(hit)==1) Cpfcan_nhitstripTIDLayer1 = Cpfcan_nhitstripTIDLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitstripTIDLayer2 = Cpfcan_nhitstripTIDLayer2+1; + if(p.getLayer(hit)==3) Cpfcan_nhitstripTIDLayer3 = Cpfcan_nhitstripTIDLayer3+1; + } + //Strip TOB + if(p.stripTOBHitFilter(hit)){ + //std::cout << "valid hit found in TOB layer " << p.getLayer(hit) << std::endl; + if(p.getLayer(hit)==1) Cpfcan_nhitstripTOBLayer1 = Cpfcan_nhitstripTOBLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitstripTOBLayer2 = Cpfcan_nhitstripTOBLayer2+1; + if(p.getLayer(hit)==3) Cpfcan_nhitstripTOBLayer3 = Cpfcan_nhitstripTOBLayer3+1; + if(p.getLayer(hit)==4) Cpfcan_nhitstripTOBLayer4 = Cpfcan_nhitstripTOBLayer4+1; + if(p.getLayer(hit)==5) Cpfcan_nhitstripTOBLayer5 = Cpfcan_nhitstripTOBLayer5+1; + if(p.getLayer(hit)==6) Cpfcan_nhitstripTOBLayer6 = Cpfcan_nhitstripTOBLayer6+1; + } + //Strip TEC + if(p.stripTECHitFilter(hit)){ + //std::cout << "valid hit found in TEC layer " << p.getLayer(hit) << std::endl; + if(p.getLayer(hit)==1) Cpfcan_nhitstripTECLayer1 = Cpfcan_nhitstripTECLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitstripTECLayer2 = Cpfcan_nhitstripTECLayer2+1; + if(p.getLayer(hit)==3) Cpfcan_nhitstripTECLayer3 = Cpfcan_nhitstripTECLayer3+1; + if(p.getLayer(hit)==4) Cpfcan_nhitstripTECLayer4 = Cpfcan_nhitstripTECLayer4+1; + if(p.getLayer(hit)==5) Cpfcan_nhitstripTECLayer5 = Cpfcan_nhitstripTECLayer5+1; + if(p.getLayer(hit)==6) Cpfcan_nhitstripTECLayer6 = Cpfcan_nhitstripTECLayer6+1; + if(p.getLayer(hit)==7) Cpfcan_nhitstripTECLayer7 = Cpfcan_nhitstripTECLayer7+1; + if(p.getLayer(hit)==8) Cpfcan_nhitstripTECLayer8 = Cpfcan_nhitstripTECLayer8+1; + if(p.getLayer(hit)==9) Cpfcan_nhitstripTECLayer9 = Cpfcan_nhitstripTECLayer9+1; + } + } + //// expert level: printout the hit in 11-bit binary format + //std::cout << "hit in 11-bit binary format = "; + //for (int j = 10; j >= 0; j--){ + // int bit = (hit >> j) & 0x1; + // std::cout << bit; + //} + //std::cout << std::endl; + } + //Pixel Barrel + Cpfcan_nhitpixelBarrelLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer1,-1,0,100,0) : -1; + Cpfcan_nhitpixelBarrelLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer2,-1,0,100,0) : -1; + Cpfcan_nhitpixelBarrelLayer3_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer3,-1,0,100,0) : -1; + Cpfcan_nhitpixelBarrelLayer4_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer4,-1,0,100,0) : -1; + //Pixel Endcap + Cpfcan_nhitpixelEndcapLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelEndcapHits()) ? catchInfsAndBound(Cpfcan_nhitpixelEndcapLayer1,-1,0,100,0) : -1; + Cpfcan_nhitpixelEndcapLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelEndcapHits()) ? catchInfsAndBound(Cpfcan_nhitpixelEndcapLayer2,-1,0,100,0) : -1; + //Strip TIB + Cpfcan_nhitstripTIBLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIBLayer1,-1,0,100,0) : -1; + Cpfcan_nhitstripTIBLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIBLayer2,-1,0,100,0) : -1; + Cpfcan_nhitstripTIBLayer3_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIBLayer3,-1,0,100,0) : -1; + Cpfcan_nhitstripTIBLayer4_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIBLayer4,-1,0,100,0) : -1; + //Strip TID + Cpfcan_nhitstripTIDLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIDHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIDLayer1,-1,0,100,0) : -1; + Cpfcan_nhitstripTIDLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIDHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIDLayer2,-1,0,100,0) : -1; + Cpfcan_nhitstripTIDLayer3_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIDHits()) ? catchInfsAndBound(Cpfcan_nhitstripTIDLayer3,-1,0,100,0) : -1; + //Strip TOB + Cpfcan_nhitstripTOBLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTOBLayer1,-1,0,100,0) : -1; + Cpfcan_nhitstripTOBLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTOBLayer2,-1,0,100,0) : -1; + Cpfcan_nhitstripTOBLayer3_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTOBLayer3,-1,0,100,0) : -1; + Cpfcan_nhitstripTOBLayer4_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTOBLayer4,-1,0,100,0) : -1; + Cpfcan_nhitstripTOBLayer5_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTOBLayer5,-1,0,100,0) : -1; + Cpfcan_nhitstripTOBLayer6_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(Cpfcan_nhitstripTOBLayer6,-1,0,100,0) : -1; + //Strip TEC + Cpfcan_nhitstripTECLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer1,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer2,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer3_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer3,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer4_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer4,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer5_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer5,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer6_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer6,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer7_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer7,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer8_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer8,-1,0,100,0) : -1; + Cpfcan_nhitstripTECLayer9_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(Cpfcan_nhitstripTECLayer9,-1,0,100,0) : -1; + //Tracker all layers together + //Valid hits + Cpfcan_numberOfValidHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidTrackerHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidTrackerHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidTrackerHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidPixelHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidPixelHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidPixelBarrelHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidPixelBarrelHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidPixelEndcapHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelEndcapHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidPixelEndcapHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidStripHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidStripTIBHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIBHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTIBHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidStripTIDHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIDHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTIDHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidStripTOBHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTOBHits(),-1,0,100,0) : -1; + Cpfcan_numberOfValidStripTECHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTECHits(),-1,0,100,0) : -1; + //LayersWithMeasurement + Cpfcan_trackerLayersWithMeasurementOld_[fillntupleentry] = (track_ptr->hitPattern().trackerLayersWithMeasurementOld()) ? catchInfsAndBound(track_ptr->hitPattern().trackerLayersWithMeasurementOld(),-1,0,100,0) : -1; + Cpfcan_trackerLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().trackerLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().trackerLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_pixelLayersWithMeasurementOld_[fillntupleentry] = (track_ptr->hitPattern().pixelLayersWithMeasurementOld()) ? catchInfsAndBound(track_ptr->hitPattern().pixelLayersWithMeasurementOld(),-1,0,100,0) : -1; + Cpfcan_pixelLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().pixelLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().pixelLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_stripLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().stripLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().stripLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_pixelBarrelLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().pixelBarrelLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().pixelBarrelLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_pixelEndcapLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().pixelEndcapLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().pixelEndcapLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_stripTIBLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().stripTIBLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().stripTIBLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_stripTIDLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().stripTIDLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().stripTIDLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_stripTOBLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().stripTOBLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().stripTOBLayersWithMeasurement(),-1,0,100,0) : -1; + Cpfcan_stripTECLayersWithMeasurement_[fillntupleentry] = (track_ptr->hitPattern().stripTECLayersWithMeasurement()) ? catchInfsAndBound(track_ptr->hitPattern().stripTECLayersWithMeasurement(),-1,0,100,0) : -1; + //Null + Cpfcan_trackerLayersNull_[fillntupleentry] = (track_ptr->hitPattern().trackerLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().trackerLayersNull(),-1,0,100,0) : -1; + Cpfcan_pixelLayersNull_[fillntupleentry] = (track_ptr->hitPattern().pixelLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().pixelLayersNull(),-1,0,100,0) : -1; + Cpfcan_stripLayersNull_[fillntupleentry] = (track_ptr->hitPattern().stripLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().stripLayersNull(),-1,0,100,0) : -1; + Cpfcan_pixelBarrelLayersNull_[fillntupleentry] = (track_ptr->hitPattern().pixelBarrelLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().pixelBarrelLayersNull(),-1,0,100,0) : -1; + Cpfcan_pixelEndcapLayersNull_[fillntupleentry] = (track_ptr->hitPattern().pixelEndcapLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().pixelEndcapLayersNull(),-1,0,100,0) : -1; + Cpfcan_stripTIBLayersNull_[fillntupleentry] = (track_ptr->hitPattern().stripTIBLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().stripTIBLayersNull(),-1,0,100,0) : -1; + Cpfcan_stripTIDLayersNull_[fillntupleentry] = (track_ptr->hitPattern().stripTIDLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().stripTIDLayersNull(),-1,0,100,0) : -1; + Cpfcan_stripTOBLayersNull_[fillntupleentry] = (track_ptr->hitPattern().stripTOBLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().stripTOBLayersNull(),-1,0,100,0) : -1; + Cpfcan_stripTECLayersNull_[fillntupleentry] = (track_ptr->hitPattern().stripTECLayersNull()) ? catchInfsAndBound(track_ptr->hitPattern().stripTECLayersNull(),-1,0,100,0) : -1; + }else{ + //Tracker per layer + //Pixel barrel + Cpfcan_nhitpixelBarrelLayer1_[fillntupleentry] = -1; + Cpfcan_nhitpixelBarrelLayer2_[fillntupleentry] = -1; + Cpfcan_nhitpixelBarrelLayer3_[fillntupleentry] = -1; + Cpfcan_nhitpixelBarrelLayer4_[fillntupleentry] = -1; + //Pixel Endcap + Cpfcan_nhitpixelEndcapLayer1_[fillntupleentry] = -1; + Cpfcan_nhitpixelEndcapLayer2_[fillntupleentry] = -1; + //Strip TIB + Cpfcan_nhitstripTIBLayer1_[fillntupleentry] = -1; + Cpfcan_nhitstripTIBLayer2_[fillntupleentry] = -1; + Cpfcan_nhitstripTIBLayer3_[fillntupleentry] = -1; + Cpfcan_nhitstripTIBLayer4_[fillntupleentry] = -1; + //Strip TID + Cpfcan_nhitstripTIDLayer1_[fillntupleentry] = -1; + Cpfcan_nhitstripTIDLayer2_[fillntupleentry] = -1; + Cpfcan_nhitstripTIDLayer3_[fillntupleentry] = -1; + //Strip TOB + Cpfcan_nhitstripTOBLayer1_[fillntupleentry] = -1; + Cpfcan_nhitstripTOBLayer2_[fillntupleentry] = -1; + Cpfcan_nhitstripTOBLayer3_[fillntupleentry] = -1; + Cpfcan_nhitstripTOBLayer4_[fillntupleentry] = -1; + Cpfcan_nhitstripTOBLayer5_[fillntupleentry] = -1; + Cpfcan_nhitstripTOBLayer6_[fillntupleentry] = -1; + //Strip TEC + Cpfcan_nhitstripTECLayer1_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer2_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer3_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer4_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer5_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer6_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer7_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer8_[fillntupleentry] = -1; + Cpfcan_nhitstripTECLayer9_[fillntupleentry] = -1; + //Tracker all layers together + //Valid hits + Cpfcan_numberOfValidHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidTrackerHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidPixelHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidPixelBarrelHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidPixelEndcapHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidStripHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidStripTIBHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidStripTIDHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidStripTOBHits_[fillntupleentry] = -1; + Cpfcan_numberOfValidStripTECHits_[fillntupleentry] = -1; + //LayersWithMeasurement + Cpfcan_trackerLayersWithMeasurementOld_[fillntupleentry] = -1; + Cpfcan_trackerLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_pixelLayersWithMeasurementOld_[fillntupleentry] = -1; + Cpfcan_pixelLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_stripLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_pixelBarrelLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_pixelEndcapLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_stripTIBLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_stripTIDLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_stripTOBLayersWithMeasurement_[fillntupleentry] = -1; + Cpfcan_stripTECLayersWithMeasurement_[fillntupleentry] = -1; + //Null + Cpfcan_trackerLayersNull_[fillntupleentry] = -1; + Cpfcan_pixelLayersNull_[fillntupleentry] = -1; + Cpfcan_stripLayersNull_[fillntupleentry] = -1; + Cpfcan_pixelBarrelLayersNull_[fillntupleentry] = -1; + Cpfcan_pixelEndcapLayersNull_[fillntupleentry] = -1; + Cpfcan_stripTIBLayersNull_[fillntupleentry] = -1; + Cpfcan_stripTIDLayersNull_[fillntupleentry] = -1; + Cpfcan_stripTOBLayersNull_[fillntupleentry] = -1; + Cpfcan_stripTECLayersNull_[fillntupleentry] = -1; + } } else{// neutral candidates @@ -437,6 +826,7 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Npfcan_phi_[fillntupleentry] = PackedCandidate_->phi(); Npfcan_ptrel_[fillntupleentry] = catchInfsAndBound(PackedCandidate_->pt()/jet_uncorr_pt,0,-1,0,-1); Npfcan_erel_[fillntupleentry] = catchInfsAndBound(PackedCandidate_->energy()/jet_uncorr_e,0,-1,0,-1); + Npfcan_e_[fillntupleentry] = PackedCandidate_->energy(); Npfcan_puppiw_[fillntupleentry] = PackedCandidate_->puppiWeight(); Npfcan_phirel_[fillntupleentry] = catchInfsAndBound(fabs(reco::deltaPhi(PackedCandidate_->phi(),jet.phi())),0,-2,0,-0.5); Npfcan_etarel_[fillntupleentry] = catchInfsAndBound(fabs(PackedCandidate_->eta()-jet.eta()),0,-2,0,-0.5); @@ -484,3 +874,110 @@ float ntuple_pfCands::mindrsvpfcand(const pat::PackedCandidate* pfcand) { } return mindr_; } + +float ntuple_pfCands::mindistsvpfcand(const reco::TransientTrack track) { + + float mindist_ = 999.999; + float out_dist = 0.0; + for (unsigned int i=0; isize(); ++i) { + if (!track.isValid()) {continue;} + reco::Vertex::CovarianceMatrix csv; secVertices()->at(i).fillVertexCovariance(csv); + reco::Vertex vertex(secVertices()->at(i).vertex(), csv); + if (!vertex.isValid()) {continue;} + + GlobalVector direction(secVertices()->at(i).px(),secVertices()->at(i).py(),secVertices()->at(i).pz()); + + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (!tsos.isValid()) {continue;} + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (!result.first) {continue;} + + GlobalPoint impactPoint = tsos.globalPosition(); + GlobalVector IPVec(impactPoint.x() - vertex.x(), impactPoint.y() - vertex.y(), impactPoint.z() - vertex.z()); + double prod = IPVec.dot(direction); + double sign = (prod >= 0) ? 1. : -1.; + + if(result.second.value() < mindist_){ + out_dist = sign * result.second.value(); + mindist_ = result.second.value(); + } + } + return out_dist; +} + +GlobalPoint ntuple_pfCands::mingpsvpfcand(const reco::TransientTrack track) { + + float mindist_ = 999.999; + GlobalPoint out_dist(0.0,0.0,0.0); + GlobalPoint pca; + for (unsigned int i=0; isize(); ++i) { + if (!track.isValid()) {continue;} + + reco::Vertex::CovarianceMatrix csv; secVertices()->at(i).fillVertexCovariance(csv); + reco::Vertex vertex(secVertices()->at(i).vertex(), csv); + if (!vertex.isValid()) {continue;} + + GlobalVector direction(secVertices()->at(i).px(),secVertices()->at(i).py(),secVertices()->at(i).pz()); + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (!tsos.isValid()) {continue;} + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (!result.first) {continue;} + + pca = tsos.globalPosition(); + + if(result.second.value() < mindist_){ + out_dist = pca; + mindist_ = result.second.value(); + } + } + return out_dist; +} + +GlobalPoint ntuple_pfCands::gppvpfcand(const reco::TransientTrack track, const GlobalVector direction, const reco::Vertex vertex) { + + float mindist_ = 999.999; + float dist = 0.; + GlobalPoint out_dist(0.0,0.0,0.0); + GlobalPoint pca; + if ((track.isValid()) && (vertex.isValid())){ + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (tsos.isValid()) { + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (result.first) { + pca = tsos.globalPosition(); + } + } + } + out_dist = pca; + return out_dist; +} diff --git a/test/DeepNtuplizer.py b/test/DeepNtuplizer.py new file mode 100644 index 00000000000..626752a2939 --- /dev/null +++ b/test/DeepNtuplizer.py @@ -0,0 +1,313 @@ + +import FWCore.ParameterSet.Config as cms + +import FWCore.ParameterSet.VarParsing as VarParsing +### parsing job options +import sys + +options = VarParsing.VarParsing() + +options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") +options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") +options.register('maxEvents',-1,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") +options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") +options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") +options.register('reportEvery', 10000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") +options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") +options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") +options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") +options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") + + +import os +release=os.environ['CMSSW_VERSION'][6:] +print("Using release "+release) + + +options.register( + 'inputFiles','', + VarParsing.VarParsing.multiplicity.list, + VarParsing.VarParsing.varType.string, + "input files (default is the tt RelVal)" + ) + +if hasattr(sys, "argv"): + options.parseArguments() + + + +if options.puppi: + usePuppi = True +else: + usePuppi = False +process = cms.Process("DNNFiller") + +process.load("FWCore.MessageService.MessageLogger_cfi") +process.load("Configuration.EventContent.EventContent_cff") +process.load('Configuration.StandardSequences.Services_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') +from Configuration.AlCa.GlobalTag import GlobalTag +#'auto:run2_mc' +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') +#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') + +process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) + +process.load('FWCore.MessageService.MessageLogger_cfi') +process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery + +process.options = cms.untracked.PSet( + allowUnscheduled = cms.untracked.bool(True), + wantSummary=cms.untracked.bool(False) +) + + +process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input + + +if options.inputFiles: + process.source.fileNames = options.inputFiles + +if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': + process.load(options.inputScript) + +numberOfFiles = len(process.source.fileNames) +numberOfJobs = options.nJobs +jobNumber = options.job + + +process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] +if options.nJobs > 1: + print ("running over these files:") + print (process.source.fileNames) + +process.source.skipEvents = cms.untracked.uint32(options.skipEvents) +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32 (options.maxEvents) +) +releases = release.split("_") +if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'pfDeepCSVTagInfos', + 'pfParticleNetAK4TagInfos', +] +else : + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'deepNNTagInfos', + 'pfParticleNetAK4TagInfos', + ] + + +if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] +else : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepCSVJetTags:probcc', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] + +jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') + +from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection +if options.phase2: + usePuppi = True + +if usePuppi: + jet_collection = 'slimmedJetsPuppi' +else: + jet_collection = 'slimmedJets' + +updateJetCollection( + process, + labelName = "DeepFlavour", +# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' + jetSource = cms.InputTag(jet_collection), # 'ak4Jets' + jetCorrections = jetCorrectionsAK4, + pfCandidates = cms.InputTag('packedPFCandidates'), + pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), + svSource = cms.InputTag('slimmedSecondaryVertices'), + muSource = cms.InputTag('slimmedMuons'), + elSource = cms.InputTag('slimmedElectrons'), + btagInfos = bTagInfos, + btagDiscriminators = bTagDiscriminators, + explicitJTA = False +) + +if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): + process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) + process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) +else: + raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') + + +# QGLikelihood +process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") +process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") +process.load('RecoJets.JetProducers.QGTagger_cfi') +process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") +process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') + + +from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets +process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') + + ## Filter out neutrinos from packed GenParticles +process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) + ## Define GenJets +process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') + +process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + + +process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) + + +# Very Loose IVF SV collection +from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix +loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") +process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 + +process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") +process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 + + +outFileName = options.outputFile + '_' + str(options.job) + '.root' +print ('Using output file ' + outFileName) + +process.TFileService = cms.Service("TFileService", + fileName = cms.string(outFileName)) + +# DeepNtuplizer +process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") +process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') +process.deepntuplizer.bDiscriminators = bTagDiscriminators +process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') +process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") + +process.deepntuplizer.applySelection = cms.bool(options.selectJets) + +if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') + +if options.eta : + process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) + process.deepntuplizer.jetPtMin = cms.double(10.0) +else : + process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) + process.deepntuplizer.jetPtMin = cms.double(15.0) + +if options.phase2 : + process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) + +process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) + +#1631 +process.ProfilerService = cms.Service ( + "ProfilerService", + firstEvent = cms.untracked.int32(1631), + lastEvent = cms.untracked.int32(1641), + paths = cms.untracked.vstring('p') +) + +#Trick to make it work in 9_1_X +process.tsk = cms.Task() +for mod in process.producers_().values(): #.itervalues(): + process.tsk.add(mod) +for mod in process.filters_().values(): #.itervalues(): + process.tsk.add(mod) + +process.p = cms.Path( + process.QGTagger + process.genJetSequence* + process.deepntuplizer, + process.tsk + ) diff --git a/test/ntuple_bulk_grav_1/ademoor.cc b/test/ntuple_bulk_grav_1/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..77f222f1efe8b3feadde937445018c726cf20132 GIT binary patch literal 5609 zcmai&WmH`2l7?yA-MVonSQ-!75Fj`S1b1uPo#5`$K=8(b1_(}qySr-$K|=@0oET$bFr^=;;2P%&tsmgx2CV}~s^-d`|_1?BUs{TkCx+A)o3(ap~J#ITb#x_zvzP+Ke0C17;TtoR7Fjf`HuM z2y}BoFlyao4Mi5+E-YYcO1Ql`6D^tV{&#(h3GINc*==$TnQs`pW{NzioLQ8hTw+Ya z_{pW#xG-gNoCx7sK=tCBU7>)UEOUUXqEyofJ&^6Q1nnvzdsW~farNd#Nm?~!#3aPg zW1v2(>;p^jygE@61Q0lQg~5P;4mU2oZRpM!@{guBe}!Lk_)RWu#--?-ju`nPf3v7E zOy?nOf!>MuLKCUVTM}T;*MWGC1Ogyz*rHltpAA53mm6MrFJB zLpUVn_2&)!OcY`X%i~dVH8Lb(M$pxW@q4=yjb#wrjO@U`2|K@7zj}U7)2`ov=%@ z(?W(`fCFn2Em(bRT0M_7A~Z`iU^{fpB$+w4{0zF3oj+*l!gwYz+0g(Q6L>1`$SDdCO$#bgmRo*oYNeb&BF#1Gm1y!+KC_X#?yS+1cZJoYnNdO*s>z z4G(NBmaiZa!ipCBT7ZLwJ2lT(W=-WU@3Fr*96Ws`olqRT$WfI)*Yiz|u#lzDrj(r! zz4}7ngfXakB-6CP2=RuO^(X{)mDP9{1u7GrXn5uLtcDWHC##zOmxYF#)u#590CP1H zGCN*r@p{1n(NZF^AvUSNAVF6T3QC4`qNEYRgfrb%RSP#^|BSb__^e9ad`6ltX0X0^ zrA@;Y_QIjzBDqmDw;f}*`u-w~Fw$qo8Htrp&_!#{;V|=x3+XwHmfbLJYqwX)2}?|< zA%B(U>pPnFj+iq>*|J0xXJypqOpe|A2CRrpM=+|7O{PQ8p+6cC)%|%=nOWWGE8BP> zAKgxSH_0f^Mg-#h{K4#RlAK&`#!dTSjdQ>hwrN;}zSW$gZ}@D|MM7K99)E)Ol)gPGlXwm`*)HV#eXokgj$(jU zFLC1BB|n+`PRUh>MgwTS1}>LYEh9T%OCal8^Sr6DZZ!s^XNbxoCufv`pO(Egx$`M{r)8Am=2eadh5;jaTCW)ZFipk^v&;g zN>>k)c(LmJjppIpuNP(X9BWs;`r4z08+;WGN9{LBaJ9#Y7>SY5*=aP$0o+g^5$^Y* zbYhh|>X!PQ5NTU?deK8a z&GuC|NoNWNKsS*;zmo^HOe-|>vJH%tPpGn~FNTl1w~-oOaiEp?Tdunp$SSuPE81H1 zhLQKDk1wgu>aAfm9ZipN4?YLsq<_6NeTl%xT2cRL~)X_xy?VI zZ<(?J&th?-XUsYHrg2mPBgKHXPbSjxx#>_{DN6g$;<4IBL|sXyL0SQP9mBSqyQ{ri zpAhroDmEP-Gq-7FLm5h3aE#HS!p|!Y=wMSY7Sjjsm6p37ZC_};8lI{-ZR9g;bP$e@ z22PAmx=nznEq*kejxfAP=e9x%kmpCMak?s6DnDKE_3v>lDZ5@y#`Jvwn582>@JPu% z(1pBu&oV>&O)@hwV1tKiDdSSOWIjG{mz{vBXjaT%RaZH>i?UQd+VV#Gc1rDbh0Jjt zK9pGXoMtD5M(WAg1KX(OYxt@R|IuKP$6e;^2S`+e?`I)ZN1B@2cgvjwI<8Bn957>>VQoITdi?Gw1sf3@qQi^9oQnuz{4m zFV2exN)jAlnmFI?2V+1I*VIRl0vkFaTRVgkxP$}!pyJ}1`i_Q#i50Q9m8%2ja`eFT zZ-#!~g$FOe+qXzUq`M==zQWnEkYf3d^9gI#B`>WpI>pku>`?)A*n5{JVVhyr0vgG7 zaB;Y{VXMaS!qo@7q4w-Dm`c0Yc1iq+pIn!Qj%zZFr|lOar*{|c28GX#n8#uxw$epk zp2WhD4(4i)9*7l0_{h4Rs;i!-?Is*AZg8I*Xwld?3PO`ML!M}wd4l3#{)Ey#)1hZQDfpqiuEON!rr?|*>KkKF2 zih`4nl6P<*(#DCE9{9UB$GmmRd%%M2SzN!=oDRVl=(!YK~j^%xur_ zznelb=Y}u)(62Q=Oz>=o$-W`7RJ9RX{>75d9Dl|=jrp7;BQ7FH$D%m8*nJ5Mv^VMuVy+bvYvAEhHh+29g?h%halkPzvxolw~;N@7N5;|je74$z**;i-IFG)$&x_n*wY zt&H)Z-!7hArbQCGbidJa^R=TAWGO1Vt+Nk*p*}9Njicxe!JWQonrCI~cH0_!VL{W> zm-?iOaX;Ohiw+v=yLfT*obwLR)_L!HT1KEW;&qFlkZ7o3)YTu!0F4JgSiN$A7yEt9 z02{yXW-L8BzLV>5JKIP_AgK^rO?`>t2|$`uK^Vhzf>YD<<|h7V90NoQw&%E0}Jh&Zl^ z#HhO`E{xFXh%nK~B2w0zl9v(3yXMQ6At6%}B5CASCU_V@rpUL-+BW5(igq>k#*6{w z2`l8G8I6@%f&g+Zt9#&H+4`4gf*T>bP|~fFSSrz%r8uE2*`+U1dYry?V)njhJ(-cV zDg32BA+0@dY)-6H15ld-%Cvp5VG%Amh=0gS$D=^rf*OHZl`I`!qi2&pEv!g-Hj1o4 zk0pwAl@jUMWpbWID%gvWNbR2(+42OhG4r00qwr!KXZ7VG}`B;gMc+cV#O zs((-xm~Rmodj*N>{&A*|e*A21;h{F#{;JEZ0}`P@DJjIiQ$&AvUSEikfF=#bT6w%W%&5j7N}?`=PNjDf)xdC$f`|hql+BV4uz< zu7&T7ZU}fL&iFvn51Vb^sd=~5wE4O1ERoU}tY7z>T-GCCR3lmY1sq)lg)7N}E(vOX zW*lgt&KLj2k%|F{zSGEn?7f0&6qU|W6p z;|9NyUN`i!EoV{7d>f?=kl@2;t&R#%JQl#oRKZ9|Qvk^*RAca}&pUh=gk5HPh`6n9 zJuNj163sFZk>KHxwHdj@78PIC#n0yRfcXhneqpRXivZB(HbfpESBcaJckT;KSm8qY z54%P--d)z3IGrXsD?ONx&Z2E^Pvan#gIkcMTe?x#k3B}Q1AoE^YpwLN(YV!vPEjlu zw=|mLtXEmAcAU5zPzv`s{M*r(YZ`i~KUL!7-Oy^-)LN*-wTj9+()BEs?aIx51?-{4 zcdOzSy`{03P#+-kaFG{tp~jDs?l?sqD#eI-?{%Zfv+J5l+vzT&+Goz8UBa)Jyp213 z|C*IV*qd7?E8E2VMC(Z!zI4rj10ppgNc9@fJ3f?o98 z%E~;z?^Amb9Ta||^0W7R@c_8jt3c|sy$`SvBrfb4x;#m!lZclh9p9QTg^oDg_+0Uz z$hJc2^%1T2j%4eJ(6G?gDn<4hP$YB%_heB2SLPZd=BfE~RGxvsOWoSR-b*)WnL4@f zQS2Yzkpj-j^iVE@(RFj!PuXfuT-J_ZKIRzrBPa-kK zhGGm^AF6HmVuml!KZMdy>gns%25Y}umMROgDz2mKw7E<1{PEn~m*7%KIuAsaBSScn z!V*q=en7HRc8qLpy#XN=7f_vzd~=a{`z1)@0^0CiGbcYw zqI{<;)Su40%iKZOO^L1}3x6;0`Sa8`OrFU@W!XbQqvRWx(H1sr?T6{s@hTM|LD$(N z^S5c=dyXPuiv^y6_L)L<6S&)T*PtIV9MlPsNXpLPigxisfhNwZN5Uk=!EcD8+AIYF z$~3N4+dJa5a$0;Pwj>NL+DiFdrg!`!+j$>M-|_1`5ZDbf-Qh=(Z;$72aywI2Z{QRM zA!t@IOSJ?>=pf%akHi51O|eRq zHV?_?h&roMUXrUU@ESl++c3Cr2so?SbUvLKLCc@6o4Au1u&{%F9}=F#{|>hfH^%>c ztoEinh$BOUK=Q*gLU XDfII~D=s=COG|S{?E25ISET;}pFc8t literal 0 HcmV?d00001 diff --git a/test/ntuple_bulk_grav_1/batch/condor_0.sub b/test/ntuple_bulk_grav_1/batch/condor_0.sub new file mode 100644 index 00000000000..19ca71b654f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_1.sub b/test/ntuple_bulk_grav_1/batch/condor_1.sub new file mode 100644 index 00000000000..5e6f6201792 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_10.sub b/test/ntuple_bulk_grav_1/batch/condor_10.sub new file mode 100644 index 00000000000..3cffe1d6b0a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_100.sub b/test/ntuple_bulk_grav_1/batch/condor_100.sub new file mode 100644 index 00000000000..f28b42f64b3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_101.sub b/test/ntuple_bulk_grav_1/batch/condor_101.sub new file mode 100644 index 00000000000..4edd266807d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_102.sub b/test/ntuple_bulk_grav_1/batch/condor_102.sub new file mode 100644 index 00000000000..d3ab4ae760f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_103.sub b/test/ntuple_bulk_grav_1/batch/condor_103.sub new file mode 100644 index 00000000000..c10fb5c4bcb --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_104.sub b/test/ntuple_bulk_grav_1/batch/condor_104.sub new file mode 100644 index 00000000000..0c2bf71a6f7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_105.sub b/test/ntuple_bulk_grav_1/batch/condor_105.sub new file mode 100644 index 00000000000..64cd0b6860a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_106.sub b/test/ntuple_bulk_grav_1/batch/condor_106.sub new file mode 100644 index 00000000000..ec9f1d25809 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_107.sub b/test/ntuple_bulk_grav_1/batch/condor_107.sub new file mode 100644 index 00000000000..f39c25256a6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_108.sub b/test/ntuple_bulk_grav_1/batch/condor_108.sub new file mode 100644 index 00000000000..ea8b849605f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_109.sub b/test/ntuple_bulk_grav_1/batch/condor_109.sub new file mode 100644 index 00000000000..c052555b004 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_11.sub b/test/ntuple_bulk_grav_1/batch/condor_11.sub new file mode 100644 index 00000000000..fa5baddc389 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_110.sub b/test/ntuple_bulk_grav_1/batch/condor_110.sub new file mode 100644 index 00000000000..3bda5fb714f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_111.sub b/test/ntuple_bulk_grav_1/batch/condor_111.sub new file mode 100644 index 00000000000..43ab5c7bf8d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_112.sub b/test/ntuple_bulk_grav_1/batch/condor_112.sub new file mode 100644 index 00000000000..78c4af5e0f5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_113.sub b/test/ntuple_bulk_grav_1/batch/condor_113.sub new file mode 100644 index 00000000000..83a64676531 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_114.sub b/test/ntuple_bulk_grav_1/batch/condor_114.sub new file mode 100644 index 00000000000..99b278115b0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_115.sub b/test/ntuple_bulk_grav_1/batch/condor_115.sub new file mode 100644 index 00000000000..04255f09bd4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_116.sub b/test/ntuple_bulk_grav_1/batch/condor_116.sub new file mode 100644 index 00000000000..d020c46ad6c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_117.sub b/test/ntuple_bulk_grav_1/batch/condor_117.sub new file mode 100644 index 00000000000..4f3e528c11e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_118.sub b/test/ntuple_bulk_grav_1/batch/condor_118.sub new file mode 100644 index 00000000000..b9324730dea --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_119.sub b/test/ntuple_bulk_grav_1/batch/condor_119.sub new file mode 100644 index 00000000000..96510f19408 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_12.sub b/test/ntuple_bulk_grav_1/batch/condor_12.sub new file mode 100644 index 00000000000..5501f5cdcd6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_120.sub b/test/ntuple_bulk_grav_1/batch/condor_120.sub new file mode 100644 index 00000000000..6de0f975b5b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_121.sub b/test/ntuple_bulk_grav_1/batch/condor_121.sub new file mode 100644 index 00000000000..dde22bd427e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_122.sub b/test/ntuple_bulk_grav_1/batch/condor_122.sub new file mode 100644 index 00000000000..518197bde68 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_123.sub b/test/ntuple_bulk_grav_1/batch/condor_123.sub new file mode 100644 index 00000000000..d2e6a047c62 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_124.sub b/test/ntuple_bulk_grav_1/batch/condor_124.sub new file mode 100644 index 00000000000..e813caed4e1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_125.sub b/test/ntuple_bulk_grav_1/batch/condor_125.sub new file mode 100644 index 00000000000..cfd1f03b3c6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_126.sub b/test/ntuple_bulk_grav_1/batch/condor_126.sub new file mode 100644 index 00000000000..358934a0073 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_127.sub b/test/ntuple_bulk_grav_1/batch/condor_127.sub new file mode 100644 index 00000000000..5c0fd408aba --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_128.sub b/test/ntuple_bulk_grav_1/batch/condor_128.sub new file mode 100644 index 00000000000..4222963b8f1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_129.sub b/test/ntuple_bulk_grav_1/batch/condor_129.sub new file mode 100644 index 00000000000..34f27aea07b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_13.sub b/test/ntuple_bulk_grav_1/batch/condor_13.sub new file mode 100644 index 00000000000..faceb9ee0a6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_130.sub b/test/ntuple_bulk_grav_1/batch/condor_130.sub new file mode 100644 index 00000000000..8ef9b1ff1fa --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_131.sub b/test/ntuple_bulk_grav_1/batch/condor_131.sub new file mode 100644 index 00000000000..e7e8974dc10 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_132.sub b/test/ntuple_bulk_grav_1/batch/condor_132.sub new file mode 100644 index 00000000000..6081d85f0f0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_133.sub b/test/ntuple_bulk_grav_1/batch/condor_133.sub new file mode 100644 index 00000000000..d493416818c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_134.sub b/test/ntuple_bulk_grav_1/batch/condor_134.sub new file mode 100644 index 00000000000..6f0020ab91f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_135.sub b/test/ntuple_bulk_grav_1/batch/condor_135.sub new file mode 100644 index 00000000000..35f4172f279 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_136.sub b/test/ntuple_bulk_grav_1/batch/condor_136.sub new file mode 100644 index 00000000000..03650754360 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_137.sub b/test/ntuple_bulk_grav_1/batch/condor_137.sub new file mode 100644 index 00000000000..dfb3348a55d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_138.sub b/test/ntuple_bulk_grav_1/batch/condor_138.sub new file mode 100644 index 00000000000..efa9b6897df --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_139.sub b/test/ntuple_bulk_grav_1/batch/condor_139.sub new file mode 100644 index 00000000000..323d6f66f2f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_139.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=139 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.139.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_139.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.139.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_14.sub b/test/ntuple_bulk_grav_1/batch/condor_14.sub new file mode 100644 index 00000000000..959649ad7f3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_140.sub b/test/ntuple_bulk_grav_1/batch/condor_140.sub new file mode 100644 index 00000000000..5eaa9848c49 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_140.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=140 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.140.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_140.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.140.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_141.sub b/test/ntuple_bulk_grav_1/batch/condor_141.sub new file mode 100644 index 00000000000..a6d07c048e2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_141.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=141 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.141.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_141.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.141.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_142.sub b/test/ntuple_bulk_grav_1/batch/condor_142.sub new file mode 100644 index 00000000000..67e376dfc21 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_142.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=142 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.142.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_142.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.142.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_143.sub b/test/ntuple_bulk_grav_1/batch/condor_143.sub new file mode 100644 index 00000000000..eab070ff87f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_143.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=143 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.143.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_143.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.143.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_144.sub b/test/ntuple_bulk_grav_1/batch/condor_144.sub new file mode 100644 index 00000000000..09b13aff33d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_144.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=144 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.144.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_144.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.144.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_145.sub b/test/ntuple_bulk_grav_1/batch/condor_145.sub new file mode 100644 index 00000000000..442afc9ba7d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_145.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=145 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.145.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_145.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.145.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_146.sub b/test/ntuple_bulk_grav_1/batch/condor_146.sub new file mode 100644 index 00000000000..1aaa98831fd --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_146.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=146 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.146.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_146.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.146.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_147.sub b/test/ntuple_bulk_grav_1/batch/condor_147.sub new file mode 100644 index 00000000000..d8a44d5f523 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_147.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=147 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.147.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_147.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.147.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_148.sub b/test/ntuple_bulk_grav_1/batch/condor_148.sub new file mode 100644 index 00000000000..abf86db1e71 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_148.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=148 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.148.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_148.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.148.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_149.sub b/test/ntuple_bulk_grav_1/batch/condor_149.sub new file mode 100644 index 00000000000..bd7b1410df7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_149.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=149 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.149.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_149.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.149.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_15.sub b/test/ntuple_bulk_grav_1/batch/condor_15.sub new file mode 100644 index 00000000000..29a9ed4d157 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_150.sub b/test/ntuple_bulk_grav_1/batch/condor_150.sub new file mode 100644 index 00000000000..54368e8915f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_150.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=150 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.150.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_150.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.150.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_151.sub b/test/ntuple_bulk_grav_1/batch/condor_151.sub new file mode 100644 index 00000000000..d55fa9c3bf9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_151.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=151 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.151.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_151.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.151.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_152.sub b/test/ntuple_bulk_grav_1/batch/condor_152.sub new file mode 100644 index 00000000000..2b29f358502 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_152.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=152 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.152.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_152.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.152.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_153.sub b/test/ntuple_bulk_grav_1/batch/condor_153.sub new file mode 100644 index 00000000000..d94a578c5c7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_153.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=153 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.153.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_153.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.153.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_154.sub b/test/ntuple_bulk_grav_1/batch/condor_154.sub new file mode 100644 index 00000000000..8a34c7d2df5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_154.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=154 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.154.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_154.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.154.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_155.sub b/test/ntuple_bulk_grav_1/batch/condor_155.sub new file mode 100644 index 00000000000..95dc68c85d5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_155.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=155 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.155.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_155.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.155.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_156.sub b/test/ntuple_bulk_grav_1/batch/condor_156.sub new file mode 100644 index 00000000000..1b09c519c8c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_156.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=156 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.156.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_156.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.156.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_157.sub b/test/ntuple_bulk_grav_1/batch/condor_157.sub new file mode 100644 index 00000000000..27fba474423 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_157.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=157 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.157.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_157.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.157.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_158.sub b/test/ntuple_bulk_grav_1/batch/condor_158.sub new file mode 100644 index 00000000000..7cc90bd999f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_158.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=158 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.158.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_158.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.158.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_159.sub b/test/ntuple_bulk_grav_1/batch/condor_159.sub new file mode 100644 index 00000000000..4efecc40f4b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_159.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=159 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.159.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_159.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.159.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_16.sub b/test/ntuple_bulk_grav_1/batch/condor_16.sub new file mode 100644 index 00000000000..118dc0efebc --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_160.sub b/test/ntuple_bulk_grav_1/batch/condor_160.sub new file mode 100644 index 00000000000..fec21007d4e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_160.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=160 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.160.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_160.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.160.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_161.sub b/test/ntuple_bulk_grav_1/batch/condor_161.sub new file mode 100644 index 00000000000..339b696f026 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_161.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=161 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.161.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_161.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.161.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_162.sub b/test/ntuple_bulk_grav_1/batch/condor_162.sub new file mode 100644 index 00000000000..298ec4d6080 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_162.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=162 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.162.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_162.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.162.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_163.sub b/test/ntuple_bulk_grav_1/batch/condor_163.sub new file mode 100644 index 00000000000..041a8171f29 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_163.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=163 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.163.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_163.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.163.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_164.sub b/test/ntuple_bulk_grav_1/batch/condor_164.sub new file mode 100644 index 00000000000..647d50c50d5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_164.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=164 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.164.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_164.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.164.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_165.sub b/test/ntuple_bulk_grav_1/batch/condor_165.sub new file mode 100644 index 00000000000..5fc79604d31 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_165.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=165 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.165.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_165.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.165.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_166.sub b/test/ntuple_bulk_grav_1/batch/condor_166.sub new file mode 100644 index 00000000000..0cb7ce5624f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_166.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=166 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.166.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_166.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.166.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_167.sub b/test/ntuple_bulk_grav_1/batch/condor_167.sub new file mode 100644 index 00000000000..c632adfbc5f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_167.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=167 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.167.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_167.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.167.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_168.sub b/test/ntuple_bulk_grav_1/batch/condor_168.sub new file mode 100644 index 00000000000..bae72f9ad4b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_168.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=168 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.168.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_168.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.168.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_169.sub b/test/ntuple_bulk_grav_1/batch/condor_169.sub new file mode 100644 index 00000000000..58dc5846c2a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_169.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=169 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.169.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_169.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.169.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_17.sub b/test/ntuple_bulk_grav_1/batch/condor_17.sub new file mode 100644 index 00000000000..b65a99fc10c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_170.sub b/test/ntuple_bulk_grav_1/batch/condor_170.sub new file mode 100644 index 00000000000..d6abd38d0c2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_170.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=170 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.170.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_170.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.170.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_171.sub b/test/ntuple_bulk_grav_1/batch/condor_171.sub new file mode 100644 index 00000000000..1f02ca81504 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_171.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=171 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.171.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_171.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.171.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_172.sub b/test/ntuple_bulk_grav_1/batch/condor_172.sub new file mode 100644 index 00000000000..9570c694fce --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_172.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=172 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.172.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_172.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.172.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_173.sub b/test/ntuple_bulk_grav_1/batch/condor_173.sub new file mode 100644 index 00000000000..e5657c7e931 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_173.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=173 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.173.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_173.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.173.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_174.sub b/test/ntuple_bulk_grav_1/batch/condor_174.sub new file mode 100644 index 00000000000..ce0bb1b7a10 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_174.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=174 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.174.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_174.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.174.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_175.sub b/test/ntuple_bulk_grav_1/batch/condor_175.sub new file mode 100644 index 00000000000..b1e0d256cd0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_175.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=175 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.175.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_175.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.175.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_176.sub b/test/ntuple_bulk_grav_1/batch/condor_176.sub new file mode 100644 index 00000000000..f4d33562537 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_176.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=176 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.176.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_176.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.176.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_177.sub b/test/ntuple_bulk_grav_1/batch/condor_177.sub new file mode 100644 index 00000000000..b4a3b89abe7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_177.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=177 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.177.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_177.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.177.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_178.sub b/test/ntuple_bulk_grav_1/batch/condor_178.sub new file mode 100644 index 00000000000..a174e24430a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_178.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=178 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.178.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_178.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.178.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_179.sub b/test/ntuple_bulk_grav_1/batch/condor_179.sub new file mode 100644 index 00000000000..ec9ebb6dabb --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_179.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=179 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.179.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_179.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.179.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_18.sub b/test/ntuple_bulk_grav_1/batch/condor_18.sub new file mode 100644 index 00000000000..0b597d0e59e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_180.sub b/test/ntuple_bulk_grav_1/batch/condor_180.sub new file mode 100644 index 00000000000..6bb2d707999 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_180.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=180 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.180.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_180.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.180.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_181.sub b/test/ntuple_bulk_grav_1/batch/condor_181.sub new file mode 100644 index 00000000000..f18478ea995 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_181.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=181 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.181.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_181.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.181.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_182.sub b/test/ntuple_bulk_grav_1/batch/condor_182.sub new file mode 100644 index 00000000000..687f717297e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_182.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=182 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.182.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_182.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.182.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_183.sub b/test/ntuple_bulk_grav_1/batch/condor_183.sub new file mode 100644 index 00000000000..c0d860fac47 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_183.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=183 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.183.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_183.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.183.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_184.sub b/test/ntuple_bulk_grav_1/batch/condor_184.sub new file mode 100644 index 00000000000..7b6583b25ec --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_184.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=184 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.184.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_184.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.184.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_185.sub b/test/ntuple_bulk_grav_1/batch/condor_185.sub new file mode 100644 index 00000000000..e8969e94935 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_185.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=185 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.185.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_185.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.185.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_186.sub b/test/ntuple_bulk_grav_1/batch/condor_186.sub new file mode 100644 index 00000000000..229047716a3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_186.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=186 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.186.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_186.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.186.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_187.sub b/test/ntuple_bulk_grav_1/batch/condor_187.sub new file mode 100644 index 00000000000..45722f34e8e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_187.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=187 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.187.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_187.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.187.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_188.sub b/test/ntuple_bulk_grav_1/batch/condor_188.sub new file mode 100644 index 00000000000..c3d650099a0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_188.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=188 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.188.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_188.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.188.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_189.sub b/test/ntuple_bulk_grav_1/batch/condor_189.sub new file mode 100644 index 00000000000..1a361246177 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_189.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=189 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.189.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_189.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.189.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_19.sub b/test/ntuple_bulk_grav_1/batch/condor_19.sub new file mode 100644 index 00000000000..835a737ff29 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_190.sub b/test/ntuple_bulk_grav_1/batch/condor_190.sub new file mode 100644 index 00000000000..110cb6b9399 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_190.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=190 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.190.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_190.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.190.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_191.sub b/test/ntuple_bulk_grav_1/batch/condor_191.sub new file mode 100644 index 00000000000..0e8d2b4894a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_191.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=191 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.191.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_191.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.191.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_192.sub b/test/ntuple_bulk_grav_1/batch/condor_192.sub new file mode 100644 index 00000000000..1290a2cc277 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_192.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=192 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.192.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_192.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.192.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_193.sub b/test/ntuple_bulk_grav_1/batch/condor_193.sub new file mode 100644 index 00000000000..a04d7c39beb --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_193.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=193 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.193.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_193.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.193.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_194.sub b/test/ntuple_bulk_grav_1/batch/condor_194.sub new file mode 100644 index 00000000000..35eba13be25 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_194.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=194 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.194.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_194.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.194.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_195.sub b/test/ntuple_bulk_grav_1/batch/condor_195.sub new file mode 100644 index 00000000000..1ce8d2411a5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_195.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=195 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.195.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_195.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.195.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_196.sub b/test/ntuple_bulk_grav_1/batch/condor_196.sub new file mode 100644 index 00000000000..a65e042eb46 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_196.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=196 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.196.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_196.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.196.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_197.sub b/test/ntuple_bulk_grav_1/batch/condor_197.sub new file mode 100644 index 00000000000..8bbf014eb84 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_197.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=197 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.197.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_197.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.197.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_198.sub b/test/ntuple_bulk_grav_1/batch/condor_198.sub new file mode 100644 index 00000000000..e71bebaec25 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_198.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=198 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.198.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_198.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.198.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_199.sub b/test/ntuple_bulk_grav_1/batch/condor_199.sub new file mode 100644 index 00000000000..e3310f87157 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_199.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=199 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.199.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_199.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.199.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_2.sub b/test/ntuple_bulk_grav_1/batch/condor_2.sub new file mode 100644 index 00000000000..60cc1886fa9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_20.sub b/test/ntuple_bulk_grav_1/batch/condor_20.sub new file mode 100644 index 00000000000..33c18a8115b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_200.sub b/test/ntuple_bulk_grav_1/batch/condor_200.sub new file mode 100644 index 00000000000..07edf0b45a1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_200.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=200 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.200.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_200.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.200.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_201.sub b/test/ntuple_bulk_grav_1/batch/condor_201.sub new file mode 100644 index 00000000000..7d8d4240e31 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_201.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=201 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.201.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_201.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.201.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_21.sub b/test/ntuple_bulk_grav_1/batch/condor_21.sub new file mode 100644 index 00000000000..1eff591eacc --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_22.sub b/test/ntuple_bulk_grav_1/batch/condor_22.sub new file mode 100644 index 00000000000..4a87076e116 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_23.sub b/test/ntuple_bulk_grav_1/batch/condor_23.sub new file mode 100644 index 00000000000..48178db1c8a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_24.sub b/test/ntuple_bulk_grav_1/batch/condor_24.sub new file mode 100644 index 00000000000..5f736c3f90b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_25.sub b/test/ntuple_bulk_grav_1/batch/condor_25.sub new file mode 100644 index 00000000000..4e4bb965f64 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_26.sub b/test/ntuple_bulk_grav_1/batch/condor_26.sub new file mode 100644 index 00000000000..5b0679f835a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_27.sub b/test/ntuple_bulk_grav_1/batch/condor_27.sub new file mode 100644 index 00000000000..d82a20c3040 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_28.sub b/test/ntuple_bulk_grav_1/batch/condor_28.sub new file mode 100644 index 00000000000..314601fab79 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_29.sub b/test/ntuple_bulk_grav_1/batch/condor_29.sub new file mode 100644 index 00000000000..529e0082c99 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_3.sub b/test/ntuple_bulk_grav_1/batch/condor_3.sub new file mode 100644 index 00000000000..190ccceb3d3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_30.sub b/test/ntuple_bulk_grav_1/batch/condor_30.sub new file mode 100644 index 00000000000..bd3415b60e1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_31.sub b/test/ntuple_bulk_grav_1/batch/condor_31.sub new file mode 100644 index 00000000000..4c95e87b039 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_32.sub b/test/ntuple_bulk_grav_1/batch/condor_32.sub new file mode 100644 index 00000000000..029742a3f37 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_33.sub b/test/ntuple_bulk_grav_1/batch/condor_33.sub new file mode 100644 index 00000000000..94b269f58d0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_34.sub b/test/ntuple_bulk_grav_1/batch/condor_34.sub new file mode 100644 index 00000000000..2f7608eee1c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_35.sub b/test/ntuple_bulk_grav_1/batch/condor_35.sub new file mode 100644 index 00000000000..cf3a7a41825 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_36.sub b/test/ntuple_bulk_grav_1/batch/condor_36.sub new file mode 100644 index 00000000000..93e41eb35e8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_37.sub b/test/ntuple_bulk_grav_1/batch/condor_37.sub new file mode 100644 index 00000000000..0df9e66c2d8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_38.sub b/test/ntuple_bulk_grav_1/batch/condor_38.sub new file mode 100644 index 00000000000..104a669fb61 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_39.sub b/test/ntuple_bulk_grav_1/batch/condor_39.sub new file mode 100644 index 00000000000..3f7c8257c69 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_4.sub b/test/ntuple_bulk_grav_1/batch/condor_4.sub new file mode 100644 index 00000000000..05d7d87e9ba --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_40.sub b/test/ntuple_bulk_grav_1/batch/condor_40.sub new file mode 100644 index 00000000000..9c5b7674731 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_41.sub b/test/ntuple_bulk_grav_1/batch/condor_41.sub new file mode 100644 index 00000000000..1869379c7d6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_42.sub b/test/ntuple_bulk_grav_1/batch/condor_42.sub new file mode 100644 index 00000000000..af5bd60effa --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_43.sub b/test/ntuple_bulk_grav_1/batch/condor_43.sub new file mode 100644 index 00000000000..2dbe95fd761 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_44.sub b/test/ntuple_bulk_grav_1/batch/condor_44.sub new file mode 100644 index 00000000000..cca2c294a56 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_45.sub b/test/ntuple_bulk_grav_1/batch/condor_45.sub new file mode 100644 index 00000000000..cf3176fedf4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_46.sub b/test/ntuple_bulk_grav_1/batch/condor_46.sub new file mode 100644 index 00000000000..00de52f913c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_47.sub b/test/ntuple_bulk_grav_1/batch/condor_47.sub new file mode 100644 index 00000000000..59995075c8c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_48.sub b/test/ntuple_bulk_grav_1/batch/condor_48.sub new file mode 100644 index 00000000000..13b1e72338d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_49.sub b/test/ntuple_bulk_grav_1/batch/condor_49.sub new file mode 100644 index 00000000000..76caf84cb0b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_5.sub b/test/ntuple_bulk_grav_1/batch/condor_5.sub new file mode 100644 index 00000000000..fc6fe73c6ed --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_50.sub b/test/ntuple_bulk_grav_1/batch/condor_50.sub new file mode 100644 index 00000000000..dc10e1e7519 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_51.sub b/test/ntuple_bulk_grav_1/batch/condor_51.sub new file mode 100644 index 00000000000..84f8305d802 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_52.sub b/test/ntuple_bulk_grav_1/batch/condor_52.sub new file mode 100644 index 00000000000..a5ab03f3959 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_53.sub b/test/ntuple_bulk_grav_1/batch/condor_53.sub new file mode 100644 index 00000000000..57e39327ece --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_54.sub b/test/ntuple_bulk_grav_1/batch/condor_54.sub new file mode 100644 index 00000000000..1e11e8ea6b9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_55.sub b/test/ntuple_bulk_grav_1/batch/condor_55.sub new file mode 100644 index 00000000000..c379fbcf75d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_56.sub b/test/ntuple_bulk_grav_1/batch/condor_56.sub new file mode 100644 index 00000000000..f0d087c59ba --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_57.sub b/test/ntuple_bulk_grav_1/batch/condor_57.sub new file mode 100644 index 00000000000..e5f05cdd0a3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_58.sub b/test/ntuple_bulk_grav_1/batch/condor_58.sub new file mode 100644 index 00000000000..27feacae2d0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_59.sub b/test/ntuple_bulk_grav_1/batch/condor_59.sub new file mode 100644 index 00000000000..a15a32ea218 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_6.sub b/test/ntuple_bulk_grav_1/batch/condor_6.sub new file mode 100644 index 00000000000..c53507e7500 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_60.sub b/test/ntuple_bulk_grav_1/batch/condor_60.sub new file mode 100644 index 00000000000..d8373043290 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_61.sub b/test/ntuple_bulk_grav_1/batch/condor_61.sub new file mode 100644 index 00000000000..ccafc82c403 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_62.sub b/test/ntuple_bulk_grav_1/batch/condor_62.sub new file mode 100644 index 00000000000..dabf4864c69 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_63.sub b/test/ntuple_bulk_grav_1/batch/condor_63.sub new file mode 100644 index 00000000000..2c353cb0469 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_64.sub b/test/ntuple_bulk_grav_1/batch/condor_64.sub new file mode 100644 index 00000000000..44aa3ad34d3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_65.sub b/test/ntuple_bulk_grav_1/batch/condor_65.sub new file mode 100644 index 00000000000..f070e962b6d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_66.sub b/test/ntuple_bulk_grav_1/batch/condor_66.sub new file mode 100644 index 00000000000..1286f54fad5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_67.sub b/test/ntuple_bulk_grav_1/batch/condor_67.sub new file mode 100644 index 00000000000..6051e2e2037 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_68.sub b/test/ntuple_bulk_grav_1/batch/condor_68.sub new file mode 100644 index 00000000000..db8dfc877a5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_69.sub b/test/ntuple_bulk_grav_1/batch/condor_69.sub new file mode 100644 index 00000000000..5c7c88e8eb7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_7.sub b/test/ntuple_bulk_grav_1/batch/condor_7.sub new file mode 100644 index 00000000000..9c0293acc0e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_70.sub b/test/ntuple_bulk_grav_1/batch/condor_70.sub new file mode 100644 index 00000000000..1fe2a300b41 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_71.sub b/test/ntuple_bulk_grav_1/batch/condor_71.sub new file mode 100644 index 00000000000..fbcaad8d847 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_72.sub b/test/ntuple_bulk_grav_1/batch/condor_72.sub new file mode 100644 index 00000000000..909306f9f6d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_73.sub b/test/ntuple_bulk_grav_1/batch/condor_73.sub new file mode 100644 index 00000000000..ad901972b78 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_74.sub b/test/ntuple_bulk_grav_1/batch/condor_74.sub new file mode 100644 index 00000000000..4a995ef24db --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_75.sub b/test/ntuple_bulk_grav_1/batch/condor_75.sub new file mode 100644 index 00000000000..43270f23ae9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_76.sub b/test/ntuple_bulk_grav_1/batch/condor_76.sub new file mode 100644 index 00000000000..18527a77132 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_77.sub b/test/ntuple_bulk_grav_1/batch/condor_77.sub new file mode 100644 index 00000000000..009e7e97f26 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_78.sub b/test/ntuple_bulk_grav_1/batch/condor_78.sub new file mode 100644 index 00000000000..3f5eb503eb6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_79.sub b/test/ntuple_bulk_grav_1/batch/condor_79.sub new file mode 100644 index 00000000000..b1fe6f8d0d1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_8.sub b/test/ntuple_bulk_grav_1/batch/condor_8.sub new file mode 100644 index 00000000000..7320edc409c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_80.sub b/test/ntuple_bulk_grav_1/batch/condor_80.sub new file mode 100644 index 00000000000..d8b58e14c31 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_81.sub b/test/ntuple_bulk_grav_1/batch/condor_81.sub new file mode 100644 index 00000000000..edffdad21e1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_82.sub b/test/ntuple_bulk_grav_1/batch/condor_82.sub new file mode 100644 index 00000000000..49376f6a9d0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_83.sub b/test/ntuple_bulk_grav_1/batch/condor_83.sub new file mode 100644 index 00000000000..edae3a9d981 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_84.sub b/test/ntuple_bulk_grav_1/batch/condor_84.sub new file mode 100644 index 00000000000..00a35d462a0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_85.sub b/test/ntuple_bulk_grav_1/batch/condor_85.sub new file mode 100644 index 00000000000..912332006d2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_86.sub b/test/ntuple_bulk_grav_1/batch/condor_86.sub new file mode 100644 index 00000000000..8eeae1453c5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_87.sub b/test/ntuple_bulk_grav_1/batch/condor_87.sub new file mode 100644 index 00000000000..388cbcb4781 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_88.sub b/test/ntuple_bulk_grav_1/batch/condor_88.sub new file mode 100644 index 00000000000..69747614f1f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_89.sub b/test/ntuple_bulk_grav_1/batch/condor_89.sub new file mode 100644 index 00000000000..e4b218c5f59 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_9.sub b/test/ntuple_bulk_grav_1/batch/condor_9.sub new file mode 100644 index 00000000000..4ebdcca5b8e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_90.sub b/test/ntuple_bulk_grav_1/batch/condor_90.sub new file mode 100644 index 00000000000..cb4b56d8d99 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_91.sub b/test/ntuple_bulk_grav_1/batch/condor_91.sub new file mode 100644 index 00000000000..834556310b0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_92.sub b/test/ntuple_bulk_grav_1/batch/condor_92.sub new file mode 100644 index 00000000000..7f46709464f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_93.sub b/test/ntuple_bulk_grav_1/batch/condor_93.sub new file mode 100644 index 00000000000..6621c7947c9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_94.sub b/test/ntuple_bulk_grav_1/batch/condor_94.sub new file mode 100644 index 00000000000..28c558c2e84 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_95.sub b/test/ntuple_bulk_grav_1/batch/condor_95.sub new file mode 100644 index 00000000000..49b88bc0021 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_96.sub b/test/ntuple_bulk_grav_1/batch/condor_96.sub new file mode 100644 index 00000000000..9866064b6c7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_97.sub b/test/ntuple_bulk_grav_1/batch/condor_97.sub new file mode 100644 index 00000000000..1bacf17c09e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_98.sub b/test/ntuple_bulk_grav_1/batch/condor_98.sub new file mode 100644 index 00000000000..6c0439500cd --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_99.sub b/test/ntuple_bulk_grav_1/batch/condor_99.sub new file mode 100644 index 00000000000..fbd97283766 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/nJobs.202 b/test/ntuple_bulk_grav_1/batch/nJobs.202 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_bulk_grav_1/batch/sge_0.sh b/test/ntuple_bulk_grav_1/batch/sge_0.sh new file mode 100755 index 00000000000..b6c923e9e1a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=0 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_1.sh b/test/ntuple_bulk_grav_1/batch/sge_1.sh new file mode 100755 index 00000000000..b3288610ab2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_10.sh b/test/ntuple_bulk_grav_1/batch/sge_10.sh new file mode 100755 index 00000000000..242df5f4bef --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=10 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_100.sh b/test/ntuple_bulk_grav_1/batch/sge_100.sh new file mode 100755 index 00000000000..4ab52c344e2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=100 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_101.sh b/test/ntuple_bulk_grav_1/batch/sge_101.sh new file mode 100755 index 00000000000..4106234bd22 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=101 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_102.sh b/test/ntuple_bulk_grav_1/batch/sge_102.sh new file mode 100755 index 00000000000..d62bd37372a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=102 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_103.sh b/test/ntuple_bulk_grav_1/batch/sge_103.sh new file mode 100755 index 00000000000..49b5f32c71d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=103 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_104.sh b/test/ntuple_bulk_grav_1/batch/sge_104.sh new file mode 100755 index 00000000000..2b137504354 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=104 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_105.sh b/test/ntuple_bulk_grav_1/batch/sge_105.sh new file mode 100755 index 00000000000..92bf8c70211 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=105 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_106.sh b/test/ntuple_bulk_grav_1/batch/sge_106.sh new file mode 100755 index 00000000000..3d4d39201a8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=106 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_107.sh b/test/ntuple_bulk_grav_1/batch/sge_107.sh new file mode 100755 index 00000000000..2ca0982b0be --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=107 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_108.sh b/test/ntuple_bulk_grav_1/batch/sge_108.sh new file mode 100755 index 00000000000..dd9da6d8fa8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=108 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_109.sh b/test/ntuple_bulk_grav_1/batch/sge_109.sh new file mode 100755 index 00000000000..d680d2f99ae --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=109 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_11.sh b/test/ntuple_bulk_grav_1/batch/sge_11.sh new file mode 100755 index 00000000000..3d4d9b90f5f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=11 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_110.sh b/test/ntuple_bulk_grav_1/batch/sge_110.sh new file mode 100755 index 00000000000..9f7287b07d0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=110 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_111.sh b/test/ntuple_bulk_grav_1/batch/sge_111.sh new file mode 100755 index 00000000000..bea37a10f67 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=111 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_112.sh b/test/ntuple_bulk_grav_1/batch/sge_112.sh new file mode 100755 index 00000000000..f5b9f4b08b2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=112 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_113.sh b/test/ntuple_bulk_grav_1/batch/sge_113.sh new file mode 100755 index 00000000000..9d9a18b8de8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=113 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_114.sh b/test/ntuple_bulk_grav_1/batch/sge_114.sh new file mode 100755 index 00000000000..11edd910cd4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=114 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_115.sh b/test/ntuple_bulk_grav_1/batch/sge_115.sh new file mode 100755 index 00000000000..0db07eb8599 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=115 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_116.sh b/test/ntuple_bulk_grav_1/batch/sge_116.sh new file mode 100755 index 00000000000..92af03449dd --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=116 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_117.sh b/test/ntuple_bulk_grav_1/batch/sge_117.sh new file mode 100755 index 00000000000..7e6189ea26e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=117 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_118.sh b/test/ntuple_bulk_grav_1/batch/sge_118.sh new file mode 100755 index 00000000000..3149e168ede --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=118 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_119.sh b/test/ntuple_bulk_grav_1/batch/sge_119.sh new file mode 100755 index 00000000000..4baba0aa9a1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=119 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_12.sh b/test/ntuple_bulk_grav_1/batch/sge_12.sh new file mode 100755 index 00000000000..b1eb0a28f0b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=12 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_120.sh b/test/ntuple_bulk_grav_1/batch/sge_120.sh new file mode 100755 index 00000000000..9b7c9761f47 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=120 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_121.sh b/test/ntuple_bulk_grav_1/batch/sge_121.sh new file mode 100755 index 00000000000..4197ba3b741 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=121 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_122.sh b/test/ntuple_bulk_grav_1/batch/sge_122.sh new file mode 100755 index 00000000000..897ec1e4630 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=122 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_123.sh b/test/ntuple_bulk_grav_1/batch/sge_123.sh new file mode 100755 index 00000000000..fd8c9d94aa2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=123 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_124.sh b/test/ntuple_bulk_grav_1/batch/sge_124.sh new file mode 100755 index 00000000000..77b3ea5c34d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=124 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_125.sh b/test/ntuple_bulk_grav_1/batch/sge_125.sh new file mode 100755 index 00000000000..9a93e98404d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=125 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_126.sh b/test/ntuple_bulk_grav_1/batch/sge_126.sh new file mode 100755 index 00000000000..73f20325468 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=126 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_127.sh b/test/ntuple_bulk_grav_1/batch/sge_127.sh new file mode 100755 index 00000000000..1669d196160 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=127 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_128.sh b/test/ntuple_bulk_grav_1/batch/sge_128.sh new file mode 100755 index 00000000000..f3e7fc0cfcb --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=128 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_129.sh b/test/ntuple_bulk_grav_1/batch/sge_129.sh new file mode 100755 index 00000000000..1c071872d27 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=129 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_13.sh b/test/ntuple_bulk_grav_1/batch/sge_13.sh new file mode 100755 index 00000000000..5de00f9c5ea --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=13 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_130.sh b/test/ntuple_bulk_grav_1/batch/sge_130.sh new file mode 100755 index 00000000000..21021fcb81a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=130 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_131.sh b/test/ntuple_bulk_grav_1/batch/sge_131.sh new file mode 100755 index 00000000000..6d4533bcbec --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=131 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_132.sh b/test/ntuple_bulk_grav_1/batch/sge_132.sh new file mode 100755 index 00000000000..2d014090c73 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=132 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_133.sh b/test/ntuple_bulk_grav_1/batch/sge_133.sh new file mode 100755 index 00000000000..ae5ff2c7760 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=133 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_134.sh b/test/ntuple_bulk_grav_1/batch/sge_134.sh new file mode 100755 index 00000000000..33b8281a44f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=134 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_135.sh b/test/ntuple_bulk_grav_1/batch/sge_135.sh new file mode 100755 index 00000000000..21d8a25a2d3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=135 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_136.sh b/test/ntuple_bulk_grav_1/batch/sge_136.sh new file mode 100755 index 00000000000..565fc640d6d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=136 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_137.sh b/test/ntuple_bulk_grav_1/batch/sge_137.sh new file mode 100755 index 00000000000..367b66ea60d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=137 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_138.sh b/test/ntuple_bulk_grav_1/batch/sge_138.sh new file mode 100755 index 00000000000..82c6a022a1d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=138 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_139.sh b/test/ntuple_bulk_grav_1/batch/sge_139.sh new file mode 100755 index 00000000000..aa367a17c76 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_139.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=139 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_139.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=139 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_14.sh b/test/ntuple_bulk_grav_1/batch/sge_14.sh new file mode 100755 index 00000000000..a98c960b964 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=14 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_140.sh b/test/ntuple_bulk_grav_1/batch/sge_140.sh new file mode 100755 index 00000000000..0c342dc8024 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_140.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=140 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_140.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=140 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_141.sh b/test/ntuple_bulk_grav_1/batch/sge_141.sh new file mode 100755 index 00000000000..73679a831d1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_141.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=141 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_141.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=141 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_142.sh b/test/ntuple_bulk_grav_1/batch/sge_142.sh new file mode 100755 index 00000000000..571bef53230 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_142.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=142 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_142.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=142 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_143.sh b/test/ntuple_bulk_grav_1/batch/sge_143.sh new file mode 100755 index 00000000000..9c4924baebc --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_143.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=143 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_143.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=143 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_144.sh b/test/ntuple_bulk_grav_1/batch/sge_144.sh new file mode 100755 index 00000000000..f24051f8e5f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_144.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=144 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_144.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=144 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_145.sh b/test/ntuple_bulk_grav_1/batch/sge_145.sh new file mode 100755 index 00000000000..9c080e06df3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_145.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=145 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_145.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=145 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_146.sh b/test/ntuple_bulk_grav_1/batch/sge_146.sh new file mode 100755 index 00000000000..44414fa7fd5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_146.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=146 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_146.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=146 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_147.sh b/test/ntuple_bulk_grav_1/batch/sge_147.sh new file mode 100755 index 00000000000..57501e9e949 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_147.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=147 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_147.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=147 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_148.sh b/test/ntuple_bulk_grav_1/batch/sge_148.sh new file mode 100755 index 00000000000..65a4112ebdb --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_148.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=148 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_148.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=148 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_149.sh b/test/ntuple_bulk_grav_1/batch/sge_149.sh new file mode 100755 index 00000000000..44ffcac9def --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_149.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=149 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_149.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=149 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_15.sh b/test/ntuple_bulk_grav_1/batch/sge_15.sh new file mode 100755 index 00000000000..e905d77bc9e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=15 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_150.sh b/test/ntuple_bulk_grav_1/batch/sge_150.sh new file mode 100755 index 00000000000..8ef3f152d2c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_150.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=150 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_150.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=150 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_151.sh b/test/ntuple_bulk_grav_1/batch/sge_151.sh new file mode 100755 index 00000000000..f4aac64a9aa --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_151.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=151 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_151.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=151 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_152.sh b/test/ntuple_bulk_grav_1/batch/sge_152.sh new file mode 100755 index 00000000000..731cbe1084a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_152.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=152 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_152.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=152 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_153.sh b/test/ntuple_bulk_grav_1/batch/sge_153.sh new file mode 100755 index 00000000000..2975b9b3408 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_153.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=153 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_153.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=153 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_154.sh b/test/ntuple_bulk_grav_1/batch/sge_154.sh new file mode 100755 index 00000000000..aeb1ef42ba0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_154.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=154 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_154.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=154 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_155.sh b/test/ntuple_bulk_grav_1/batch/sge_155.sh new file mode 100755 index 00000000000..63b0809d122 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_155.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=155 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_155.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=155 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_156.sh b/test/ntuple_bulk_grav_1/batch/sge_156.sh new file mode 100755 index 00000000000..b3b3b187d91 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_156.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=156 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_156.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=156 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_157.sh b/test/ntuple_bulk_grav_1/batch/sge_157.sh new file mode 100755 index 00000000000..f65dbcbe3a6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_157.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=157 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_157.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=157 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_158.sh b/test/ntuple_bulk_grav_1/batch/sge_158.sh new file mode 100755 index 00000000000..5f0c1b0312d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_158.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=158 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_158.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=158 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_159.sh b/test/ntuple_bulk_grav_1/batch/sge_159.sh new file mode 100755 index 00000000000..65c4b5a6e86 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_159.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=159 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_159.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=159 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_16.sh b/test/ntuple_bulk_grav_1/batch/sge_16.sh new file mode 100755 index 00000000000..6dcac6c084c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=16 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_160.sh b/test/ntuple_bulk_grav_1/batch/sge_160.sh new file mode 100755 index 00000000000..babb160ae66 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_160.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=160 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_160.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=160 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_161.sh b/test/ntuple_bulk_grav_1/batch/sge_161.sh new file mode 100755 index 00000000000..0bc84577b16 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_161.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=161 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_161.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=161 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_162.sh b/test/ntuple_bulk_grav_1/batch/sge_162.sh new file mode 100755 index 00000000000..955397e784f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_162.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=162 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_162.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=162 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_163.sh b/test/ntuple_bulk_grav_1/batch/sge_163.sh new file mode 100755 index 00000000000..d6dc173e8f8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_163.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=163 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_163.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=163 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_164.sh b/test/ntuple_bulk_grav_1/batch/sge_164.sh new file mode 100755 index 00000000000..eeab21f1553 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_164.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=164 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_164.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=164 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_165.sh b/test/ntuple_bulk_grav_1/batch/sge_165.sh new file mode 100755 index 00000000000..8a169b23c05 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_165.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=165 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_165.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=165 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_166.sh b/test/ntuple_bulk_grav_1/batch/sge_166.sh new file mode 100755 index 00000000000..0d99042c9ee --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_166.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=166 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_166.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=166 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_167.sh b/test/ntuple_bulk_grav_1/batch/sge_167.sh new file mode 100755 index 00000000000..6caf118a4e7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_167.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=167 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_167.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=167 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_168.sh b/test/ntuple_bulk_grav_1/batch/sge_168.sh new file mode 100755 index 00000000000..c91e5aee18b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_168.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=168 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_168.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=168 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_169.sh b/test/ntuple_bulk_grav_1/batch/sge_169.sh new file mode 100755 index 00000000000..6794c0a5d09 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_169.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=169 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_169.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=169 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_17.sh b/test/ntuple_bulk_grav_1/batch/sge_17.sh new file mode 100755 index 00000000000..3cc08795825 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=17 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_170.sh b/test/ntuple_bulk_grav_1/batch/sge_170.sh new file mode 100755 index 00000000000..7e9a39c2142 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_170.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=170 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_170.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=170 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_171.sh b/test/ntuple_bulk_grav_1/batch/sge_171.sh new file mode 100755 index 00000000000..f0b0639eca1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_171.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=171 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_171.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=171 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_172.sh b/test/ntuple_bulk_grav_1/batch/sge_172.sh new file mode 100755 index 00000000000..7cb7aba3aab --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_172.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=172 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_172.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=172 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_173.sh b/test/ntuple_bulk_grav_1/batch/sge_173.sh new file mode 100755 index 00000000000..52d2b293be0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_173.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=173 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_173.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=173 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_174.sh b/test/ntuple_bulk_grav_1/batch/sge_174.sh new file mode 100755 index 00000000000..318884584aa --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_174.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=174 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_174.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=174 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_175.sh b/test/ntuple_bulk_grav_1/batch/sge_175.sh new file mode 100755 index 00000000000..c77d7f1cc5c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_175.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=175 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_175.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=175 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_176.sh b/test/ntuple_bulk_grav_1/batch/sge_176.sh new file mode 100755 index 00000000000..622f62754b4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_176.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=176 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_176.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=176 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_177.sh b/test/ntuple_bulk_grav_1/batch/sge_177.sh new file mode 100755 index 00000000000..06457adc86d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_177.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=177 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_177.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=177 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_178.sh b/test/ntuple_bulk_grav_1/batch/sge_178.sh new file mode 100755 index 00000000000..564b5b006d6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_178.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=178 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_178.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=178 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_179.sh b/test/ntuple_bulk_grav_1/batch/sge_179.sh new file mode 100755 index 00000000000..5e8155bc906 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_179.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=179 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_179.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=179 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_18.sh b/test/ntuple_bulk_grav_1/batch/sge_18.sh new file mode 100755 index 00000000000..290f700ec33 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=18 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_180.sh b/test/ntuple_bulk_grav_1/batch/sge_180.sh new file mode 100755 index 00000000000..b81d6deee9c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_180.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=180 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_180.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=180 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_181.sh b/test/ntuple_bulk_grav_1/batch/sge_181.sh new file mode 100755 index 00000000000..957a2986b4a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_181.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=181 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_181.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=181 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_182.sh b/test/ntuple_bulk_grav_1/batch/sge_182.sh new file mode 100755 index 00000000000..d579aeccb50 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_182.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=182 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_182.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=182 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_183.sh b/test/ntuple_bulk_grav_1/batch/sge_183.sh new file mode 100755 index 00000000000..06f9fde68cd --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_183.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=183 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_183.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=183 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_184.sh b/test/ntuple_bulk_grav_1/batch/sge_184.sh new file mode 100755 index 00000000000..0a0ef95c50b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_184.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=184 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_184.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=184 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_185.sh b/test/ntuple_bulk_grav_1/batch/sge_185.sh new file mode 100755 index 00000000000..dff1c0be0b4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_185.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=185 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_185.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=185 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_186.sh b/test/ntuple_bulk_grav_1/batch/sge_186.sh new file mode 100755 index 00000000000..0e4bc6c28c7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_186.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=186 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_186.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=186 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_187.sh b/test/ntuple_bulk_grav_1/batch/sge_187.sh new file mode 100755 index 00000000000..8ac87b38741 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_187.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=187 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_187.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=187 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_188.sh b/test/ntuple_bulk_grav_1/batch/sge_188.sh new file mode 100755 index 00000000000..19cad4b8a9d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_188.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=188 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_188.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=188 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_189.sh b/test/ntuple_bulk_grav_1/batch/sge_189.sh new file mode 100755 index 00000000000..230c798e21c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_189.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=189 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_189.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=189 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_19.sh b/test/ntuple_bulk_grav_1/batch/sge_19.sh new file mode 100755 index 00000000000..7ee027daacf --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=19 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_190.sh b/test/ntuple_bulk_grav_1/batch/sge_190.sh new file mode 100755 index 00000000000..2f701ef3f48 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_190.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=190 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_190.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=190 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_191.sh b/test/ntuple_bulk_grav_1/batch/sge_191.sh new file mode 100755 index 00000000000..cf29ba56382 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_191.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=191 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_191.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=191 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_192.sh b/test/ntuple_bulk_grav_1/batch/sge_192.sh new file mode 100755 index 00000000000..a20dad1548f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_192.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=192 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_192.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=192 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_193.sh b/test/ntuple_bulk_grav_1/batch/sge_193.sh new file mode 100755 index 00000000000..3cd9387269f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_193.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=193 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_193.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=193 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_194.sh b/test/ntuple_bulk_grav_1/batch/sge_194.sh new file mode 100755 index 00000000000..ebb8622a17f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_194.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=194 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_194.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=194 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_195.sh b/test/ntuple_bulk_grav_1/batch/sge_195.sh new file mode 100755 index 00000000000..e313acd6c1a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_195.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=195 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_195.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=195 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_196.sh b/test/ntuple_bulk_grav_1/batch/sge_196.sh new file mode 100755 index 00000000000..2dbd10a724d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_196.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=196 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_196.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=196 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_197.sh b/test/ntuple_bulk_grav_1/batch/sge_197.sh new file mode 100755 index 00000000000..ef7755ee30f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_197.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=197 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_197.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=197 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_198.sh b/test/ntuple_bulk_grav_1/batch/sge_198.sh new file mode 100755 index 00000000000..346e13ba087 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_198.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=198 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_198.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=198 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_199.sh b/test/ntuple_bulk_grav_1/batch/sge_199.sh new file mode 100755 index 00000000000..37b20fa1730 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_199.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=199 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_199.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=199 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_2.sh b/test/ntuple_bulk_grav_1/batch/sge_2.sh new file mode 100755 index 00000000000..87afb3d4eea --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=2 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_20.sh b/test/ntuple_bulk_grav_1/batch/sge_20.sh new file mode 100755 index 00000000000..640b2449916 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=20 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_200.sh b/test/ntuple_bulk_grav_1/batch/sge_200.sh new file mode 100755 index 00000000000..0faf4cb5a9b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_200.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=200 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_200.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=200 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_201.sh b/test/ntuple_bulk_grav_1/batch/sge_201.sh new file mode 100755 index 00000000000..b42775b83e1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_201.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=201 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_201.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=201 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_21.sh b/test/ntuple_bulk_grav_1/batch/sge_21.sh new file mode 100755 index 00000000000..4eb09d87d8e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=21 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_22.sh b/test/ntuple_bulk_grav_1/batch/sge_22.sh new file mode 100755 index 00000000000..37014aa3966 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=22 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_23.sh b/test/ntuple_bulk_grav_1/batch/sge_23.sh new file mode 100755 index 00000000000..5e3e8fa025e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=23 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_24.sh b/test/ntuple_bulk_grav_1/batch/sge_24.sh new file mode 100755 index 00000000000..23bbd7abd91 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=24 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_25.sh b/test/ntuple_bulk_grav_1/batch/sge_25.sh new file mode 100755 index 00000000000..0bda2386778 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=25 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_26.sh b/test/ntuple_bulk_grav_1/batch/sge_26.sh new file mode 100755 index 00000000000..7f23cb6159f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=26 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_27.sh b/test/ntuple_bulk_grav_1/batch/sge_27.sh new file mode 100755 index 00000000000..0639126b8f4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=27 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_28.sh b/test/ntuple_bulk_grav_1/batch/sge_28.sh new file mode 100755 index 00000000000..24e37cb90bc --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=28 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_29.sh b/test/ntuple_bulk_grav_1/batch/sge_29.sh new file mode 100755 index 00000000000..be1f957adaa --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=29 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_3.sh b/test/ntuple_bulk_grav_1/batch/sge_3.sh new file mode 100755 index 00000000000..d6749f3751b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=3 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_30.sh b/test/ntuple_bulk_grav_1/batch/sge_30.sh new file mode 100755 index 00000000000..76f1d2173dd --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=30 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_31.sh b/test/ntuple_bulk_grav_1/batch/sge_31.sh new file mode 100755 index 00000000000..a9846e1b1d3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=31 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_32.sh b/test/ntuple_bulk_grav_1/batch/sge_32.sh new file mode 100755 index 00000000000..437ff1c1493 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=32 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_33.sh b/test/ntuple_bulk_grav_1/batch/sge_33.sh new file mode 100755 index 00000000000..d5c2653d81a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=33 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_34.sh b/test/ntuple_bulk_grav_1/batch/sge_34.sh new file mode 100755 index 00000000000..760c39ac31a --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=34 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_35.sh b/test/ntuple_bulk_grav_1/batch/sge_35.sh new file mode 100755 index 00000000000..d98798283d0 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=35 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_36.sh b/test/ntuple_bulk_grav_1/batch/sge_36.sh new file mode 100755 index 00000000000..74a13cc7c36 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=36 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_37.sh b/test/ntuple_bulk_grav_1/batch/sge_37.sh new file mode 100755 index 00000000000..5d5a2614550 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=37 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_38.sh b/test/ntuple_bulk_grav_1/batch/sge_38.sh new file mode 100755 index 00000000000..248b5790ee6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=38 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_39.sh b/test/ntuple_bulk_grav_1/batch/sge_39.sh new file mode 100755 index 00000000000..693d8a40e8d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=39 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_4.sh b/test/ntuple_bulk_grav_1/batch/sge_4.sh new file mode 100755 index 00000000000..ab883edc146 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=4 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_40.sh b/test/ntuple_bulk_grav_1/batch/sge_40.sh new file mode 100755 index 00000000000..9d73f7618c1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=40 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_41.sh b/test/ntuple_bulk_grav_1/batch/sge_41.sh new file mode 100755 index 00000000000..f2c5990dbf3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=41 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_42.sh b/test/ntuple_bulk_grav_1/batch/sge_42.sh new file mode 100755 index 00000000000..24e06486f50 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=42 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_43.sh b/test/ntuple_bulk_grav_1/batch/sge_43.sh new file mode 100755 index 00000000000..ae9ed317ad4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=43 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_44.sh b/test/ntuple_bulk_grav_1/batch/sge_44.sh new file mode 100755 index 00000000000..4e9a3c8d453 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=44 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_45.sh b/test/ntuple_bulk_grav_1/batch/sge_45.sh new file mode 100755 index 00000000000..56592d979a4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=45 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_46.sh b/test/ntuple_bulk_grav_1/batch/sge_46.sh new file mode 100755 index 00000000000..fd8a9e9a570 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=46 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_47.sh b/test/ntuple_bulk_grav_1/batch/sge_47.sh new file mode 100755 index 00000000000..1c95e7ea64e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=47 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_48.sh b/test/ntuple_bulk_grav_1/batch/sge_48.sh new file mode 100755 index 00000000000..b749836d236 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=48 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_49.sh b/test/ntuple_bulk_grav_1/batch/sge_49.sh new file mode 100755 index 00000000000..362a61591a1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=49 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_5.sh b/test/ntuple_bulk_grav_1/batch/sge_5.sh new file mode 100755 index 00000000000..782e1a747ec --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=5 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_50.sh b/test/ntuple_bulk_grav_1/batch/sge_50.sh new file mode 100755 index 00000000000..06d5ec44658 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=50 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_51.sh b/test/ntuple_bulk_grav_1/batch/sge_51.sh new file mode 100755 index 00000000000..bfcb927f2b8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=51 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_52.sh b/test/ntuple_bulk_grav_1/batch/sge_52.sh new file mode 100755 index 00000000000..364be36c8c8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=52 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_53.sh b/test/ntuple_bulk_grav_1/batch/sge_53.sh new file mode 100755 index 00000000000..a6d20f32d45 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=53 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_54.sh b/test/ntuple_bulk_grav_1/batch/sge_54.sh new file mode 100755 index 00000000000..8f589376d24 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=54 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_55.sh b/test/ntuple_bulk_grav_1/batch/sge_55.sh new file mode 100755 index 00000000000..d1e83ec15a2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=55 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_56.sh b/test/ntuple_bulk_grav_1/batch/sge_56.sh new file mode 100755 index 00000000000..5718438ca89 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=56 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_57.sh b/test/ntuple_bulk_grav_1/batch/sge_57.sh new file mode 100755 index 00000000000..511aadd5cad --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=57 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_58.sh b/test/ntuple_bulk_grav_1/batch/sge_58.sh new file mode 100755 index 00000000000..8579bb89f64 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=58 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_59.sh b/test/ntuple_bulk_grav_1/batch/sge_59.sh new file mode 100755 index 00000000000..873280862e3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=59 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_6.sh b/test/ntuple_bulk_grav_1/batch/sge_6.sh new file mode 100755 index 00000000000..bf93888a302 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=6 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_60.sh b/test/ntuple_bulk_grav_1/batch/sge_60.sh new file mode 100755 index 00000000000..1f378bbf2e4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=60 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_61.sh b/test/ntuple_bulk_grav_1/batch/sge_61.sh new file mode 100755 index 00000000000..e7b8957b597 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=61 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_62.sh b/test/ntuple_bulk_grav_1/batch/sge_62.sh new file mode 100755 index 00000000000..1b79e1a8636 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=62 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_63.sh b/test/ntuple_bulk_grav_1/batch/sge_63.sh new file mode 100755 index 00000000000..ea94c8ba3d7 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=63 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_64.sh b/test/ntuple_bulk_grav_1/batch/sge_64.sh new file mode 100755 index 00000000000..fbd13d822e1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=64 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_65.sh b/test/ntuple_bulk_grav_1/batch/sge_65.sh new file mode 100755 index 00000000000..7f602c383b1 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=65 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_66.sh b/test/ntuple_bulk_grav_1/batch/sge_66.sh new file mode 100755 index 00000000000..317c00ce2d2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=66 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_67.sh b/test/ntuple_bulk_grav_1/batch/sge_67.sh new file mode 100755 index 00000000000..d4f923c5cb9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=67 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_68.sh b/test/ntuple_bulk_grav_1/batch/sge_68.sh new file mode 100755 index 00000000000..78af5e23ec3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=68 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_69.sh b/test/ntuple_bulk_grav_1/batch/sge_69.sh new file mode 100755 index 00000000000..790f0ee71ef --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=69 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_7.sh b/test/ntuple_bulk_grav_1/batch/sge_7.sh new file mode 100755 index 00000000000..415d6123fd6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=7 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_70.sh b/test/ntuple_bulk_grav_1/batch/sge_70.sh new file mode 100755 index 00000000000..2e2aff43d44 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=70 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_71.sh b/test/ntuple_bulk_grav_1/batch/sge_71.sh new file mode 100755 index 00000000000..5c58cb8db6e --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=71 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_72.sh b/test/ntuple_bulk_grav_1/batch/sge_72.sh new file mode 100755 index 00000000000..c887dc700f4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=72 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_73.sh b/test/ntuple_bulk_grav_1/batch/sge_73.sh new file mode 100755 index 00000000000..1d7faafd74f --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=73 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_74.sh b/test/ntuple_bulk_grav_1/batch/sge_74.sh new file mode 100755 index 00000000000..e67ed898884 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=74 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_75.sh b/test/ntuple_bulk_grav_1/batch/sge_75.sh new file mode 100755 index 00000000000..f6385357b4c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=75 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_76.sh b/test/ntuple_bulk_grav_1/batch/sge_76.sh new file mode 100755 index 00000000000..25c2b5118d9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=76 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_77.sh b/test/ntuple_bulk_grav_1/batch/sge_77.sh new file mode 100755 index 00000000000..fc4f04b1e1c --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=77 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_78.sh b/test/ntuple_bulk_grav_1/batch/sge_78.sh new file mode 100755 index 00000000000..b36b7ec7dc2 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=78 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_79.sh b/test/ntuple_bulk_grav_1/batch/sge_79.sh new file mode 100755 index 00000000000..4d2f04011aa --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=79 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_8.sh b/test/ntuple_bulk_grav_1/batch/sge_8.sh new file mode 100755 index 00000000000..44d27177551 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=8 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_80.sh b/test/ntuple_bulk_grav_1/batch/sge_80.sh new file mode 100755 index 00000000000..02ff58aa159 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=80 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_81.sh b/test/ntuple_bulk_grav_1/batch/sge_81.sh new file mode 100755 index 00000000000..f272d9b09a3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=81 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_82.sh b/test/ntuple_bulk_grav_1/batch/sge_82.sh new file mode 100755 index 00000000000..b3b1a8fb0c3 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=82 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_83.sh b/test/ntuple_bulk_grav_1/batch/sge_83.sh new file mode 100755 index 00000000000..d5d8dc3075d --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=83 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_84.sh b/test/ntuple_bulk_grav_1/batch/sge_84.sh new file mode 100755 index 00000000000..52c3a12abe4 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=84 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_85.sh b/test/ntuple_bulk_grav_1/batch/sge_85.sh new file mode 100755 index 00000000000..8936b81de0b --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=85 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_86.sh b/test/ntuple_bulk_grav_1/batch/sge_86.sh new file mode 100755 index 00000000000..fc796c431a5 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=86 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_87.sh b/test/ntuple_bulk_grav_1/batch/sge_87.sh new file mode 100755 index 00000000000..17802ba4a36 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=87 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_88.sh b/test/ntuple_bulk_grav_1/batch/sge_88.sh new file mode 100755 index 00000000000..9afb454e8f8 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=88 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_89.sh b/test/ntuple_bulk_grav_1/batch/sge_89.sh new file mode 100755 index 00000000000..158308a0420 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=89 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_9.sh b/test/ntuple_bulk_grav_1/batch/sge_9.sh new file mode 100755 index 00000000000..9d49353b1d9 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=9 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_90.sh b/test/ntuple_bulk_grav_1/batch/sge_90.sh new file mode 100755 index 00000000000..91ea36a1f60 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=90 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_91.sh b/test/ntuple_bulk_grav_1/batch/sge_91.sh new file mode 100755 index 00000000000..2e6fc5ff527 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=91 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_92.sh b/test/ntuple_bulk_grav_1/batch/sge_92.sh new file mode 100755 index 00000000000..ecd1f30fb20 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=92 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_93.sh b/test/ntuple_bulk_grav_1/batch/sge_93.sh new file mode 100755 index 00000000000..64d432f0306 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=93 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_94.sh b/test/ntuple_bulk_grav_1/batch/sge_94.sh new file mode 100755 index 00000000000..8f389326cca --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=94 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_95.sh b/test/ntuple_bulk_grav_1/batch/sge_95.sh new file mode 100755 index 00000000000..e0c7e9922eb --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=95 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_96.sh b/test/ntuple_bulk_grav_1/batch/sge_96.sh new file mode 100755 index 00000000000..58d34196384 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=96 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_97.sh b/test/ntuple_bulk_grav_1/batch/sge_97.sh new file mode 100755 index 00000000000..7d88cd39fcc --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=97 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_98.sh b/test/ntuple_bulk_grav_1/batch/sge_98.sh new file mode 100755 index 00000000000..9e42f9adf55 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=98 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_99.sh b/test/ntuple_bulk_grav_1/batch/sge_99.sh new file mode 100755 index 00000000000..1de3bd4a4e6 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=99 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batchscript.sh b/test/ntuple_bulk_grav_1/batchscript.sh new file mode 100755 index 00000000000..093b7a44122 --- /dev/null +++ b/test/ntuple_bulk_grav_1/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_bulk_grav_1" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/condor.sub b/test/ntuple_bulk_grav_1/condor.sub new file mode 100644 index 00000000000..b34cd5215da --- /dev/null +++ b/test/ntuple_bulk_grav_1/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 202 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/helper b/test/ntuple_bulk_grav_1/helper new file mode 120000 index 00000000000..cbb5694c383 --- /dev/null +++ b/test/ntuple_bulk_grav_1/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_bulk_grav_1/batch/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/output b/test/ntuple_bulk_grav_1/output new file mode 120000 index 00000000000..5361aa788bd --- /dev/null +++ b/test/ntuple_bulk_grav_1/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/sge_sub.sh b/test/ntuple_bulk_grav_1/sge_sub.sh new file mode 100755 index 00000000000..660f7811033 --- /dev/null +++ b/test/ntuple_bulk_grav_1/sge_sub.sh @@ -0,0 +1,202 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_182.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_183.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_184.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_185.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_186.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_187.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_188.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_189.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_190.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_191.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_192.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_193.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_194.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_195.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_196.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_197.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_198.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_199.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_200.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_201.sh diff --git a/test/ntuple_bulk_grav_2/ademoor.cc b/test/ntuple_bulk_grav_2/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..2485069921e04ececb7e09ffe705a35e0c7f748c GIT binary patch literal 5609 zcmai$Wl$X4l7v{&^7K0e=GKuY)KmuB^Z!D)o{g8kw5eIXF1~zg5_mjz8z0W?$Jj z8@pP#{~k8MNeviV`vL%p8!v5t2eOM% zAhH7_5ZUH494rh16dC-F9eG3$!ao`;^fd$v{MWj_tNDS*JTFsk|8!tO|BU7ZBGbYL zB2#XA*q1HLKZ9Kdh06NG8#v|?S2~19m3mrtW$y&O7!(=dXp|1sW#8FHN)2jN#FKFN ze8q`MI#JAQXpQkckEcO7YJT%^Yvdt;O2vaP7}Df)Huv*EA55`-{DEibQgn?_Z!_g2 zmPK|X@T?!^Q$;p%vp(BqSWsJKE1drob+z*+Ol2nzY2y#mMxKM_3%KX_McLcE1z=?+ z^O(Bzefb9-4o(6&n{%Ru=3efZijr)l+~NBAc4vPNRc>AO8ka_kqgNI0gvpNUk^H;i z4Ju+h+B5iW;AvZ)B7to3^94mIJK}O|OwsMkMQk{6k(D10nD= z6IJ*bq&o?|o0D8^73m1^Y)|*K5e6jvnnri=nYf-o*;SKxaV1o|m?iH< z1#?PR4T3O!16PRT4`xI4-%{$jG6#La$&3{-@(zBAM@>8Cos(k2er0dul}*riPM#;T z$G%Vn6g{enJ?K1?RW~TimUQw=6nxAod#=#964WUxY-{g=erAM68eYsfT*8g!&fq5h zbv;@rgTZzK^GvRdMde%HqW9F1jfKNn``Ora+aNUw`W2PQ?6QaRlysiaJKIi9OxCRV zH2(UF@CT4h2nLbP0rezboivyH4QgnQ!Y7>$aZ#q+%f|EshA8qAX}Qb`N_6>01wJfL}~;wW#0(B6!u)<={8W{#ODERwK(f&SR6w}Azo3Il7%yO$?1 zO8rLdqL)heJ;_>XbPyL&xvRyPYd=I!rN;J?Q-y`!mqZQE*~L6-KU4P_F2_du`7|wG zTbc$Eh|=V1~T!R^YNhJXKc7nc2dp+yPTZinDivZf>h@ALPKgC(ZS032eSB zT8+U!1-Sr=DU^ox=Q6&~dSw6dQ#gmJY>O*&ClS` zRz5#tEyTj=qTp~0V0L!H!KGQm3g|r;Fs53`tD(j0ow2qQoRv!&PYbg}4Ad4ZwklgC zNZ8h0#MjGbwIS|QJY6IMLp`<~05rh2j%vHM2kBQ#01;v}>mjt3F89I{>WDyH_Hs9s zN8(aDq-niRVpw0!iiyrC?Yj1KXdc$>An+cR>9!vad=Rj}Pv>#PMm493R?(aunjJRI z0%30T4-cht`!n~iGqXNWtlJDJpTkU|7zTaOHlMZg4DQ$Ay$DU1?XybJFwOh_&jo;6z6+3?J zm>ZAxDC5LQtPHYQhLi})7vt{J#^ClYyWNyqGYF!R=kKWD$yd<={4hsbB){g;8j|H< z%%HB&VG3{JG9`DldJQQFv1N>4r>lcE8MHoeA<8yIe?yK;P{ZtnACuAV2* zBbEBZ?ev_Wn6Ls_SCoD;}Pq17V5 zcJYCzZnDCrB z%+yD=MRrx%1S2K*+KlGBDS0Ltu~X$A!`1MR)cj;3S+P?4N*W69VX^rL3YXzcv=q8< zkm3=tL|-c}Qx2bz9(BgRhi1jyOH~6eEp)i=W;nuXM8XJb7W(WTk~bf-2hxP|cUEeaMP&XQ_v&>0xe6 z&a(Y$`WA^;AbFu9sy;$k@OjxjX~JXzwc+!J#pcJu)*mG9b#D~x*K#S>+JR#ue&b^k z&f|ncCWj5D!{idF%;pHblI#do_E&ieC8vv?KHW}*#n<2Ckvt_}W=Qe&T@yd;YYHls zQcq+56i5&CU1MQdNW0`JoQw9`p~D2{&G6|gY08Fo5)^5No8GA3O)A_i;@Zt+55|^@ z5N{_E3(=oF(~g*`WG{)b9}VQWKBmu93WkMvu5!xT5l?>&E~U?9by8t3v2dE)cOr{+ zVdo;(AZ4kS(qDS&tY)|leckmI2lObndkpw!|CtekD%TUU|NC9OyRX!~rC?EMK~6MC z0P_gRz~OGsA5k!NS!o#HSJxie(#{pb#O3F0#?P;+ZKn&2{St{*w$%ShoD7uuQ`h?! z*T5xY>khz)vooyk$@NK0ut4(bT+FgX;d=|j4!-108+e!+l-6K+2>#64{)6wQH@51Y^L(QKZ(o+ z?9WyoJ!4Dpu;F&TQIbDT-j)=F-mSl}-1Ps_H5C$I-2=n^i01yPh|Dyq*KnMo- z&u;KPHs=TIKms=ZWHfy+)!+>PdxS6Tuv&SbjnK@ zYHs-*XbafJPjxNzKvsd7oa%dxcUC^6=$2CVi5ww#$Y*^yT9ip*$Z0XoSeT^dXnWN+7ldD^ z7)e8Aw3yR{-{h3?nc1?Pq7B*VEO_tJz^QO7{**D+1E(L}6ozN^s7$uTTPa9v$cu(3 z(FL=V**CPlzVX_rN|CF;GYoNp=Q?)y>y!SoQGcrcV$>@SX9ovY)0YBn*gMku42*7{60{ky;ctLlimtpz8?Sp?ocfl8Q=gSa8OP0uqZthmu1A%Gq8p4N1 ztsms;@$aC=X8yqODCu(f8KIh9q#TD|L+3xJ#Ps}2SJpOA_OWCCF;4bV7LI#y z4OzU4`txrKO+pc826Ple>yK@-Py;hyXmb#d?uRSbOTyLTu-%M&p=YE6gX~ztPGYkR zbVE}`>w5>vU5tx5G@Rki75tPXc(hDQ*V=K}@J$=|BSS%}Ira^bzsMI9CZZ2JI6R89H>k7kk{Fi`NxV~y@uxBnx^!ZJrrNbeY&m(H@OC6*Q({=yWAFgDbeL+*O$mJ=YvF^h zU%7wmT3xRd_ZDRmD82mZ$lvJQB6eiuYe~)y=g~ItBuun*AR8MEZ>z3ce!iM*AcU9l zdFJ#8KBv=(RpKz(X+`vLE(nD}J*`p&IWNpn@wj=`N#uCOR<#%*GC!v|lCH9n1NbS9 z{z~9xRVQYNK--+_NDyu_jhKeS{zMp)sm&`=YLV(}qUdVd3cRM81~R=KuDgY?nI?WG z`i+AT1mQ>Om`&ayWvroC$$P-5bHnG8oPU2wo zett*-NeE)bFU@_VLyp|WwKi@4eRpe0Rgu%UoZDmG>r@geu~UysY6e#A2Y7V52Yv|% z_Nuu53>sS{Z`IX&r1OHm7X3-LlY2?&YaJSKJ(T>D#x}Eqqek* zM=7YqBhqmbk~0)=81d61KcJzS57&tsGeV@BVIYk95Ubad>X{e`Q7acPLWek<;vMJm z1xOmubGU~wMU=0r94-pna#APCls=w5ZSdQgcb1bFNXW-z?n!hy&_qq)B5Dk;6~!tT zm@I`*N`#d&y2AMA|E!#{(n3FD={;M(i&7QlkByW|JJ{2jvzHHFouI_VYQCZ>@;~mo znR)B@1njL~$-V3~d7_EshF45Yaoc;(3Ct{rHa$lM12THMSTcc9uZTs+G*unIrWd_u zw@5xGGZHN4MQ=$ZnBOb${`i1V8ne`fSbTvclxUU2EWW!wL9h2cTcZ`o8AKbr$H%zq zk9F(WPcuPDlz47JBU8c4u%=w*scJwisvV@>XK8nTR9cO?(>gTVY@@8y80#IuS$x~n z8bV`A0gX+IMEN;fDea;AcyMmxkqr~56MQ*>79{T?+KN_e`P&)SAVN0zvMDE1y+T4c zZpDYuAKxM>He8TYN@2KbcTt8Kk#Y;1^tw5BeXHSO?t*hx;Pk!7?Mdd04Z9M5p^3}| zK(^XBvq4sr51Mj<`XeC=5octjhM+DalbYyxl>Qam8b2MA zIAqOdzjoHORbq{F00!*c@@NEn=vk?Fb33JKyuX(~C{lz+#lMuIu03cY=z4uEElJ1z zF!B9$L?dFJwmO8TNtF|-h~?7VHamLr$=6Zkmj{eTF*iuhaVMitz*k)@7bY|8UH-waNINGhQwid*rVD;1btOf3r*dN5q(l(Pk@o6N5^_V8+nOva&uaolMx1CvUm! zZ+z)V6~zpJU_H|lZBm>&;g9|BYm-^%Xe%y7-OO^4w@r5FVLJv@__8%xrd(tt7#p1H z%%)Xnd0b5qnkS;G9EiCx@*NK`ExcH=*i-Wk`FptpgKoDvL~VSY^cvezdct7{D=E0- z1TKJUxvKEg>#EoE1adi*h;^o;g)Hu-l`(c3=&&{SI&!XWVt)UEQl`tUc;B@~Oqntl z!48$Hten=er5k98mkzM4F^ZHPUG-G6lenu$)#-F7i=&tMpc%1v%^BV(g%@DZrX(H) zb5iRHc6! "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_bulk_grav_2" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/condor.sub b/test/ntuple_bulk_grav_2/condor.sub new file mode 100644 index 00000000000..a6e89aad931 --- /dev/null +++ b/test/ntuple_bulk_grav_2/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part2TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=180 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_2/output/ntuple_bulk_grav_2_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 180 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/helper b/test/ntuple_bulk_grav_2/helper new file mode 120000 index 00000000000..2a88abf2197 --- /dev/null +++ b/test/ntuple_bulk_grav_2/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_bulk_grav_2/batch/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/output b/test/ntuple_bulk_grav_2/output new file mode 120000 index 00000000000..a91aa166817 --- /dev/null +++ b/test/ntuple_bulk_grav_2/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_2/output/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/sge_sub.sh b/test/ntuple_bulk_grav_2/sge_sub.sh new file mode 100755 index 00000000000..7e96a8e1812 --- /dev/null +++ b/test/ntuple_bulk_grav_2/sge_sub.sh @@ -0,0 +1,180 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_179.sh diff --git a/test/ntuple_bulk_grav_3/ademoor.cc b/test/ntuple_bulk_grav_3/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..90e5220ef816224a2c9942912798d34610324c89 GIT binary patch literal 5609 zcmai$WmFXGw#ON|y9SVw&XI1A2I-J)=@}XYC5II0k}m0vp+N+O?oLsVZb4uqFRuHZ z_nv#sy65h-o)7!K_kQ-Xp8uC08Yx?c;u8HQw*zDwh&iWkN>xd{Mhm5 z{L?JDvxl{pz1KgB6psnvH}YCbfbw?}hOOlE*OLS});3!~);4=W*0#$1)=vINNLuTU zZGQ)rrxg^-6$Hg{&O<>4pygvx|6@l14T$QGhMZ3VBBK6l-QU$uP%P2MDZxJ-#QA?l z3!qr6s8Fn@n?5cT3v&k1^k*xKO~)KWj40QygQF)!9Hr`4g4{Do4};&Llp{YaX*{gy)~z1+&g|Fx_lwG zMrF2vOhwvl6+2o z48siSMzyGl@##z#N1(E{-A57fsm~P_r)(*x@o`0Wav#xtL_FJLa>KxB#zhhYWCewx zTN8p%>&9y+(&@Gm{5K|qJF3#q;`#1x>fc+?_8D4T$7hoHhGf@FkjIrWi4l}aj_8=P zU+9ktQ#O4NC0y~ZnxApX7ci1%@^@E}X*{6^vVN7MT_$9!445ab`o30_Ttyi+E)DVO zt4}YfW-gr7CTf%h1oU5GFx=V>!sb&NzGM#gMbcYq;TIh2Dtwr7D>$bkMsDVB5_^$g z@Q^%5??U`b52^T0PyW{AwxYICW2UrAbi6PytKy-`;8NP8qNtuLN|+4DC*=P-O4lLO`n@dg!Pbp%d$k4A>cX9YQ~+>55P1db03Cn{>0znV4u;3Ke($FF;|3N-xHvCv3v=d4P4&9@LKW zhr+?{b-z}ROOAKvykQ8gUm@lrZc{ueSfz5YWvTa*qXf)yb45f^!4}w$ZF?JeP?_+F z2H*9HCVqH{(EruT^jwp6Ej2nsn5NRpe$=ZEWTsmO&Ty}?4=77C@SRyIa0+IpFR6Rq$4g+VrFq zrk}v)&tudSx+^V=w3PDH(&b#$KOcq_RC$WxT9a*miHG%|(b^8!G;?ys_d2VArzD<< z(}o7L6)KgH31LMFuIJ&P;ZDplme^DKDS7RD9}Jqjd>&I6InPm*?@-J} zh+g$e;Dj--YADUJ!R+?!GnS)Z++`N?K@?lL$XL@$h)4}3mQQ*W|8E-|54-O#F9n#Y zo+7j16&J4NJrFI#BAa593iK0nb)%qsw2zfCyS3me2{sboF%obP>q zec@8Oj$?u%xZzhkOg*auW2@@^S2AI^&!#I93!$K!{xGI3 zXdxfN&(0oF5#F%d+w$4H=^K*FtT&9`odMry|2k5*4Dt)eALbk^mL)N?Eji_|ukj7#7w53n3Uc-tMKrqs# z)SSy|Nne0JjkC%|@O*=eE4h0HmCJp2*+pi6U6r00(hp~LJN;}k7cVXD$U{I(5lVoU zwCJZAJ_8$Qpi+JPg*tQFs}s3@EL3V;%Nitv-NBDteiC?0hf7Ga@pkmMkpoftCC6_P zaq~&_@?jh=N*fNd4&~OJmotLYF0K1IqlTKS3x}e@En?iAal(e)%NcCKOfmro3M9gv z9<(lc2*bwuu$T9I&>`Qp_wMJ0qnP7OjrVBm?!`F)(-49W3yg!UN*v2A6MG{~+0OaH zC1sus*uN9P^*-~`OvDc$@8^MOB3#4XbX!|@#DMi14+y?{uYc;Cc}+HDQQv)A(WMjT z4t%T8ZXXO@x}_^scuU{?jKmc&hweES6!Y#(K5s2>$!;@nO(I&=jm?cafoj=#xPqx- zQ73rZck(dP91D!)rM*Fonc(j{lEYj2KsyZ4lNcp4@KG|%uu-a7tw&eMNA^=v0KzvMtG@q4xEW+MNh-CV`d zt|x>Xo;tdqJ#Dmt*?2TL%-t_bg_F8|ZK-*Sk-nt;(+)f?H(P;#>{xA%4ZhyXk-pB| zqi>zC15IObqko(M`zCW#0K>(B*X(1-x!iQ9?i9tnXwg{hLt^eElT`Zte4T@ioLkF1 zTrIb=qiPPF&1pYq<)I8kZaC&>5uxW5dvpmC3CxxcZva9PWJy4FcJ zIvg-II_@z>MPqZ=csj(On96O3=C8z$R^xJ6uuyus-gA&H zE-%c921*eeVOqFe?*w5;$F67(Aq6yahPQPJ$8ZS;yt9>%&@+aZ62_KA;Z`j7p)1e> zQ+G|@?F;u`fPP#f36X9MnfnT7$V(S0HP6PZ*cWNqV|*4*?s7&2)M0O5oP>N2u@}&Z zcgmK?erejKvp9EIjW^JdQIeq6A^xK%`sAHLmyUsZ{1b1-Z$vJietqf}K09I>i3;0D z71KP4%0}9osXcliRu<(W>*Cc`KTqC#p)yTK;B=$zs{P@p2WEyl4l1ybH)BB=pf_#W z_&`NGN|o8u$XTE){1<)wXCnO5^e@bZVrA#~sAAaIdbse|I3N)}CiHym3>I32LGp88 z@``|AJlW%Hb9S>h!f7=sw4^UA7(M?Dfcr212LOxyT>Xy#P+LI(6d)*o|W-@TvdorvAs~Pr+ND;Eli852GM>4mEgM9AYUCGg;_g5?ozmDrWS?1{0t7n)7*{ zRJof}mU7hnmT+Y)s)|$<;l_IXzYrW5Ax|B4tt4e@>IAqwv!;;ERao@KQUk1Qe;`slxj+^!pm(d0RrDlq4**JaJ%aTw%i{kJ%diq3nLYNA zzN7xlvZo-1KN=vP3Pef$*DI+1Le*X;_Zs8_8I&!I@HVg98vBIWSG>XL2&qKmia`upuciHWbLX zRsf#Pvhs8KO+c%9HDqPV*ry7E)dH(dQjP|0l1BOhNsxU;h}^V0N+Ow=zXkXJS3r|z zY&cSx?y4=@B=(|N-^uXnlm<)h4K^b`djq91K-T-56jyHXN zb(t*Vq&Py(Dfe76F_3FVRg^u+5rULQmz2^{!*C6%m(gi081*(VA+;`1_p1wcnA>K- zD-bI%w0*Tsx^pcOIS_wnPhtnOC)iR^MC+Ov>E=6~hj&4R5yWk{!ZBXX5GTy2@s@{W zPBZIy{h^1TC386)7CE}S=sV8?W=nzG9jf4+;Jv*CgW>N{jIUrHF8teKJ-6C6elKsw zYDT}?_|T9KZ8!mDr#|6kRKWF7VnKm)f__#J5JOU;qjfj?+T)Y+wq~1(d^go|!alBw zxfn((%f`|-J7JTuTg0NJE^2m;@^YA5HEGAR8UMf%=yZVRA)u5JM7kR2cmTKcInpfR z8Ln@3(a{Yto=9la`ucVJBVVZkZ%DGQ9gC{$W`_{Eq_?dH*F zeQr?;M!T$@q|4D7Vq0dO#jfn2a1`&D_A5D(=L#LxMaiY*mYnkZ`W7I1B~>TyZ)1}vpv0~@vx%A+}IFxy;0ws8AEH$aKprmr0%xvdkrdb-bF;h_^cs_$Cr{L?JVj#qK;as%x zY)>B^QQ%XgT_)mM%vkcfM273dI%*++=#4bh6fPxL8*0p~hj-G#uuEZxIP5*0!i=rptl^Wp!Xz`l9% ziWC1PD>}fHdj?&E$4{*NjJ;Ld((>HGmvR8<+VR2QBVTEOHkG^8*xmc;=z8@n%MS*| z1GZLA3Qe67-~RUa6cFlDmWF9trJbXbA&y`(t?Di7prpL#{9=c;ZM6SBRj&XewxZcT zpW{SuYBsrJ(Fen6&UvTVv}l4+@M)9I+wjc%BsyotQ#@VZxwrc6F505R3bK#G{RN)e z_lE`MoK(cXjf4Y#<5WxtlKC-Vt_X{BI!b0S7Rj5NY96JqTFPq9%8cis)M(v0BD!!w zJe>XO!8l&J19hx76+;NB>adPE++E#~SRTgZ6kY4zfE`@IUA+y`P7e$WbKUBLhYYzs z?*f;Um9du&i1pV~P*y4rYw-#^lp+y3_8NvCoR&XyS;astvKb)!fU14u zi&IFa^;4w;VIaq1PSLotES@KBR;(fYD6y83S2z7yN^~9}tdUPjc!XRs$skty7GFCd zg71M77NRqI!4O=0r?D`Ug4}dyCX#?i7C4bUfOO&? zcPzW>=xCBPVbQoztRW^%IXPWfm`;`h-h|U$9166?=&!D41m4fpW72Ewp~&dvo(G=w zc%TP&r8F<~f^9WN7Lx1Oj(=Rsm~8!SFS;>FasvjcxaU&vsWojzC?RpHL>id0TV9P(4#GC%%0pl*)eR?8Xr-!OEqV0t zSsWuz`D*f-zyyEO7B=gt!26uNHxPP+?y+o z5XVW?5}io&l!z99G4u>?N4jw{Ux%N2aC6Y-rXuKiT87k_u&9QfiCBiotB7b=cVo^i zI9`eB4;hw96LJ7o*EQeZ5poZII&snA@%bb}zreS+!Y$*J64? zrL?v;8VaQd-EF_5xs{1959jkZ(93*_h>aiNes(`!w!Cfr zd+ja9d24>U zYV9hN{d)gWu_E)?+6O%;by8E@lFCKya9+;)Fl)1%$sw<%m90JhV%1J$!R2X*ddHo- z(rgt%wq%HG1Xf!?WJEth#iHc@b!~nV-EFOuZr3UmRWBMK^;HK z?)OKrlXbz)7xBdDyA$xKlLpdC)y-xC{Ygi${rO1++u~rus?wpCq#{|3zgz{<0-P&2 zrCB@m1I3KnBXpEPxLzkeN7|fQp1_qD4~a6GN@lo#ZApdNc0vsi<%}N>Q~NDk(z<>I zR466*aHl;vyhkqLL9XID|42 literal 0 HcmV?d00001 diff --git a/test/ntuple_bulk_grav_3/batch/condor_0.sub b/test/ntuple_bulk_grav_3/batch/condor_0.sub new file mode 100644 index 00000000000..972fa227155 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_1.sub b/test/ntuple_bulk_grav_3/batch/condor_1.sub new file mode 100644 index 00000000000..76d51d04e4c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_10.sub b/test/ntuple_bulk_grav_3/batch/condor_10.sub new file mode 100644 index 00000000000..e9080fe87be --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_100.sub b/test/ntuple_bulk_grav_3/batch/condor_100.sub new file mode 100644 index 00000000000..e37b4d30dbc --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_101.sub b/test/ntuple_bulk_grav_3/batch/condor_101.sub new file mode 100644 index 00000000000..cea8719bd79 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_102.sub b/test/ntuple_bulk_grav_3/batch/condor_102.sub new file mode 100644 index 00000000000..23849b7f3ce --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_103.sub b/test/ntuple_bulk_grav_3/batch/condor_103.sub new file mode 100644 index 00000000000..1f9b460a1a0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_104.sub b/test/ntuple_bulk_grav_3/batch/condor_104.sub new file mode 100644 index 00000000000..0ff49d123df --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_105.sub b/test/ntuple_bulk_grav_3/batch/condor_105.sub new file mode 100644 index 00000000000..2e5e9906586 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_106.sub b/test/ntuple_bulk_grav_3/batch/condor_106.sub new file mode 100644 index 00000000000..4731950d28c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_107.sub b/test/ntuple_bulk_grav_3/batch/condor_107.sub new file mode 100644 index 00000000000..d860bf4abb3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_108.sub b/test/ntuple_bulk_grav_3/batch/condor_108.sub new file mode 100644 index 00000000000..5673845cf9f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_109.sub b/test/ntuple_bulk_grav_3/batch/condor_109.sub new file mode 100644 index 00000000000..c1a3fffe278 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_11.sub b/test/ntuple_bulk_grav_3/batch/condor_11.sub new file mode 100644 index 00000000000..d0a30ee9ffb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_110.sub b/test/ntuple_bulk_grav_3/batch/condor_110.sub new file mode 100644 index 00000000000..070bb1207cc --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_111.sub b/test/ntuple_bulk_grav_3/batch/condor_111.sub new file mode 100644 index 00000000000..845e055ef2b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_112.sub b/test/ntuple_bulk_grav_3/batch/condor_112.sub new file mode 100644 index 00000000000..959a6d5a4dc --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_113.sub b/test/ntuple_bulk_grav_3/batch/condor_113.sub new file mode 100644 index 00000000000..79a1ee2ef51 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_114.sub b/test/ntuple_bulk_grav_3/batch/condor_114.sub new file mode 100644 index 00000000000..85f20d5429c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_115.sub b/test/ntuple_bulk_grav_3/batch/condor_115.sub new file mode 100644 index 00000000000..0ae05791932 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_116.sub b/test/ntuple_bulk_grav_3/batch/condor_116.sub new file mode 100644 index 00000000000..fcdc7414acd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_117.sub b/test/ntuple_bulk_grav_3/batch/condor_117.sub new file mode 100644 index 00000000000..7f1219adeb1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_118.sub b/test/ntuple_bulk_grav_3/batch/condor_118.sub new file mode 100644 index 00000000000..9d393420732 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_119.sub b/test/ntuple_bulk_grav_3/batch/condor_119.sub new file mode 100644 index 00000000000..f1ca2918b74 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_12.sub b/test/ntuple_bulk_grav_3/batch/condor_12.sub new file mode 100644 index 00000000000..304dcb544c3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_120.sub b/test/ntuple_bulk_grav_3/batch/condor_120.sub new file mode 100644 index 00000000000..327f798024d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_121.sub b/test/ntuple_bulk_grav_3/batch/condor_121.sub new file mode 100644 index 00000000000..0b11bb389f4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_122.sub b/test/ntuple_bulk_grav_3/batch/condor_122.sub new file mode 100644 index 00000000000..a6a1130a19f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_123.sub b/test/ntuple_bulk_grav_3/batch/condor_123.sub new file mode 100644 index 00000000000..6387080c060 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_124.sub b/test/ntuple_bulk_grav_3/batch/condor_124.sub new file mode 100644 index 00000000000..4f3368d5348 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_125.sub b/test/ntuple_bulk_grav_3/batch/condor_125.sub new file mode 100644 index 00000000000..304b36a32cc --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_126.sub b/test/ntuple_bulk_grav_3/batch/condor_126.sub new file mode 100644 index 00000000000..2f97179ae08 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_127.sub b/test/ntuple_bulk_grav_3/batch/condor_127.sub new file mode 100644 index 00000000000..d5b46b9397d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_128.sub b/test/ntuple_bulk_grav_3/batch/condor_128.sub new file mode 100644 index 00000000000..d9394a65bf4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_129.sub b/test/ntuple_bulk_grav_3/batch/condor_129.sub new file mode 100644 index 00000000000..ee596fbc3b0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_13.sub b/test/ntuple_bulk_grav_3/batch/condor_13.sub new file mode 100644 index 00000000000..02e6161142b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_130.sub b/test/ntuple_bulk_grav_3/batch/condor_130.sub new file mode 100644 index 00000000000..18968a4a6ef --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_131.sub b/test/ntuple_bulk_grav_3/batch/condor_131.sub new file mode 100644 index 00000000000..dc4a94ccd9f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_132.sub b/test/ntuple_bulk_grav_3/batch/condor_132.sub new file mode 100644 index 00000000000..1d9b3e021c4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_133.sub b/test/ntuple_bulk_grav_3/batch/condor_133.sub new file mode 100644 index 00000000000..432e983f915 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_134.sub b/test/ntuple_bulk_grav_3/batch/condor_134.sub new file mode 100644 index 00000000000..954f3f6f798 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_135.sub b/test/ntuple_bulk_grav_3/batch/condor_135.sub new file mode 100644 index 00000000000..a4b037c036d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_136.sub b/test/ntuple_bulk_grav_3/batch/condor_136.sub new file mode 100644 index 00000000000..81c28a2d8c3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_137.sub b/test/ntuple_bulk_grav_3/batch/condor_137.sub new file mode 100644 index 00000000000..0923a4793f8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_138.sub b/test/ntuple_bulk_grav_3/batch/condor_138.sub new file mode 100644 index 00000000000..98f2872e443 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_139.sub b/test/ntuple_bulk_grav_3/batch/condor_139.sub new file mode 100644 index 00000000000..46f70006920 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_139.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=139 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.139.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_139.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.139.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_14.sub b/test/ntuple_bulk_grav_3/batch/condor_14.sub new file mode 100644 index 00000000000..63c9d2b410c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_140.sub b/test/ntuple_bulk_grav_3/batch/condor_140.sub new file mode 100644 index 00000000000..dba0dbb1bcc --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_140.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=140 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.140.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_140.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.140.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_141.sub b/test/ntuple_bulk_grav_3/batch/condor_141.sub new file mode 100644 index 00000000000..234cce16a23 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_141.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=141 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.141.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_141.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.141.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_142.sub b/test/ntuple_bulk_grav_3/batch/condor_142.sub new file mode 100644 index 00000000000..0a346d9f00b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_142.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=142 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.142.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_142.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.142.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_143.sub b/test/ntuple_bulk_grav_3/batch/condor_143.sub new file mode 100644 index 00000000000..227290288d2 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_143.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=143 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.143.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_143.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.143.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_144.sub b/test/ntuple_bulk_grav_3/batch/condor_144.sub new file mode 100644 index 00000000000..a99f201773d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_144.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=144 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.144.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_144.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.144.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_145.sub b/test/ntuple_bulk_grav_3/batch/condor_145.sub new file mode 100644 index 00000000000..4c97edc5b8d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_145.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=145 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.145.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_145.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.145.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_146.sub b/test/ntuple_bulk_grav_3/batch/condor_146.sub new file mode 100644 index 00000000000..6d4f5ce6a9e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_146.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=146 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.146.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_146.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.146.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_147.sub b/test/ntuple_bulk_grav_3/batch/condor_147.sub new file mode 100644 index 00000000000..036d4db0d69 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_147.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=147 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.147.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_147.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.147.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_148.sub b/test/ntuple_bulk_grav_3/batch/condor_148.sub new file mode 100644 index 00000000000..ab7b3e1acc8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_148.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=148 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.148.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_148.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.148.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_149.sub b/test/ntuple_bulk_grav_3/batch/condor_149.sub new file mode 100644 index 00000000000..ff3e0a8cf7b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_149.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=149 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.149.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_149.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.149.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_15.sub b/test/ntuple_bulk_grav_3/batch/condor_15.sub new file mode 100644 index 00000000000..8374894432f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_150.sub b/test/ntuple_bulk_grav_3/batch/condor_150.sub new file mode 100644 index 00000000000..9af859205d9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_150.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=150 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.150.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_150.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.150.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_151.sub b/test/ntuple_bulk_grav_3/batch/condor_151.sub new file mode 100644 index 00000000000..79701d46055 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_151.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=151 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.151.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_151.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.151.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_152.sub b/test/ntuple_bulk_grav_3/batch/condor_152.sub new file mode 100644 index 00000000000..e3b40db02a6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_152.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=152 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.152.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_152.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.152.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_153.sub b/test/ntuple_bulk_grav_3/batch/condor_153.sub new file mode 100644 index 00000000000..fcd1ad61991 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_153.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=153 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.153.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_153.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.153.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_154.sub b/test/ntuple_bulk_grav_3/batch/condor_154.sub new file mode 100644 index 00000000000..b6ed65a43d5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_154.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=154 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.154.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_154.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.154.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_155.sub b/test/ntuple_bulk_grav_3/batch/condor_155.sub new file mode 100644 index 00000000000..f1c3c235c1a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_155.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=155 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.155.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_155.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.155.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_156.sub b/test/ntuple_bulk_grav_3/batch/condor_156.sub new file mode 100644 index 00000000000..0d8847764f5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_156.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=156 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.156.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_156.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.156.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_157.sub b/test/ntuple_bulk_grav_3/batch/condor_157.sub new file mode 100644 index 00000000000..31a97c7e176 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_157.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=157 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.157.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_157.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.157.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_158.sub b/test/ntuple_bulk_grav_3/batch/condor_158.sub new file mode 100644 index 00000000000..0f25af7f1c1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_158.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=158 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.158.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_158.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.158.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_159.sub b/test/ntuple_bulk_grav_3/batch/condor_159.sub new file mode 100644 index 00000000000..296efd4cff6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_159.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=159 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.159.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_159.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.159.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_16.sub b/test/ntuple_bulk_grav_3/batch/condor_16.sub new file mode 100644 index 00000000000..6fd9ffefcfb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_160.sub b/test/ntuple_bulk_grav_3/batch/condor_160.sub new file mode 100644 index 00000000000..a813f10e244 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_160.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=160 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.160.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_160.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.160.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_161.sub b/test/ntuple_bulk_grav_3/batch/condor_161.sub new file mode 100644 index 00000000000..ca8de9215d5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_161.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=161 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.161.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_161.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.161.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_162.sub b/test/ntuple_bulk_grav_3/batch/condor_162.sub new file mode 100644 index 00000000000..e478f5c17ae --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_162.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=162 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.162.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_162.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.162.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_163.sub b/test/ntuple_bulk_grav_3/batch/condor_163.sub new file mode 100644 index 00000000000..a41394d4a29 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_163.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=163 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.163.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_163.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.163.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_164.sub b/test/ntuple_bulk_grav_3/batch/condor_164.sub new file mode 100644 index 00000000000..3e3e68f88d8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_164.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=164 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.164.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_164.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.164.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_165.sub b/test/ntuple_bulk_grav_3/batch/condor_165.sub new file mode 100644 index 00000000000..401f6144a19 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_165.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=165 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.165.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_165.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.165.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_166.sub b/test/ntuple_bulk_grav_3/batch/condor_166.sub new file mode 100644 index 00000000000..f545ecf9762 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_166.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=166 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.166.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_166.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.166.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_167.sub b/test/ntuple_bulk_grav_3/batch/condor_167.sub new file mode 100644 index 00000000000..1d12f2ad737 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_167.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=167 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.167.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_167.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.167.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_168.sub b/test/ntuple_bulk_grav_3/batch/condor_168.sub new file mode 100644 index 00000000000..eeae3ba202a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_168.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=168 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.168.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_168.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.168.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_169.sub b/test/ntuple_bulk_grav_3/batch/condor_169.sub new file mode 100644 index 00000000000..987ff3dd32b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_169.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=169 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.169.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_169.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.169.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_17.sub b/test/ntuple_bulk_grav_3/batch/condor_17.sub new file mode 100644 index 00000000000..d283c23a1f4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_170.sub b/test/ntuple_bulk_grav_3/batch/condor_170.sub new file mode 100644 index 00000000000..b3b78a64bcb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_170.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=170 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.170.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_170.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.170.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_171.sub b/test/ntuple_bulk_grav_3/batch/condor_171.sub new file mode 100644 index 00000000000..a2d0dc13899 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_171.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=171 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.171.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_171.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.171.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_172.sub b/test/ntuple_bulk_grav_3/batch/condor_172.sub new file mode 100644 index 00000000000..865904fe950 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_172.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=172 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.172.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_172.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.172.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_173.sub b/test/ntuple_bulk_grav_3/batch/condor_173.sub new file mode 100644 index 00000000000..3e7f35d408f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_173.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=173 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.173.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_173.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.173.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_174.sub b/test/ntuple_bulk_grav_3/batch/condor_174.sub new file mode 100644 index 00000000000..43132292cc3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_174.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=174 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.174.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_174.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.174.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_175.sub b/test/ntuple_bulk_grav_3/batch/condor_175.sub new file mode 100644 index 00000000000..158dce2b34b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_175.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=175 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.175.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_175.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.175.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_176.sub b/test/ntuple_bulk_grav_3/batch/condor_176.sub new file mode 100644 index 00000000000..a62c11b371b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_176.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=176 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.176.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_176.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.176.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_177.sub b/test/ntuple_bulk_grav_3/batch/condor_177.sub new file mode 100644 index 00000000000..4832493e82f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_177.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=177 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.177.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_177.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.177.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_178.sub b/test/ntuple_bulk_grav_3/batch/condor_178.sub new file mode 100644 index 00000000000..bae98d0faa5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_178.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=178 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.178.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_178.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.178.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_179.sub b/test/ntuple_bulk_grav_3/batch/condor_179.sub new file mode 100644 index 00000000000..6cae96d2633 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_179.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=179 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.179.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_179.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.179.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_18.sub b/test/ntuple_bulk_grav_3/batch/condor_18.sub new file mode 100644 index 00000000000..0cf0447cfc5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_180.sub b/test/ntuple_bulk_grav_3/batch/condor_180.sub new file mode 100644 index 00000000000..36826035584 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_180.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=180 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.180.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_180.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.180.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_181.sub b/test/ntuple_bulk_grav_3/batch/condor_181.sub new file mode 100644 index 00000000000..0e92a079d99 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_181.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=181 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.181.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_181.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.181.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_182.sub b/test/ntuple_bulk_grav_3/batch/condor_182.sub new file mode 100644 index 00000000000..c2b8e7deffa --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_182.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=182 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.182.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_182.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.182.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_19.sub b/test/ntuple_bulk_grav_3/batch/condor_19.sub new file mode 100644 index 00000000000..a54a198883c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_2.sub b/test/ntuple_bulk_grav_3/batch/condor_2.sub new file mode 100644 index 00000000000..3568fce3ea0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_20.sub b/test/ntuple_bulk_grav_3/batch/condor_20.sub new file mode 100644 index 00000000000..e15ca6e0fb4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_21.sub b/test/ntuple_bulk_grav_3/batch/condor_21.sub new file mode 100644 index 00000000000..9064c368389 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_22.sub b/test/ntuple_bulk_grav_3/batch/condor_22.sub new file mode 100644 index 00000000000..8fc266e3bdf --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_23.sub b/test/ntuple_bulk_grav_3/batch/condor_23.sub new file mode 100644 index 00000000000..263c88dd4c8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_24.sub b/test/ntuple_bulk_grav_3/batch/condor_24.sub new file mode 100644 index 00000000000..8961ae5b1c9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_25.sub b/test/ntuple_bulk_grav_3/batch/condor_25.sub new file mode 100644 index 00000000000..7d5ef4def93 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_26.sub b/test/ntuple_bulk_grav_3/batch/condor_26.sub new file mode 100644 index 00000000000..934e293529d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_27.sub b/test/ntuple_bulk_grav_3/batch/condor_27.sub new file mode 100644 index 00000000000..cf9844bba32 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_28.sub b/test/ntuple_bulk_grav_3/batch/condor_28.sub new file mode 100644 index 00000000000..89ba4e911fd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_29.sub b/test/ntuple_bulk_grav_3/batch/condor_29.sub new file mode 100644 index 00000000000..6016d99bc74 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_3.sub b/test/ntuple_bulk_grav_3/batch/condor_3.sub new file mode 100644 index 00000000000..8a8d93ec747 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_30.sub b/test/ntuple_bulk_grav_3/batch/condor_30.sub new file mode 100644 index 00000000000..03c568e7ff6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_31.sub b/test/ntuple_bulk_grav_3/batch/condor_31.sub new file mode 100644 index 00000000000..1578c99b377 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_32.sub b/test/ntuple_bulk_grav_3/batch/condor_32.sub new file mode 100644 index 00000000000..98b4eee02fa --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_33.sub b/test/ntuple_bulk_grav_3/batch/condor_33.sub new file mode 100644 index 00000000000..4f99fef8c92 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_34.sub b/test/ntuple_bulk_grav_3/batch/condor_34.sub new file mode 100644 index 00000000000..7342649d9c5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_35.sub b/test/ntuple_bulk_grav_3/batch/condor_35.sub new file mode 100644 index 00000000000..46c8ea67fd8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_36.sub b/test/ntuple_bulk_grav_3/batch/condor_36.sub new file mode 100644 index 00000000000..4625cf8d888 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_37.sub b/test/ntuple_bulk_grav_3/batch/condor_37.sub new file mode 100644 index 00000000000..2a93a5c06ec --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_38.sub b/test/ntuple_bulk_grav_3/batch/condor_38.sub new file mode 100644 index 00000000000..00185f3f24c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_39.sub b/test/ntuple_bulk_grav_3/batch/condor_39.sub new file mode 100644 index 00000000000..5ceb0b6f09f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_4.sub b/test/ntuple_bulk_grav_3/batch/condor_4.sub new file mode 100644 index 00000000000..4ea11c07475 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_40.sub b/test/ntuple_bulk_grav_3/batch/condor_40.sub new file mode 100644 index 00000000000..e0e50f91e64 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_41.sub b/test/ntuple_bulk_grav_3/batch/condor_41.sub new file mode 100644 index 00000000000..14cbf42286b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_42.sub b/test/ntuple_bulk_grav_3/batch/condor_42.sub new file mode 100644 index 00000000000..a813f0355df --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_43.sub b/test/ntuple_bulk_grav_3/batch/condor_43.sub new file mode 100644 index 00000000000..bf2e522beb9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_44.sub b/test/ntuple_bulk_grav_3/batch/condor_44.sub new file mode 100644 index 00000000000..56dec6eb757 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_45.sub b/test/ntuple_bulk_grav_3/batch/condor_45.sub new file mode 100644 index 00000000000..516f286b417 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_46.sub b/test/ntuple_bulk_grav_3/batch/condor_46.sub new file mode 100644 index 00000000000..f812c8ac6b8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_47.sub b/test/ntuple_bulk_grav_3/batch/condor_47.sub new file mode 100644 index 00000000000..7d1d6b7b2fd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_48.sub b/test/ntuple_bulk_grav_3/batch/condor_48.sub new file mode 100644 index 00000000000..d4be2678767 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_49.sub b/test/ntuple_bulk_grav_3/batch/condor_49.sub new file mode 100644 index 00000000000..cbb9aa327ae --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_5.sub b/test/ntuple_bulk_grav_3/batch/condor_5.sub new file mode 100644 index 00000000000..700b67ebcbd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_50.sub b/test/ntuple_bulk_grav_3/batch/condor_50.sub new file mode 100644 index 00000000000..4567d5ca81c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_51.sub b/test/ntuple_bulk_grav_3/batch/condor_51.sub new file mode 100644 index 00000000000..ece89782aad --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_52.sub b/test/ntuple_bulk_grav_3/batch/condor_52.sub new file mode 100644 index 00000000000..0207fbf1c45 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_53.sub b/test/ntuple_bulk_grav_3/batch/condor_53.sub new file mode 100644 index 00000000000..0b7c38a0c65 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_54.sub b/test/ntuple_bulk_grav_3/batch/condor_54.sub new file mode 100644 index 00000000000..34c0a765eff --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_55.sub b/test/ntuple_bulk_grav_3/batch/condor_55.sub new file mode 100644 index 00000000000..153696c9253 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_56.sub b/test/ntuple_bulk_grav_3/batch/condor_56.sub new file mode 100644 index 00000000000..16bcc511d19 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_57.sub b/test/ntuple_bulk_grav_3/batch/condor_57.sub new file mode 100644 index 00000000000..6e064cb8c6e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_58.sub b/test/ntuple_bulk_grav_3/batch/condor_58.sub new file mode 100644 index 00000000000..754c983368e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_59.sub b/test/ntuple_bulk_grav_3/batch/condor_59.sub new file mode 100644 index 00000000000..4a8bbd6c10e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_6.sub b/test/ntuple_bulk_grav_3/batch/condor_6.sub new file mode 100644 index 00000000000..97e353cd638 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_60.sub b/test/ntuple_bulk_grav_3/batch/condor_60.sub new file mode 100644 index 00000000000..36d6504ac98 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_61.sub b/test/ntuple_bulk_grav_3/batch/condor_61.sub new file mode 100644 index 00000000000..e282a382741 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_62.sub b/test/ntuple_bulk_grav_3/batch/condor_62.sub new file mode 100644 index 00000000000..6bee1ce5639 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_63.sub b/test/ntuple_bulk_grav_3/batch/condor_63.sub new file mode 100644 index 00000000000..341d865a2e2 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_64.sub b/test/ntuple_bulk_grav_3/batch/condor_64.sub new file mode 100644 index 00000000000..fec83ccd1b9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_65.sub b/test/ntuple_bulk_grav_3/batch/condor_65.sub new file mode 100644 index 00000000000..5219cdfcc40 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_66.sub b/test/ntuple_bulk_grav_3/batch/condor_66.sub new file mode 100644 index 00000000000..1a1ef2c1659 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_67.sub b/test/ntuple_bulk_grav_3/batch/condor_67.sub new file mode 100644 index 00000000000..ef77845d5c3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_68.sub b/test/ntuple_bulk_grav_3/batch/condor_68.sub new file mode 100644 index 00000000000..4bb51992ae5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_69.sub b/test/ntuple_bulk_grav_3/batch/condor_69.sub new file mode 100644 index 00000000000..20f1797bb13 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_7.sub b/test/ntuple_bulk_grav_3/batch/condor_7.sub new file mode 100644 index 00000000000..9559e772281 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_70.sub b/test/ntuple_bulk_grav_3/batch/condor_70.sub new file mode 100644 index 00000000000..1be676f1749 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_71.sub b/test/ntuple_bulk_grav_3/batch/condor_71.sub new file mode 100644 index 00000000000..8e4371963f5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_72.sub b/test/ntuple_bulk_grav_3/batch/condor_72.sub new file mode 100644 index 00000000000..bd1552a1f0d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_73.sub b/test/ntuple_bulk_grav_3/batch/condor_73.sub new file mode 100644 index 00000000000..9e0b23ccede --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_74.sub b/test/ntuple_bulk_grav_3/batch/condor_74.sub new file mode 100644 index 00000000000..330bc59413c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_75.sub b/test/ntuple_bulk_grav_3/batch/condor_75.sub new file mode 100644 index 00000000000..b60ada863e1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_76.sub b/test/ntuple_bulk_grav_3/batch/condor_76.sub new file mode 100644 index 00000000000..9d72dc9877d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_77.sub b/test/ntuple_bulk_grav_3/batch/condor_77.sub new file mode 100644 index 00000000000..921da138db8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_78.sub b/test/ntuple_bulk_grav_3/batch/condor_78.sub new file mode 100644 index 00000000000..83a4d564233 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_79.sub b/test/ntuple_bulk_grav_3/batch/condor_79.sub new file mode 100644 index 00000000000..272d4ddb155 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_8.sub b/test/ntuple_bulk_grav_3/batch/condor_8.sub new file mode 100644 index 00000000000..81092948613 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_80.sub b/test/ntuple_bulk_grav_3/batch/condor_80.sub new file mode 100644 index 00000000000..f71194bc8f8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_81.sub b/test/ntuple_bulk_grav_3/batch/condor_81.sub new file mode 100644 index 00000000000..eef75bee77e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_82.sub b/test/ntuple_bulk_grav_3/batch/condor_82.sub new file mode 100644 index 00000000000..b44782eb634 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_83.sub b/test/ntuple_bulk_grav_3/batch/condor_83.sub new file mode 100644 index 00000000000..b4b65d148f5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_84.sub b/test/ntuple_bulk_grav_3/batch/condor_84.sub new file mode 100644 index 00000000000..37b872b2ac1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_85.sub b/test/ntuple_bulk_grav_3/batch/condor_85.sub new file mode 100644 index 00000000000..37ec870bc02 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_86.sub b/test/ntuple_bulk_grav_3/batch/condor_86.sub new file mode 100644 index 00000000000..9605c72a36c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_87.sub b/test/ntuple_bulk_grav_3/batch/condor_87.sub new file mode 100644 index 00000000000..74491b2dd95 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_88.sub b/test/ntuple_bulk_grav_3/batch/condor_88.sub new file mode 100644 index 00000000000..722a69330eb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_89.sub b/test/ntuple_bulk_grav_3/batch/condor_89.sub new file mode 100644 index 00000000000..3043a55304e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_9.sub b/test/ntuple_bulk_grav_3/batch/condor_9.sub new file mode 100644 index 00000000000..babf7dce56b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_90.sub b/test/ntuple_bulk_grav_3/batch/condor_90.sub new file mode 100644 index 00000000000..81d19c01096 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_91.sub b/test/ntuple_bulk_grav_3/batch/condor_91.sub new file mode 100644 index 00000000000..2cf34c67e9c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_92.sub b/test/ntuple_bulk_grav_3/batch/condor_92.sub new file mode 100644 index 00000000000..076f66810b6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_93.sub b/test/ntuple_bulk_grav_3/batch/condor_93.sub new file mode 100644 index 00000000000..1127f7dd57b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_94.sub b/test/ntuple_bulk_grav_3/batch/condor_94.sub new file mode 100644 index 00000000000..c131d5debde --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_95.sub b/test/ntuple_bulk_grav_3/batch/condor_95.sub new file mode 100644 index 00000000000..11fe143792e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_96.sub b/test/ntuple_bulk_grav_3/batch/condor_96.sub new file mode 100644 index 00000000000..5998e50c79c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_97.sub b/test/ntuple_bulk_grav_3/batch/condor_97.sub new file mode 100644 index 00000000000..015188e6bfe --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_98.sub b/test/ntuple_bulk_grav_3/batch/condor_98.sub new file mode 100644 index 00000000000..1038cf5d799 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_99.sub b/test/ntuple_bulk_grav_3/batch/condor_99.sub new file mode 100644 index 00000000000..85da92d5630 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/nJobs.183 b/test/ntuple_bulk_grav_3/batch/nJobs.183 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_bulk_grav_3/batch/sge_0.sh b/test/ntuple_bulk_grav_3/batch/sge_0.sh new file mode 100755 index 00000000000..8f938a3ebc6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=0 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_1.sh b/test/ntuple_bulk_grav_3/batch/sge_1.sh new file mode 100755 index 00000000000..a99b0e1420a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=1 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_10.sh b/test/ntuple_bulk_grav_3/batch/sge_10.sh new file mode 100755 index 00000000000..285f8e7972d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=10 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_100.sh b/test/ntuple_bulk_grav_3/batch/sge_100.sh new file mode 100755 index 00000000000..e0925413dfb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=100 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_101.sh b/test/ntuple_bulk_grav_3/batch/sge_101.sh new file mode 100755 index 00000000000..15fbdf81c9c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=101 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_102.sh b/test/ntuple_bulk_grav_3/batch/sge_102.sh new file mode 100755 index 00000000000..e963601ef09 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=102 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_103.sh b/test/ntuple_bulk_grav_3/batch/sge_103.sh new file mode 100755 index 00000000000..2ffcb232273 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=103 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_104.sh b/test/ntuple_bulk_grav_3/batch/sge_104.sh new file mode 100755 index 00000000000..c95f209d81d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=104 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_105.sh b/test/ntuple_bulk_grav_3/batch/sge_105.sh new file mode 100755 index 00000000000..7d9e6626810 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=105 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_106.sh b/test/ntuple_bulk_grav_3/batch/sge_106.sh new file mode 100755 index 00000000000..18cd0a209a8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=106 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_107.sh b/test/ntuple_bulk_grav_3/batch/sge_107.sh new file mode 100755 index 00000000000..87a12cd290c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=107 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_108.sh b/test/ntuple_bulk_grav_3/batch/sge_108.sh new file mode 100755 index 00000000000..4534a4a5e50 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=108 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_109.sh b/test/ntuple_bulk_grav_3/batch/sge_109.sh new file mode 100755 index 00000000000..9d9054ba712 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=109 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_11.sh b/test/ntuple_bulk_grav_3/batch/sge_11.sh new file mode 100755 index 00000000000..0ee9030c2b7 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=11 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_110.sh b/test/ntuple_bulk_grav_3/batch/sge_110.sh new file mode 100755 index 00000000000..df28307bab3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=110 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_111.sh b/test/ntuple_bulk_grav_3/batch/sge_111.sh new file mode 100755 index 00000000000..679f4c054eb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=111 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_112.sh b/test/ntuple_bulk_grav_3/batch/sge_112.sh new file mode 100755 index 00000000000..dbab6cd77b4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=112 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_113.sh b/test/ntuple_bulk_grav_3/batch/sge_113.sh new file mode 100755 index 00000000000..042d7999db8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=113 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_114.sh b/test/ntuple_bulk_grav_3/batch/sge_114.sh new file mode 100755 index 00000000000..a890655cb09 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=114 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_115.sh b/test/ntuple_bulk_grav_3/batch/sge_115.sh new file mode 100755 index 00000000000..5cb62ddd8b2 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=115 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_116.sh b/test/ntuple_bulk_grav_3/batch/sge_116.sh new file mode 100755 index 00000000000..83ec23f8b68 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=116 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_117.sh b/test/ntuple_bulk_grav_3/batch/sge_117.sh new file mode 100755 index 00000000000..7b33755eba5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=117 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_118.sh b/test/ntuple_bulk_grav_3/batch/sge_118.sh new file mode 100755 index 00000000000..e298848d322 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=118 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_119.sh b/test/ntuple_bulk_grav_3/batch/sge_119.sh new file mode 100755 index 00000000000..3ed7b6c2a3d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=119 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_12.sh b/test/ntuple_bulk_grav_3/batch/sge_12.sh new file mode 100755 index 00000000000..9fb91625b92 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=12 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_120.sh b/test/ntuple_bulk_grav_3/batch/sge_120.sh new file mode 100755 index 00000000000..bd21f08f45e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=120 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_121.sh b/test/ntuple_bulk_grav_3/batch/sge_121.sh new file mode 100755 index 00000000000..731e7811aba --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=121 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_122.sh b/test/ntuple_bulk_grav_3/batch/sge_122.sh new file mode 100755 index 00000000000..a60a2005d75 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=122 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_123.sh b/test/ntuple_bulk_grav_3/batch/sge_123.sh new file mode 100755 index 00000000000..274a2b6ff31 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=123 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_124.sh b/test/ntuple_bulk_grav_3/batch/sge_124.sh new file mode 100755 index 00000000000..4f2b6daecc2 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=124 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_125.sh b/test/ntuple_bulk_grav_3/batch/sge_125.sh new file mode 100755 index 00000000000..65e18581771 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=125 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_126.sh b/test/ntuple_bulk_grav_3/batch/sge_126.sh new file mode 100755 index 00000000000..91a79dd0935 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=126 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_127.sh b/test/ntuple_bulk_grav_3/batch/sge_127.sh new file mode 100755 index 00000000000..1b2d6d3e060 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=127 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_128.sh b/test/ntuple_bulk_grav_3/batch/sge_128.sh new file mode 100755 index 00000000000..fe103674242 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=128 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_129.sh b/test/ntuple_bulk_grav_3/batch/sge_129.sh new file mode 100755 index 00000000000..ce8fbbc8bea --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=129 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_13.sh b/test/ntuple_bulk_grav_3/batch/sge_13.sh new file mode 100755 index 00000000000..a7e7578d8af --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=13 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_130.sh b/test/ntuple_bulk_grav_3/batch/sge_130.sh new file mode 100755 index 00000000000..2b358e081b3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=130 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_131.sh b/test/ntuple_bulk_grav_3/batch/sge_131.sh new file mode 100755 index 00000000000..6688bb7278c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=131 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_132.sh b/test/ntuple_bulk_grav_3/batch/sge_132.sh new file mode 100755 index 00000000000..89d90cba6e4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=132 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_133.sh b/test/ntuple_bulk_grav_3/batch/sge_133.sh new file mode 100755 index 00000000000..4c467560874 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=133 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_134.sh b/test/ntuple_bulk_grav_3/batch/sge_134.sh new file mode 100755 index 00000000000..affec9eb810 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=134 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_135.sh b/test/ntuple_bulk_grav_3/batch/sge_135.sh new file mode 100755 index 00000000000..8bcd5cf7ee8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=135 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_136.sh b/test/ntuple_bulk_grav_3/batch/sge_136.sh new file mode 100755 index 00000000000..20bff8b44ce --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=136 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_137.sh b/test/ntuple_bulk_grav_3/batch/sge_137.sh new file mode 100755 index 00000000000..f841ef238e6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=137 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_138.sh b/test/ntuple_bulk_grav_3/batch/sge_138.sh new file mode 100755 index 00000000000..0211939fa8f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=138 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_139.sh b/test/ntuple_bulk_grav_3/batch/sge_139.sh new file mode 100755 index 00000000000..e74fbd2e606 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_139.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=139 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_139.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=139 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_14.sh b/test/ntuple_bulk_grav_3/batch/sge_14.sh new file mode 100755 index 00000000000..2e35fd2795e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=14 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_140.sh b/test/ntuple_bulk_grav_3/batch/sge_140.sh new file mode 100755 index 00000000000..eb33e814161 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_140.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=140 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_140.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=140 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_141.sh b/test/ntuple_bulk_grav_3/batch/sge_141.sh new file mode 100755 index 00000000000..3cbe43a1095 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_141.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=141 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_141.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=141 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_142.sh b/test/ntuple_bulk_grav_3/batch/sge_142.sh new file mode 100755 index 00000000000..6fdc4308b04 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_142.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=142 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_142.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=142 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_143.sh b/test/ntuple_bulk_grav_3/batch/sge_143.sh new file mode 100755 index 00000000000..8d5ff9fd17e --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_143.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=143 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_143.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=143 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_144.sh b/test/ntuple_bulk_grav_3/batch/sge_144.sh new file mode 100755 index 00000000000..4d074284dba --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_144.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=144 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_144.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=144 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_145.sh b/test/ntuple_bulk_grav_3/batch/sge_145.sh new file mode 100755 index 00000000000..5df63b41534 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_145.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=145 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_145.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=145 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_146.sh b/test/ntuple_bulk_grav_3/batch/sge_146.sh new file mode 100755 index 00000000000..fba5585a74a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_146.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=146 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_146.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=146 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_147.sh b/test/ntuple_bulk_grav_3/batch/sge_147.sh new file mode 100755 index 00000000000..a0eb6d1f582 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_147.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=147 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_147.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=147 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_148.sh b/test/ntuple_bulk_grav_3/batch/sge_148.sh new file mode 100755 index 00000000000..4d9ce77c6cb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_148.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=148 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_148.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=148 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_149.sh b/test/ntuple_bulk_grav_3/batch/sge_149.sh new file mode 100755 index 00000000000..53bfcd3dadd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_149.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=149 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_149.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=149 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_15.sh b/test/ntuple_bulk_grav_3/batch/sge_15.sh new file mode 100755 index 00000000000..4f7d6a8c410 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=15 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_150.sh b/test/ntuple_bulk_grav_3/batch/sge_150.sh new file mode 100755 index 00000000000..c25a4f5634b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_150.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=150 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_150.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=150 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_151.sh b/test/ntuple_bulk_grav_3/batch/sge_151.sh new file mode 100755 index 00000000000..e9602678437 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_151.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=151 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_151.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=151 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_152.sh b/test/ntuple_bulk_grav_3/batch/sge_152.sh new file mode 100755 index 00000000000..7457c5c2afd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_152.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=152 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_152.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=152 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_153.sh b/test/ntuple_bulk_grav_3/batch/sge_153.sh new file mode 100755 index 00000000000..911b97b1696 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_153.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=153 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_153.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=153 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_154.sh b/test/ntuple_bulk_grav_3/batch/sge_154.sh new file mode 100755 index 00000000000..5df9ecd00bf --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_154.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=154 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_154.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=154 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_155.sh b/test/ntuple_bulk_grav_3/batch/sge_155.sh new file mode 100755 index 00000000000..7d943b58cf6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_155.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=155 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_155.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=155 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_156.sh b/test/ntuple_bulk_grav_3/batch/sge_156.sh new file mode 100755 index 00000000000..9073aba52a2 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_156.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=156 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_156.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=156 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_157.sh b/test/ntuple_bulk_grav_3/batch/sge_157.sh new file mode 100755 index 00000000000..d54b3033c59 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_157.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=157 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_157.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=157 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_158.sh b/test/ntuple_bulk_grav_3/batch/sge_158.sh new file mode 100755 index 00000000000..321e00338de --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_158.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=158 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_158.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=158 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_159.sh b/test/ntuple_bulk_grav_3/batch/sge_159.sh new file mode 100755 index 00000000000..435a7320d2d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_159.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=159 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_159.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=159 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_16.sh b/test/ntuple_bulk_grav_3/batch/sge_16.sh new file mode 100755 index 00000000000..d68623034d0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=16 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_160.sh b/test/ntuple_bulk_grav_3/batch/sge_160.sh new file mode 100755 index 00000000000..845225d57ce --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_160.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=160 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_160.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=160 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_161.sh b/test/ntuple_bulk_grav_3/batch/sge_161.sh new file mode 100755 index 00000000000..99e5692b028 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_161.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=161 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_161.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=161 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_162.sh b/test/ntuple_bulk_grav_3/batch/sge_162.sh new file mode 100755 index 00000000000..2e3cf05298f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_162.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=162 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_162.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=162 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_163.sh b/test/ntuple_bulk_grav_3/batch/sge_163.sh new file mode 100755 index 00000000000..526bf22a69f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_163.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=163 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_163.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=163 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_164.sh b/test/ntuple_bulk_grav_3/batch/sge_164.sh new file mode 100755 index 00000000000..70fb7e37044 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_164.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=164 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_164.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=164 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_165.sh b/test/ntuple_bulk_grav_3/batch/sge_165.sh new file mode 100755 index 00000000000..95cd2aaa3ad --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_165.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=165 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_165.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=165 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_166.sh b/test/ntuple_bulk_grav_3/batch/sge_166.sh new file mode 100755 index 00000000000..3ec929d9fa5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_166.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=166 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_166.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=166 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_167.sh b/test/ntuple_bulk_grav_3/batch/sge_167.sh new file mode 100755 index 00000000000..97735847503 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_167.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=167 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_167.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=167 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_168.sh b/test/ntuple_bulk_grav_3/batch/sge_168.sh new file mode 100755 index 00000000000..7a6b6cc36dd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_168.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=168 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_168.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=168 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_169.sh b/test/ntuple_bulk_grav_3/batch/sge_169.sh new file mode 100755 index 00000000000..a16bc13bfd4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_169.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=169 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_169.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=169 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_17.sh b/test/ntuple_bulk_grav_3/batch/sge_17.sh new file mode 100755 index 00000000000..4332946998c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=17 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_170.sh b/test/ntuple_bulk_grav_3/batch/sge_170.sh new file mode 100755 index 00000000000..39b7d835d3c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_170.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=170 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_170.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=170 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_171.sh b/test/ntuple_bulk_grav_3/batch/sge_171.sh new file mode 100755 index 00000000000..2e010e1c470 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_171.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=171 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_171.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=171 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_172.sh b/test/ntuple_bulk_grav_3/batch/sge_172.sh new file mode 100755 index 00000000000..cd27ba7bb9b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_172.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=172 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_172.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=172 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_173.sh b/test/ntuple_bulk_grav_3/batch/sge_173.sh new file mode 100755 index 00000000000..a9c430497c0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_173.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=173 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_173.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=173 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_174.sh b/test/ntuple_bulk_grav_3/batch/sge_174.sh new file mode 100755 index 00000000000..cf0290fd318 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_174.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=174 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_174.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=174 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_175.sh b/test/ntuple_bulk_grav_3/batch/sge_175.sh new file mode 100755 index 00000000000..164f5a71ba4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_175.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=175 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_175.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=175 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_176.sh b/test/ntuple_bulk_grav_3/batch/sge_176.sh new file mode 100755 index 00000000000..a8d7c26f98f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_176.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=176 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_176.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=176 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_177.sh b/test/ntuple_bulk_grav_3/batch/sge_177.sh new file mode 100755 index 00000000000..bd405b1fbc5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_177.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=177 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_177.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=177 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_178.sh b/test/ntuple_bulk_grav_3/batch/sge_178.sh new file mode 100755 index 00000000000..d8d5c8f2e77 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_178.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=178 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_178.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=178 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_179.sh b/test/ntuple_bulk_grav_3/batch/sge_179.sh new file mode 100755 index 00000000000..eef569343fe --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_179.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=179 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_179.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=179 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_18.sh b/test/ntuple_bulk_grav_3/batch/sge_18.sh new file mode 100755 index 00000000000..2093b6f55d5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=18 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_180.sh b/test/ntuple_bulk_grav_3/batch/sge_180.sh new file mode 100755 index 00000000000..6b15f68fd90 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_180.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=180 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_180.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=180 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_181.sh b/test/ntuple_bulk_grav_3/batch/sge_181.sh new file mode 100755 index 00000000000..efb49b63258 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_181.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=181 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_181.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=181 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_182.sh b/test/ntuple_bulk_grav_3/batch/sge_182.sh new file mode 100755 index 00000000000..f3b4b951326 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_182.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=182 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_182.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=182 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_19.sh b/test/ntuple_bulk_grav_3/batch/sge_19.sh new file mode 100755 index 00000000000..abe8c03f30f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=19 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_2.sh b/test/ntuple_bulk_grav_3/batch/sge_2.sh new file mode 100755 index 00000000000..a564e21cd31 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=2 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_20.sh b/test/ntuple_bulk_grav_3/batch/sge_20.sh new file mode 100755 index 00000000000..7986f3086b9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=20 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_21.sh b/test/ntuple_bulk_grav_3/batch/sge_21.sh new file mode 100755 index 00000000000..4941af2586c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=21 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_22.sh b/test/ntuple_bulk_grav_3/batch/sge_22.sh new file mode 100755 index 00000000000..81cbffd5e2a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=22 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_23.sh b/test/ntuple_bulk_grav_3/batch/sge_23.sh new file mode 100755 index 00000000000..47d028e476a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=23 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_24.sh b/test/ntuple_bulk_grav_3/batch/sge_24.sh new file mode 100755 index 00000000000..18a769c4d01 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=24 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_25.sh b/test/ntuple_bulk_grav_3/batch/sge_25.sh new file mode 100755 index 00000000000..47f059e8df1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=25 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_26.sh b/test/ntuple_bulk_grav_3/batch/sge_26.sh new file mode 100755 index 00000000000..78b4883eb5c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=26 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_27.sh b/test/ntuple_bulk_grav_3/batch/sge_27.sh new file mode 100755 index 00000000000..616438867ec --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=27 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_28.sh b/test/ntuple_bulk_grav_3/batch/sge_28.sh new file mode 100755 index 00000000000..fd41b96fb52 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=28 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_29.sh b/test/ntuple_bulk_grav_3/batch/sge_29.sh new file mode 100755 index 00000000000..55f1ee882f0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=29 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_3.sh b/test/ntuple_bulk_grav_3/batch/sge_3.sh new file mode 100755 index 00000000000..588f86f1a12 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=3 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_30.sh b/test/ntuple_bulk_grav_3/batch/sge_30.sh new file mode 100755 index 00000000000..e678fcde7ef --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=30 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_31.sh b/test/ntuple_bulk_grav_3/batch/sge_31.sh new file mode 100755 index 00000000000..2e265a9236b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=31 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_32.sh b/test/ntuple_bulk_grav_3/batch/sge_32.sh new file mode 100755 index 00000000000..01bcce5e2c7 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=32 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_33.sh b/test/ntuple_bulk_grav_3/batch/sge_33.sh new file mode 100755 index 00000000000..2c7951dfb8f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=33 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_34.sh b/test/ntuple_bulk_grav_3/batch/sge_34.sh new file mode 100755 index 00000000000..5527bc6987d --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=34 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_35.sh b/test/ntuple_bulk_grav_3/batch/sge_35.sh new file mode 100755 index 00000000000..ef3dd3946b7 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=35 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_36.sh b/test/ntuple_bulk_grav_3/batch/sge_36.sh new file mode 100755 index 00000000000..0c0b7487080 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=36 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_37.sh b/test/ntuple_bulk_grav_3/batch/sge_37.sh new file mode 100755 index 00000000000..7ad0fb42411 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=37 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_38.sh b/test/ntuple_bulk_grav_3/batch/sge_38.sh new file mode 100755 index 00000000000..b2d3bf00497 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=38 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_39.sh b/test/ntuple_bulk_grav_3/batch/sge_39.sh new file mode 100755 index 00000000000..5f636751607 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=39 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_4.sh b/test/ntuple_bulk_grav_3/batch/sge_4.sh new file mode 100755 index 00000000000..c18c655c3aa --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=4 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_40.sh b/test/ntuple_bulk_grav_3/batch/sge_40.sh new file mode 100755 index 00000000000..d49ca883d4a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=40 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_41.sh b/test/ntuple_bulk_grav_3/batch/sge_41.sh new file mode 100755 index 00000000000..fff622c212c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=41 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_42.sh b/test/ntuple_bulk_grav_3/batch/sge_42.sh new file mode 100755 index 00000000000..a6f8d25d97a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=42 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_43.sh b/test/ntuple_bulk_grav_3/batch/sge_43.sh new file mode 100755 index 00000000000..6dd4639688b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=43 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_44.sh b/test/ntuple_bulk_grav_3/batch/sge_44.sh new file mode 100755 index 00000000000..dd5fc28d4e0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=44 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_45.sh b/test/ntuple_bulk_grav_3/batch/sge_45.sh new file mode 100755 index 00000000000..0b19c58fbe2 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=45 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_46.sh b/test/ntuple_bulk_grav_3/batch/sge_46.sh new file mode 100755 index 00000000000..768a5ae0dda --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=46 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_47.sh b/test/ntuple_bulk_grav_3/batch/sge_47.sh new file mode 100755 index 00000000000..091e2512466 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=47 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_48.sh b/test/ntuple_bulk_grav_3/batch/sge_48.sh new file mode 100755 index 00000000000..9a47fdda099 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=48 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_49.sh b/test/ntuple_bulk_grav_3/batch/sge_49.sh new file mode 100755 index 00000000000..5ee93ec19d9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=49 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_5.sh b/test/ntuple_bulk_grav_3/batch/sge_5.sh new file mode 100755 index 00000000000..f2391055c49 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=5 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_50.sh b/test/ntuple_bulk_grav_3/batch/sge_50.sh new file mode 100755 index 00000000000..43bef7add00 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=50 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_51.sh b/test/ntuple_bulk_grav_3/batch/sge_51.sh new file mode 100755 index 00000000000..605f65e34dd --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=51 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_52.sh b/test/ntuple_bulk_grav_3/batch/sge_52.sh new file mode 100755 index 00000000000..5b4b963c2be --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=52 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_53.sh b/test/ntuple_bulk_grav_3/batch/sge_53.sh new file mode 100755 index 00000000000..6540bc9e42c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=53 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_54.sh b/test/ntuple_bulk_grav_3/batch/sge_54.sh new file mode 100755 index 00000000000..bf160b84688 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=54 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_55.sh b/test/ntuple_bulk_grav_3/batch/sge_55.sh new file mode 100755 index 00000000000..5b9bed05c88 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=55 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_56.sh b/test/ntuple_bulk_grav_3/batch/sge_56.sh new file mode 100755 index 00000000000..75f8b6614c7 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=56 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_57.sh b/test/ntuple_bulk_grav_3/batch/sge_57.sh new file mode 100755 index 00000000000..a1d4344b019 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=57 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_58.sh b/test/ntuple_bulk_grav_3/batch/sge_58.sh new file mode 100755 index 00000000000..e14bcdf179c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=58 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_59.sh b/test/ntuple_bulk_grav_3/batch/sge_59.sh new file mode 100755 index 00000000000..db1310ef2bc --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=59 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_6.sh b/test/ntuple_bulk_grav_3/batch/sge_6.sh new file mode 100755 index 00000000000..13c98d68be1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=6 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_60.sh b/test/ntuple_bulk_grav_3/batch/sge_60.sh new file mode 100755 index 00000000000..31e007d5b54 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=60 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_61.sh b/test/ntuple_bulk_grav_3/batch/sge_61.sh new file mode 100755 index 00000000000..edd78614615 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=61 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_62.sh b/test/ntuple_bulk_grav_3/batch/sge_62.sh new file mode 100755 index 00000000000..ade8e24e1cb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=62 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_63.sh b/test/ntuple_bulk_grav_3/batch/sge_63.sh new file mode 100755 index 00000000000..5acb84457be --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=63 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_64.sh b/test/ntuple_bulk_grav_3/batch/sge_64.sh new file mode 100755 index 00000000000..1b8c1cf74c1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=64 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_65.sh b/test/ntuple_bulk_grav_3/batch/sge_65.sh new file mode 100755 index 00000000000..0333c5954c8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=65 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_66.sh b/test/ntuple_bulk_grav_3/batch/sge_66.sh new file mode 100755 index 00000000000..10953c8cb47 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=66 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_67.sh b/test/ntuple_bulk_grav_3/batch/sge_67.sh new file mode 100755 index 00000000000..8c87cdafee4 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=67 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_68.sh b/test/ntuple_bulk_grav_3/batch/sge_68.sh new file mode 100755 index 00000000000..c1d5f45871c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=68 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_69.sh b/test/ntuple_bulk_grav_3/batch/sge_69.sh new file mode 100755 index 00000000000..26fbc2557c3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=69 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_7.sh b/test/ntuple_bulk_grav_3/batch/sge_7.sh new file mode 100755 index 00000000000..43ac60d61da --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=7 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_70.sh b/test/ntuple_bulk_grav_3/batch/sge_70.sh new file mode 100755 index 00000000000..cc970117999 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=70 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_71.sh b/test/ntuple_bulk_grav_3/batch/sge_71.sh new file mode 100755 index 00000000000..dbad1045ecf --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=71 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_72.sh b/test/ntuple_bulk_grav_3/batch/sge_72.sh new file mode 100755 index 00000000000..126f2b51397 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=72 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_73.sh b/test/ntuple_bulk_grav_3/batch/sge_73.sh new file mode 100755 index 00000000000..f77705c84a8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=73 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_74.sh b/test/ntuple_bulk_grav_3/batch/sge_74.sh new file mode 100755 index 00000000000..7cfb11c7ff1 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=74 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_75.sh b/test/ntuple_bulk_grav_3/batch/sge_75.sh new file mode 100755 index 00000000000..bc2ef5219f3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=75 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_76.sh b/test/ntuple_bulk_grav_3/batch/sge_76.sh new file mode 100755 index 00000000000..9f6d371c0c8 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=76 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_77.sh b/test/ntuple_bulk_grav_3/batch/sge_77.sh new file mode 100755 index 00000000000..5fec97f824a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=77 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_78.sh b/test/ntuple_bulk_grav_3/batch/sge_78.sh new file mode 100755 index 00000000000..1b0e09fd34b --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=78 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_79.sh b/test/ntuple_bulk_grav_3/batch/sge_79.sh new file mode 100755 index 00000000000..0f92e2991f7 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=79 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_8.sh b/test/ntuple_bulk_grav_3/batch/sge_8.sh new file mode 100755 index 00000000000..1696e493102 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=8 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_80.sh b/test/ntuple_bulk_grav_3/batch/sge_80.sh new file mode 100755 index 00000000000..5faeda70f0f --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=80 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_81.sh b/test/ntuple_bulk_grav_3/batch/sge_81.sh new file mode 100755 index 00000000000..4d00c9a7421 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=81 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_82.sh b/test/ntuple_bulk_grav_3/batch/sge_82.sh new file mode 100755 index 00000000000..bc2575137a3 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=82 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_83.sh b/test/ntuple_bulk_grav_3/batch/sge_83.sh new file mode 100755 index 00000000000..cf94ddbcb66 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=83 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_84.sh b/test/ntuple_bulk_grav_3/batch/sge_84.sh new file mode 100755 index 00000000000..982ba792383 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=84 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_85.sh b/test/ntuple_bulk_grav_3/batch/sge_85.sh new file mode 100755 index 00000000000..2a7d84bf086 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=85 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_86.sh b/test/ntuple_bulk_grav_3/batch/sge_86.sh new file mode 100755 index 00000000000..16281932a94 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=86 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_87.sh b/test/ntuple_bulk_grav_3/batch/sge_87.sh new file mode 100755 index 00000000000..334c74f1d70 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=87 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_88.sh b/test/ntuple_bulk_grav_3/batch/sge_88.sh new file mode 100755 index 00000000000..dae243869c6 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=88 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_89.sh b/test/ntuple_bulk_grav_3/batch/sge_89.sh new file mode 100755 index 00000000000..2f9473ae5af --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=89 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_9.sh b/test/ntuple_bulk_grav_3/batch/sge_9.sh new file mode 100755 index 00000000000..5bb610b37d5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=9 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_90.sh b/test/ntuple_bulk_grav_3/batch/sge_90.sh new file mode 100755 index 00000000000..97ee1079067 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=90 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_91.sh b/test/ntuple_bulk_grav_3/batch/sge_91.sh new file mode 100755 index 00000000000..e49796e24f7 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=91 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_92.sh b/test/ntuple_bulk_grav_3/batch/sge_92.sh new file mode 100755 index 00000000000..f5527600879 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=92 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_93.sh b/test/ntuple_bulk_grav_3/batch/sge_93.sh new file mode 100755 index 00000000000..9d49f7b644a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=93 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_94.sh b/test/ntuple_bulk_grav_3/batch/sge_94.sh new file mode 100755 index 00000000000..c32a2a70f7a --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=94 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_95.sh b/test/ntuple_bulk_grav_3/batch/sge_95.sh new file mode 100755 index 00000000000..812575617d5 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=95 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_96.sh b/test/ntuple_bulk_grav_3/batch/sge_96.sh new file mode 100755 index 00000000000..9ffd7f1ddbb --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=96 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_97.sh b/test/ntuple_bulk_grav_3/batch/sge_97.sh new file mode 100755 index 00000000000..85605c08d14 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=97 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_98.sh b/test/ntuple_bulk_grav_3/batch/sge_98.sh new file mode 100755 index 00000000000..1d2cccabf3c --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=98 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_99.sh b/test/ntuple_bulk_grav_3/batch/sge_99.sh new file mode 100755 index 00000000000..43003a5c8b0 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=99 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batchscript.sh b/test/ntuple_bulk_grav_3/batchscript.sh new file mode 100755 index 00000000000..4afb8c7c7c9 --- /dev/null +++ b/test/ntuple_bulk_grav_3/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_bulk_grav_3" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/condor.sub b/test/ntuple_bulk_grav_3/condor.sub new file mode 100644 index 00000000000..a47bc72656f --- /dev/null +++ b/test/ntuple_bulk_grav_3/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 183 + \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/helper b/test/ntuple_bulk_grav_3/helper new file mode 120000 index 00000000000..b596a1e7636 --- /dev/null +++ b/test/ntuple_bulk_grav_3/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_bulk_grav_3/batch/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/output b/test/ntuple_bulk_grav_3/output new file mode 120000 index 00000000000..45103ac14bc --- /dev/null +++ b/test/ntuple_bulk_grav_3/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/sge_sub.sh b/test/ntuple_bulk_grav_3/sge_sub.sh new file mode 100755 index 00000000000..83ae3fba43d --- /dev/null +++ b/test/ntuple_bulk_grav_3/sge_sub.sh @@ -0,0 +1,183 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_182.sh diff --git a/test/ntuple_qcd_1000_1500/ademoor.cc b/test/ntuple_qcd_1000_1500/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..739303eb6d9f281062da6d708f5447fd7ea56b38 GIT binary patch literal 5609 zcmai$Wl$X4l7<!3+UsVcKe$UdcLhM!Gr?Cc!>-zwr$$Di{r zv#3^%M$Tr=|0ws@zNftTAu0nr8aSDm9FM3g&Wag{X#<`t&)M7j2qhs*?w(k zEESJ;JyGP>qYr7d&Cy<`u}sen8ejXZ58cHvsJT-FaWpubOz+(30qJ%R-2@lTB~~bO z*AkCn*cFDrC%u4FXa+{39@koEU`u&3lK%x`rDH0ts)M_nk=ul!N5APD@hNFx#zuEO zP?gm*x@L7(=}wS`k4(|(l(M$5TVN6j$xz7}guz-J{oU0CbhxXW>dX#Mp(1Z-4q@p2 zoyhvoX!q6>p(|wOriTbTE~T0L!o*D}MK0E;R<;AGq$|!{275HjdMpH9K)Qc0su3Os za@AM`X$tjboX;AZzXh6%63g{)TOF=X)%(%#CN_=OBQT=^PVxo9@CFwmGOVii@?2wt zpR6uY5O2{3Iy+^V!=o+9;Nu`CUVB7C&b%x_wSf1c%y*Umy1G)303{0^6SHydtxhQ_ zXUv~g!LJnq`1W0((cYO1z-AL`I@0>R!)S~?;NqfJfR-_zXUTDzD4gGIlbLuf!P0qXcj;Uu@yfSPQB^68> zk7F;3-@1`o1>;bH_88$pHFEq)SC}DP%Bi3>DGAoB^Sb1?SCO)G%6u&; z$MH+sp}OQ8&LlNo%r@}@MOyWgdWA%#O7DFXID+?O6vm?9#vwWE4V%Q3R@GVYHtZLz%(0cXaogp?&YCLcP%?I0}lRxSGQn% zq~?{zSvSMm_f#w2q5}CT%bd+doO?NR)vByh9iV2u#qnAmQ}el&zMoyI`0eX#XOgsi zteI-5I8+wLRWg}^!6`~U>)=KGScY`SiOF1QR^MlPx)YIp7nfz;J4K+*Q6o$vj?0H# zyDn%)j2~e>k>0@eRNf~ChT&g!jAU1lVRnIy@u=L`4A{`Mw8C*dspv_JKM|q|@@>kO zDJJH_2;=>kjfsK?xv&waAj5D^fpT9Pt2&ylYF_X#KD{u zWk2H2#UScDBjV}9ZSO=vN-~QP)xFba`DUS{ffc=d!r7F6QYK?G@s=yRuR4FeS=Ay= z+PdZ}7N(Tmg0=~LI7`3_ao?~*V8Y|I*VwY&OTJ)5c=uexasaET!?oauF&wPJUFM>8 z|GdNoeL^=?62JJQi1L))rehn#bhm25f$VOcZ0)z_je-w+IQ>#&SatltB8t!bW1E$u zXs8S9?yh8dck-4nE!~Z7)oMWX6aar_5Lo=lbjrpfs2B8x4}3aoLgxMRYXR!HqO<40 zp+;ErbW%GKecqlvN2{EUuKn4tWj;EM>vzoE!oIq8_DKi`PXIs+JUAAI1D7b$Wyr0f z>cHSdy-p|0Hx=oPK5}Q58AU%tGIBHm?=ChlHzxhk`KC5B0xx2Zv*RKbkki#yyTQ=i3bK$D9z ziMjLw_w5=nYeMG~GONSTf~|P}OL-bbo4y`K`{Op_nOHF)3wB%r(jZ*yuiw4pL#AN; zH5Br$9l*3L=T^kN(IC;EAB;Hop0#j4D>?Ezq{hOdT=N_`tbKJ=*^%izes!BCfAKhm z9ih?#GYVo;o0ZVEsht1mVTBw7`pF-J+@l}uV1*ex7%ri;0RyE0u1FE^w!2W;X>4fM zehxXi%=+(hZMp2U)f_}0ZYYPNymTnc^qsW9jhv$!Xq0)i&;Z{ZuFJ5>87eAvs(E%D z7oy(wni3w{kN7LwnljWb*sasZs3qE3qjnE>)#Ybi>y#_;gno7BU1_`O7YA}r-jrsh?FNyCnurZ)eNfBjDNJ(iDdSQ-@NID-->XQy!{J%wm6CftD#bc((kGPV;kEzBo(4}frxg2D7v$cEjF!?v}=Hh2| zvV!8~*ehkFs$r9I!;UzlIq6?+Wh?Q{%|HS-lRTkS??Nf6=6Y=J64vgu!}@<4ZY#17 zP2}`aT!sApMdI5yE?d*Z+&c^zRbp0|4H|K3Cepijg;M1GdC49msnDz^XJOhENYe9d zWKLyLdl9|%V0?(J?;Qo^x1To#@9)r3=2d>1T8~LgmtNUy8*Ypaxb9|(-DK_3G{Q|e zCNbDhlcuaa5?+;(hX|41yc|u)VxvZOAT8`hiNa_eeB(ekPNCt$)jD9ovboU3+Hf~L zqG;Y)pS(^b38pQu$J9d!4LU8|rH+HgF&aF&%{SifH~*k=t$D3%yOKq}(uy}Sl~lD`%&ye z3F8F8j%ad-&k8&1T+%sz!E}`G<_lb4?xYZC;iE!WJ6YkUu+LYTH*n>fd19OCjQ*Ii zch5KCpNqddd1M~?td_AL!F|w|>wKR)SuPeD?6J(JWb=HYKB(kn7N>(6H^j^VzUx2} z<;2ZTt3}NYlhs>zXs>*A8A8~>OGJLJxOIr&XPeD}!;s~H+xz_{&(%kE*IcZyBtJ8X zTom^JUEl6z+aFCVW>IAj!MCP0q^XrZnw8(z%S2dM{gaIjUQBTWR_Q`7suT_Rw;dg? zU;KUN9P2j-d_ z420dO%7aG&SwSx1_SY&(rwJPha+7$tmbXfFDv<|WFkP%Mj$C6&T_&V{8lAeeND6`x zinOj;mRwo>zv%1#Cc-~W|HgbshNezWDw?s0qb<9!IRe2`LbD=#T{|@EOwN}Y7y-!R zy$DVV0k`a6p1EK^2-8pVcK-o@dnNx3fCYc9{$~JyhF}0G2N*#39{@&@q9X}P(I%#yFywug^*_Y&Yg%bYHuNEa8QP%MF zuu}KJv&c65TD2U8gG}7v7%%5+rF|!iJ(maAYd4xKL0W|S-6IAX2w!d2>v%m7nA;L- z59F;7>L=*wxoa5CJx6{!&!bzOXLWlRlY|$^|1jwFGSmR|W({W{?KB7V@GA-y6i*ZkKf{oh9Yss5W$sP2w-cFv!l3OFWqPR2G) z?Ek~E+jW?+_Ab`rZd}YKTnq>dOWM|RFxz{*{r7I!$ZcuEKP)?>{a-A@h<{@Cm?!#< z_z%nIIcWcAfE)@AGT>jY0RGz>p3q(8X;|rR`;ec|UF-?ng-%24J=*uWY9QFu5ws7y zYTxmQZtU+FSXyyt6mf?M2fL);&nE)eou%~!c>>>b%@Q(mCN=V8f6)81d6RJOkX4cb z?Ij}2ao1%QM3Sh2dSLcpd4NyuXeG$Xz0Z3z{nDAN6B)O9<{fsimB3S6sjWn3so5T4 zJ{#py%qQqgq!#A(+qUYolA=jQGK{8r{7J#aXqt`MI>x+aZ0Ofod^Ta)#)`7 zyZg631zWaZ51tW}Lmxkkuj&u1Vo<7Aj&%G){aVvtxx@g-)P-lF3SL7v3C@p ztcdEkThKcrd>r(Nc*BrUz@=qMq#h}17WASPt)LkO1|=H#`dA5~o6Pwz0>eM%&_ zvOgALU3r`m9#_~$A;m#A`grGFpO#*FLj21?e5%%=p9^U3Q%2Y;m-8JF6lcP^74RJWmM|(p+(zG zQ`Z+AgDH409(0Ki>LDr^Nh0c)^xlK?Z*tbbbjGpZ<;T>T(VP;ArtGN~b7m8sJwt|U zp&sx={lOlmYqGK_l7aw&eSORQopUJ3p3$g*FVq~2-nbPB28vucK z?_kd&x#W8X+4EP=0t?ki!raeZD^z|Ax7)e@>Ilo5CWXNtYPUQfv$8 zU%9RkqGnjBEbw%n<6TiaU^`c^`$eb1bg%$7`f)HElDNYj?rzf+f!#J#aNJtx-CBjj z>HofJyVrnOK}||bJyi7lYH%!T9WQ11?I~>-ncr__a?0y9s>GYm=MCA*;T!o$C*%aD zCD597Mp;rZcl??94$>_(lz}!+b6XVu@tzI7qg{|<^Q}-s_To-X7As(9i6t=H;!!63 ztbUsRgW56K;Q~6IJxh>=TV-2prd%6WS74$FOX667e%9@Er2L&GEtr+D*S6H)N7>9{3DL3kR^I-Wmi|K-+FkP@s%XA0Zw3@l%S=ezc zM;+!VfRv?l${rDa3Ua1GaLD_DPY$85Vz4}C`G;o| zMDv_wefeKoa^4D+f6=bVsTVyNG27M*=g2_lq*2dW=sYC1G3FrW33q72ghWEV+IQPu z;=s|TXLM-!&X)xV1USR2%(xMPHuj>}(MDh@uVF5Ij{@>o@H4z>uz5nw$QKvIc$$v} zz6}+Dd>3J>o+z91Bvlc9xX_I$KoH@IV?hL@LwXqnm9!+nb0E&CoLx1?|I^yG=D8gF zz&L9ARNNHTMDIrz-lY9kAo?EG^y_f$;jJXl{98)H)2lsthrJUZ%laMZ(Y{*_%6WJw zq^NIpeajpy^|^j7*aOs8v*#iI{^X@}APEoi8vmt8tVc=_F&mq5t}ne~AE>j6oB0{7 zW+eRqiP&?WJ4k*2{dvC}OZBpU@fs_+Q)gF0xn=FTI!{*CmTd!q>d#*aI{QOt3s`Gx zE+S10?}!L&UZZM4lH-eJC>PpRXHwUpS$wj3TrNYpo`w|*vL4FECH|KYJWj*y7o@!F zc7h^Xh&xv!1YZI^B%FqGt}8CM{S5vzq*2_qVsHkze6PZN@vV0`#$$Kh)PYwd^YPb` zp+~K?;Lz$+@bb(x2p&Y@7>cS?HE$x{M=+Y1J5$2GhBT-LMreOgIo_InQmG;R7;C5w zDs8eMdRR)#&_iD?FfTD9J~4t(R|{cBY<*bj^|VBp@XyCQ)^@t!$`ylhW9TBLAMa`R z>W2mIWjE0Fo*SY!Xpg8{&F(E#90gswd{>Upi?Lh*avp<$*(7H#cj-%%C>hElMB%{k z(^`$UEU;LW?RqVtNi^*_E(?WHbU7OXwZf5m=88+T48^{eC^S&095J12M?%b+-H-xT zGqH4J=VIDU>%+85B*9Ez6G)Fr$aXkg0WV3e8FJ9PQV|;*FQUX|U$e9(psm%kN3F4? zF+7g98DxjgTaG%7(66CNCi4)6omU7^xF1y@ne_&~+R7XxD5E6B9U+_r-OJ}elqcH>3o=Cuv$=g=o4)X^P(ci)!k)_G1NFMfbA3lSa2hjL%`N>x#etd z2*tS6+e#bpX-}ZDAC(6BAk4Q1{a9=K$=!=~;b`>HgFnCQQn~avnPfdMY^^DY25_jp zkcpAhHd#tVmr$j{wqwv1tD4r?X@{l86Fv4}Zbf1B0p;}$J~@$6|J0$sE){qPcWox^ zHBxz?)66N2$@5~=rmdii)Uc(m^gA6md-rIE;$^AW>pIGNLIK7*?kv6Xm*E4RtZ15>o;mgXP! z*!1mwjkz&Q;o+ueGb!UJ7m{L9J&NWf6pmFf>Yt}ci>EWK+9#$14J6q*Z7?~-V<`t$ z0yG|zQ0j~aIr&k-e+zE8R(coDc*E?3)IuzK9JJ!H-}iwF@nfjqi&-Y-atF&p0+y4- z9bzP(0}NW`h6l3h>c5&Yl4(*PK195MZ?8F`e@CAcm=9$=;jZ9;^uwJw9_AxYyT4Ds T{W>#}aokBnh-X9pkm7#<+-6-4 literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_1000_1500/batch/condor_0.sub b/test/ntuple_qcd_1000_1500/batch/condor_0.sub new file mode 100644 index 00000000000..d79fd447c44 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_1.sub b/test/ntuple_qcd_1000_1500/batch/condor_1.sub new file mode 100644 index 00000000000..d6802aec171 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_10.sub b/test/ntuple_qcd_1000_1500/batch/condor_10.sub new file mode 100644 index 00000000000..4296b9c3630 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_100.sub b/test/ntuple_qcd_1000_1500/batch/condor_100.sub new file mode 100644 index 00000000000..ddfc9837e53 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_101.sub b/test/ntuple_qcd_1000_1500/batch/condor_101.sub new file mode 100644 index 00000000000..48f252d38e6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_102.sub b/test/ntuple_qcd_1000_1500/batch/condor_102.sub new file mode 100644 index 00000000000..b8b7be4ca5d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_103.sub b/test/ntuple_qcd_1000_1500/batch/condor_103.sub new file mode 100644 index 00000000000..4eb4e8d90a0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_104.sub b/test/ntuple_qcd_1000_1500/batch/condor_104.sub new file mode 100644 index 00000000000..e93d8de25cc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_105.sub b/test/ntuple_qcd_1000_1500/batch/condor_105.sub new file mode 100644 index 00000000000..e3e560bbf13 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_106.sub b/test/ntuple_qcd_1000_1500/batch/condor_106.sub new file mode 100644 index 00000000000..9352226dda9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_107.sub b/test/ntuple_qcd_1000_1500/batch/condor_107.sub new file mode 100644 index 00000000000..3ac3c452a10 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_108.sub b/test/ntuple_qcd_1000_1500/batch/condor_108.sub new file mode 100644 index 00000000000..9962b71d566 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_109.sub b/test/ntuple_qcd_1000_1500/batch/condor_109.sub new file mode 100644 index 00000000000..76980f4e2c8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_11.sub b/test/ntuple_qcd_1000_1500/batch/condor_11.sub new file mode 100644 index 00000000000..9d93e909b18 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_110.sub b/test/ntuple_qcd_1000_1500/batch/condor_110.sub new file mode 100644 index 00000000000..9bffacfa10c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_111.sub b/test/ntuple_qcd_1000_1500/batch/condor_111.sub new file mode 100644 index 00000000000..0ce11c251db --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_112.sub b/test/ntuple_qcd_1000_1500/batch/condor_112.sub new file mode 100644 index 00000000000..0ef7dbd9d36 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_113.sub b/test/ntuple_qcd_1000_1500/batch/condor_113.sub new file mode 100644 index 00000000000..d959a8e8742 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_114.sub b/test/ntuple_qcd_1000_1500/batch/condor_114.sub new file mode 100644 index 00000000000..8848a022b54 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_115.sub b/test/ntuple_qcd_1000_1500/batch/condor_115.sub new file mode 100644 index 00000000000..27facdd1bf5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_116.sub b/test/ntuple_qcd_1000_1500/batch/condor_116.sub new file mode 100644 index 00000000000..c0d2724da1f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_117.sub b/test/ntuple_qcd_1000_1500/batch/condor_117.sub new file mode 100644 index 00000000000..97bdb5e93a6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_118.sub b/test/ntuple_qcd_1000_1500/batch/condor_118.sub new file mode 100644 index 00000000000..980bcebe65d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_119.sub b/test/ntuple_qcd_1000_1500/batch/condor_119.sub new file mode 100644 index 00000000000..7ce64761b3c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_12.sub b/test/ntuple_qcd_1000_1500/batch/condor_12.sub new file mode 100644 index 00000000000..72f963547dc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_120.sub b/test/ntuple_qcd_1000_1500/batch/condor_120.sub new file mode 100644 index 00000000000..34808d00d9b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_121.sub b/test/ntuple_qcd_1000_1500/batch/condor_121.sub new file mode 100644 index 00000000000..30094ae29c1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_122.sub b/test/ntuple_qcd_1000_1500/batch/condor_122.sub new file mode 100644 index 00000000000..e0783a34037 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_123.sub b/test/ntuple_qcd_1000_1500/batch/condor_123.sub new file mode 100644 index 00000000000..869d0e24a06 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_124.sub b/test/ntuple_qcd_1000_1500/batch/condor_124.sub new file mode 100644 index 00000000000..c104b9b8fbd --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_125.sub b/test/ntuple_qcd_1000_1500/batch/condor_125.sub new file mode 100644 index 00000000000..2d57d655d10 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_126.sub b/test/ntuple_qcd_1000_1500/batch/condor_126.sub new file mode 100644 index 00000000000..335919c90cf --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_127.sub b/test/ntuple_qcd_1000_1500/batch/condor_127.sub new file mode 100644 index 00000000000..1ed2ab6fe1f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_128.sub b/test/ntuple_qcd_1000_1500/batch/condor_128.sub new file mode 100644 index 00000000000..15b41b0c3f5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_129.sub b/test/ntuple_qcd_1000_1500/batch/condor_129.sub new file mode 100644 index 00000000000..dc4704f38f1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_13.sub b/test/ntuple_qcd_1000_1500/batch/condor_13.sub new file mode 100644 index 00000000000..7cf62e0f562 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_130.sub b/test/ntuple_qcd_1000_1500/batch/condor_130.sub new file mode 100644 index 00000000000..056097dedfc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_131.sub b/test/ntuple_qcd_1000_1500/batch/condor_131.sub new file mode 100644 index 00000000000..ea4206497a4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_132.sub b/test/ntuple_qcd_1000_1500/batch/condor_132.sub new file mode 100644 index 00000000000..d384a935c6b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_133.sub b/test/ntuple_qcd_1000_1500/batch/condor_133.sub new file mode 100644 index 00000000000..0e87fc9e8ea --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_134.sub b/test/ntuple_qcd_1000_1500/batch/condor_134.sub new file mode 100644 index 00000000000..cb55c9c3726 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_135.sub b/test/ntuple_qcd_1000_1500/batch/condor_135.sub new file mode 100644 index 00000000000..4846f9a3ca8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_136.sub b/test/ntuple_qcd_1000_1500/batch/condor_136.sub new file mode 100644 index 00000000000..e12fb7be44e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_137.sub b/test/ntuple_qcd_1000_1500/batch/condor_137.sub new file mode 100644 index 00000000000..977a39377b2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_138.sub b/test/ntuple_qcd_1000_1500/batch/condor_138.sub new file mode 100644 index 00000000000..d39951cde9f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_139.sub b/test/ntuple_qcd_1000_1500/batch/condor_139.sub new file mode 100644 index 00000000000..5a0390b774c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_139.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=139 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.139.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_139.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.139.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_14.sub b/test/ntuple_qcd_1000_1500/batch/condor_14.sub new file mode 100644 index 00000000000..30904513032 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_140.sub b/test/ntuple_qcd_1000_1500/batch/condor_140.sub new file mode 100644 index 00000000000..84201f799fc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_140.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=140 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.140.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_140.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.140.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_141.sub b/test/ntuple_qcd_1000_1500/batch/condor_141.sub new file mode 100644 index 00000000000..82f58a4f7ea --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_141.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=141 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.141.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_141.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.141.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_142.sub b/test/ntuple_qcd_1000_1500/batch/condor_142.sub new file mode 100644 index 00000000000..d159b473cf7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_142.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=142 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.142.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_142.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.142.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_143.sub b/test/ntuple_qcd_1000_1500/batch/condor_143.sub new file mode 100644 index 00000000000..0e67f0d4cdf --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_143.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=143 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.143.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_143.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.143.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_144.sub b/test/ntuple_qcd_1000_1500/batch/condor_144.sub new file mode 100644 index 00000000000..2cb358e9815 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_144.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=144 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.144.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_144.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.144.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_145.sub b/test/ntuple_qcd_1000_1500/batch/condor_145.sub new file mode 100644 index 00000000000..3997a9f2b4a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_145.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=145 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.145.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_145.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.145.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_146.sub b/test/ntuple_qcd_1000_1500/batch/condor_146.sub new file mode 100644 index 00000000000..eba8fd584e3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_146.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=146 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.146.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_146.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.146.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_147.sub b/test/ntuple_qcd_1000_1500/batch/condor_147.sub new file mode 100644 index 00000000000..e080b2356e8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_147.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=147 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.147.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_147.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.147.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_148.sub b/test/ntuple_qcd_1000_1500/batch/condor_148.sub new file mode 100644 index 00000000000..c3af390df4b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_148.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=148 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.148.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_148.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.148.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_149.sub b/test/ntuple_qcd_1000_1500/batch/condor_149.sub new file mode 100644 index 00000000000..53fa925f5d1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_149.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=149 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.149.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_149.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.149.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_15.sub b/test/ntuple_qcd_1000_1500/batch/condor_15.sub new file mode 100644 index 00000000000..07f35e8b270 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_150.sub b/test/ntuple_qcd_1000_1500/batch/condor_150.sub new file mode 100644 index 00000000000..5e670bef3d3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_150.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=150 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.150.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_150.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.150.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_151.sub b/test/ntuple_qcd_1000_1500/batch/condor_151.sub new file mode 100644 index 00000000000..9e7b0307491 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_151.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=151 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.151.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_151.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.151.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_152.sub b/test/ntuple_qcd_1000_1500/batch/condor_152.sub new file mode 100644 index 00000000000..8b644075832 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_152.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=152 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.152.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_152.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.152.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_153.sub b/test/ntuple_qcd_1000_1500/batch/condor_153.sub new file mode 100644 index 00000000000..bee072e8bb3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_153.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=153 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.153.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_153.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.153.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_154.sub b/test/ntuple_qcd_1000_1500/batch/condor_154.sub new file mode 100644 index 00000000000..f525a753a32 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_154.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=154 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.154.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_154.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.154.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_155.sub b/test/ntuple_qcd_1000_1500/batch/condor_155.sub new file mode 100644 index 00000000000..25636ed0fee --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_155.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=155 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.155.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_155.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.155.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_156.sub b/test/ntuple_qcd_1000_1500/batch/condor_156.sub new file mode 100644 index 00000000000..567753375cc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_156.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=156 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.156.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_156.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.156.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_157.sub b/test/ntuple_qcd_1000_1500/batch/condor_157.sub new file mode 100644 index 00000000000..04cdf6ba4d4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_157.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=157 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.157.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_157.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.157.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_158.sub b/test/ntuple_qcd_1000_1500/batch/condor_158.sub new file mode 100644 index 00000000000..2adac6abb99 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_158.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=158 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.158.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_158.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.158.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_159.sub b/test/ntuple_qcd_1000_1500/batch/condor_159.sub new file mode 100644 index 00000000000..a3cb9c6c358 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_159.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=159 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.159.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_159.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.159.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_16.sub b/test/ntuple_qcd_1000_1500/batch/condor_16.sub new file mode 100644 index 00000000000..dca3c5e64f4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_160.sub b/test/ntuple_qcd_1000_1500/batch/condor_160.sub new file mode 100644 index 00000000000..0ef93016cc8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_160.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=160 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.160.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_160.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.160.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_161.sub b/test/ntuple_qcd_1000_1500/batch/condor_161.sub new file mode 100644 index 00000000000..01b1f11bedd --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_161.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=161 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.161.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_161.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.161.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_162.sub b/test/ntuple_qcd_1000_1500/batch/condor_162.sub new file mode 100644 index 00000000000..708289aae99 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_162.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=162 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.162.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_162.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.162.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_163.sub b/test/ntuple_qcd_1000_1500/batch/condor_163.sub new file mode 100644 index 00000000000..7cf77351b53 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_163.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=163 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.163.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_163.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.163.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_164.sub b/test/ntuple_qcd_1000_1500/batch/condor_164.sub new file mode 100644 index 00000000000..d2d94f757fd --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_164.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=164 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.164.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_164.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.164.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_165.sub b/test/ntuple_qcd_1000_1500/batch/condor_165.sub new file mode 100644 index 00000000000..3f2a0f3edfb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_165.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=165 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.165.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_165.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.165.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_166.sub b/test/ntuple_qcd_1000_1500/batch/condor_166.sub new file mode 100644 index 00000000000..a5f67eec1a3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_166.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=166 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.166.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_166.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.166.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_167.sub b/test/ntuple_qcd_1000_1500/batch/condor_167.sub new file mode 100644 index 00000000000..89d3858fdb7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_167.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=167 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.167.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_167.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.167.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_168.sub b/test/ntuple_qcd_1000_1500/batch/condor_168.sub new file mode 100644 index 00000000000..9c6c8ec2f14 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_168.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=168 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.168.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_168.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.168.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_169.sub b/test/ntuple_qcd_1000_1500/batch/condor_169.sub new file mode 100644 index 00000000000..97778f3cdf6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_169.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=169 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.169.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_169.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.169.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_17.sub b/test/ntuple_qcd_1000_1500/batch/condor_17.sub new file mode 100644 index 00000000000..f05644f7b25 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_170.sub b/test/ntuple_qcd_1000_1500/batch/condor_170.sub new file mode 100644 index 00000000000..5f718918101 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_170.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=170 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.170.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_170.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.170.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_171.sub b/test/ntuple_qcd_1000_1500/batch/condor_171.sub new file mode 100644 index 00000000000..591e9871022 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_171.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=171 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.171.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_171.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.171.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_172.sub b/test/ntuple_qcd_1000_1500/batch/condor_172.sub new file mode 100644 index 00000000000..4ea2c87956c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_172.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=172 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.172.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_172.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.172.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_173.sub b/test/ntuple_qcd_1000_1500/batch/condor_173.sub new file mode 100644 index 00000000000..24a410d9c35 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_173.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=173 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.173.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_173.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.173.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_174.sub b/test/ntuple_qcd_1000_1500/batch/condor_174.sub new file mode 100644 index 00000000000..ecaef2d0589 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_174.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=174 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.174.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_174.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.174.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_175.sub b/test/ntuple_qcd_1000_1500/batch/condor_175.sub new file mode 100644 index 00000000000..42b4008ab02 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_175.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=175 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.175.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_175.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.175.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_176.sub b/test/ntuple_qcd_1000_1500/batch/condor_176.sub new file mode 100644 index 00000000000..4317f064887 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_176.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=176 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.176.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_176.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.176.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_177.sub b/test/ntuple_qcd_1000_1500/batch/condor_177.sub new file mode 100644 index 00000000000..b3f84bb61ea --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_177.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=177 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.177.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_177.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.177.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_178.sub b/test/ntuple_qcd_1000_1500/batch/condor_178.sub new file mode 100644 index 00000000000..3abc23c411d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_178.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=178 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.178.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_178.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.178.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_179.sub b/test/ntuple_qcd_1000_1500/batch/condor_179.sub new file mode 100644 index 00000000000..8d9839f02c2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_179.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=179 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.179.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_179.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.179.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_18.sub b/test/ntuple_qcd_1000_1500/batch/condor_18.sub new file mode 100644 index 00000000000..62057ed995a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_180.sub b/test/ntuple_qcd_1000_1500/batch/condor_180.sub new file mode 100644 index 00000000000..63058589bfe --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_180.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=180 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.180.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_180.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.180.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_181.sub b/test/ntuple_qcd_1000_1500/batch/condor_181.sub new file mode 100644 index 00000000000..5fe2f9d09c9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_181.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=181 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.181.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_181.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.181.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_182.sub b/test/ntuple_qcd_1000_1500/batch/condor_182.sub new file mode 100644 index 00000000000..5c31089b896 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_182.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=182 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.182.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_182.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.182.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_183.sub b/test/ntuple_qcd_1000_1500/batch/condor_183.sub new file mode 100644 index 00000000000..dec574e7a71 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_183.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=183 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.183.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_183.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.183.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_184.sub b/test/ntuple_qcd_1000_1500/batch/condor_184.sub new file mode 100644 index 00000000000..ebc246398c9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_184.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=184 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.184.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_184.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.184.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_185.sub b/test/ntuple_qcd_1000_1500/batch/condor_185.sub new file mode 100644 index 00000000000..76953d393ee --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_185.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=185 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.185.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_185.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.185.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_186.sub b/test/ntuple_qcd_1000_1500/batch/condor_186.sub new file mode 100644 index 00000000000..87cdb5f34d7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_186.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=186 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.186.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_186.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.186.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_187.sub b/test/ntuple_qcd_1000_1500/batch/condor_187.sub new file mode 100644 index 00000000000..1aabc7e9f26 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_187.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=187 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.187.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_187.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.187.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_188.sub b/test/ntuple_qcd_1000_1500/batch/condor_188.sub new file mode 100644 index 00000000000..7c4ebb6f809 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_188.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=188 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.188.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_188.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.188.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_189.sub b/test/ntuple_qcd_1000_1500/batch/condor_189.sub new file mode 100644 index 00000000000..58f794f174d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_189.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=189 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.189.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_189.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.189.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_19.sub b/test/ntuple_qcd_1000_1500/batch/condor_19.sub new file mode 100644 index 00000000000..21ebb1e397c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_190.sub b/test/ntuple_qcd_1000_1500/batch/condor_190.sub new file mode 100644 index 00000000000..533578b4406 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_190.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=190 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.190.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_190.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.190.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_191.sub b/test/ntuple_qcd_1000_1500/batch/condor_191.sub new file mode 100644 index 00000000000..fb58013d00c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_191.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=191 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.191.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_191.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.191.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_192.sub b/test/ntuple_qcd_1000_1500/batch/condor_192.sub new file mode 100644 index 00000000000..eef1880d51a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_192.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=192 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.192.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_192.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.192.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_193.sub b/test/ntuple_qcd_1000_1500/batch/condor_193.sub new file mode 100644 index 00000000000..b62c9dc79ca --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_193.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=193 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.193.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_193.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.193.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_194.sub b/test/ntuple_qcd_1000_1500/batch/condor_194.sub new file mode 100644 index 00000000000..6f7156bdd6f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_194.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=194 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.194.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_194.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.194.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_195.sub b/test/ntuple_qcd_1000_1500/batch/condor_195.sub new file mode 100644 index 00000000000..c502f5fa4b7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_195.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=195 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.195.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_195.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.195.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_2.sub b/test/ntuple_qcd_1000_1500/batch/condor_2.sub new file mode 100644 index 00000000000..cc7eb0fdb02 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_20.sub b/test/ntuple_qcd_1000_1500/batch/condor_20.sub new file mode 100644 index 00000000000..d84f0934de3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_21.sub b/test/ntuple_qcd_1000_1500/batch/condor_21.sub new file mode 100644 index 00000000000..94517425377 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_22.sub b/test/ntuple_qcd_1000_1500/batch/condor_22.sub new file mode 100644 index 00000000000..75270ac9a68 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_23.sub b/test/ntuple_qcd_1000_1500/batch/condor_23.sub new file mode 100644 index 00000000000..5adabbdc8aa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_24.sub b/test/ntuple_qcd_1000_1500/batch/condor_24.sub new file mode 100644 index 00000000000..285547d003e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_25.sub b/test/ntuple_qcd_1000_1500/batch/condor_25.sub new file mode 100644 index 00000000000..a596cbef6c1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_26.sub b/test/ntuple_qcd_1000_1500/batch/condor_26.sub new file mode 100644 index 00000000000..71363c27e21 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_27.sub b/test/ntuple_qcd_1000_1500/batch/condor_27.sub new file mode 100644 index 00000000000..0b800eb7d82 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_28.sub b/test/ntuple_qcd_1000_1500/batch/condor_28.sub new file mode 100644 index 00000000000..267a8014265 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_29.sub b/test/ntuple_qcd_1000_1500/batch/condor_29.sub new file mode 100644 index 00000000000..4da4f3a9882 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_3.sub b/test/ntuple_qcd_1000_1500/batch/condor_3.sub new file mode 100644 index 00000000000..8d721ccb5f2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_30.sub b/test/ntuple_qcd_1000_1500/batch/condor_30.sub new file mode 100644 index 00000000000..94c024c6ae6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_31.sub b/test/ntuple_qcd_1000_1500/batch/condor_31.sub new file mode 100644 index 00000000000..3a91dca2044 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_32.sub b/test/ntuple_qcd_1000_1500/batch/condor_32.sub new file mode 100644 index 00000000000..65365ec8ac4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_33.sub b/test/ntuple_qcd_1000_1500/batch/condor_33.sub new file mode 100644 index 00000000000..5dd5e6ad033 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_34.sub b/test/ntuple_qcd_1000_1500/batch/condor_34.sub new file mode 100644 index 00000000000..626e8eae923 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_35.sub b/test/ntuple_qcd_1000_1500/batch/condor_35.sub new file mode 100644 index 00000000000..e11f8a96eae --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_36.sub b/test/ntuple_qcd_1000_1500/batch/condor_36.sub new file mode 100644 index 00000000000..0210ecf5288 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_37.sub b/test/ntuple_qcd_1000_1500/batch/condor_37.sub new file mode 100644 index 00000000000..5066e3ea062 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_38.sub b/test/ntuple_qcd_1000_1500/batch/condor_38.sub new file mode 100644 index 00000000000..f871e72e966 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_39.sub b/test/ntuple_qcd_1000_1500/batch/condor_39.sub new file mode 100644 index 00000000000..dce0d54f855 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_4.sub b/test/ntuple_qcd_1000_1500/batch/condor_4.sub new file mode 100644 index 00000000000..f6c78c73283 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_40.sub b/test/ntuple_qcd_1000_1500/batch/condor_40.sub new file mode 100644 index 00000000000..007c4763854 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_41.sub b/test/ntuple_qcd_1000_1500/batch/condor_41.sub new file mode 100644 index 00000000000..f078dffdb15 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_42.sub b/test/ntuple_qcd_1000_1500/batch/condor_42.sub new file mode 100644 index 00000000000..7bf1d59c1b4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_43.sub b/test/ntuple_qcd_1000_1500/batch/condor_43.sub new file mode 100644 index 00000000000..3fb55f091a6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_44.sub b/test/ntuple_qcd_1000_1500/batch/condor_44.sub new file mode 100644 index 00000000000..a38e4351463 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_45.sub b/test/ntuple_qcd_1000_1500/batch/condor_45.sub new file mode 100644 index 00000000000..f46cb037077 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_46.sub b/test/ntuple_qcd_1000_1500/batch/condor_46.sub new file mode 100644 index 00000000000..4b41b5b8b2f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_47.sub b/test/ntuple_qcd_1000_1500/batch/condor_47.sub new file mode 100644 index 00000000000..2ef42003dd3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_48.sub b/test/ntuple_qcd_1000_1500/batch/condor_48.sub new file mode 100644 index 00000000000..076e3c1fe46 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_49.sub b/test/ntuple_qcd_1000_1500/batch/condor_49.sub new file mode 100644 index 00000000000..48ecbdcd16a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_5.sub b/test/ntuple_qcd_1000_1500/batch/condor_5.sub new file mode 100644 index 00000000000..18ab081f127 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_50.sub b/test/ntuple_qcd_1000_1500/batch/condor_50.sub new file mode 100644 index 00000000000..30a796e6b2b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_51.sub b/test/ntuple_qcd_1000_1500/batch/condor_51.sub new file mode 100644 index 00000000000..e23dfb2097a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_52.sub b/test/ntuple_qcd_1000_1500/batch/condor_52.sub new file mode 100644 index 00000000000..5b5e404afab --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_53.sub b/test/ntuple_qcd_1000_1500/batch/condor_53.sub new file mode 100644 index 00000000000..d8ebe216724 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_54.sub b/test/ntuple_qcd_1000_1500/batch/condor_54.sub new file mode 100644 index 00000000000..b75bb17fa19 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_55.sub b/test/ntuple_qcd_1000_1500/batch/condor_55.sub new file mode 100644 index 00000000000..8121f631517 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_56.sub b/test/ntuple_qcd_1000_1500/batch/condor_56.sub new file mode 100644 index 00000000000..d6034e89a21 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_57.sub b/test/ntuple_qcd_1000_1500/batch/condor_57.sub new file mode 100644 index 00000000000..ad06fc08e40 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_58.sub b/test/ntuple_qcd_1000_1500/batch/condor_58.sub new file mode 100644 index 00000000000..438b16aadbb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_59.sub b/test/ntuple_qcd_1000_1500/batch/condor_59.sub new file mode 100644 index 00000000000..05f26bb851e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_6.sub b/test/ntuple_qcd_1000_1500/batch/condor_6.sub new file mode 100644 index 00000000000..5bfb861a19d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_60.sub b/test/ntuple_qcd_1000_1500/batch/condor_60.sub new file mode 100644 index 00000000000..a077dd43264 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_61.sub b/test/ntuple_qcd_1000_1500/batch/condor_61.sub new file mode 100644 index 00000000000..76af5522ee8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_62.sub b/test/ntuple_qcd_1000_1500/batch/condor_62.sub new file mode 100644 index 00000000000..edb47fbfefb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_63.sub b/test/ntuple_qcd_1000_1500/batch/condor_63.sub new file mode 100644 index 00000000000..b1a6bdfb085 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_64.sub b/test/ntuple_qcd_1000_1500/batch/condor_64.sub new file mode 100644 index 00000000000..655dd174e0d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_65.sub b/test/ntuple_qcd_1000_1500/batch/condor_65.sub new file mode 100644 index 00000000000..377edb157fe --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_66.sub b/test/ntuple_qcd_1000_1500/batch/condor_66.sub new file mode 100644 index 00000000000..7d7b5dbfa86 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_67.sub b/test/ntuple_qcd_1000_1500/batch/condor_67.sub new file mode 100644 index 00000000000..53ebb2ea252 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_68.sub b/test/ntuple_qcd_1000_1500/batch/condor_68.sub new file mode 100644 index 00000000000..5aa08db8233 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_69.sub b/test/ntuple_qcd_1000_1500/batch/condor_69.sub new file mode 100644 index 00000000000..d885c086a98 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_7.sub b/test/ntuple_qcd_1000_1500/batch/condor_7.sub new file mode 100644 index 00000000000..cdc852a1f67 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_70.sub b/test/ntuple_qcd_1000_1500/batch/condor_70.sub new file mode 100644 index 00000000000..4e4a526013e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_71.sub b/test/ntuple_qcd_1000_1500/batch/condor_71.sub new file mode 100644 index 00000000000..4464cba50ce --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_72.sub b/test/ntuple_qcd_1000_1500/batch/condor_72.sub new file mode 100644 index 00000000000..1cb0690fbf8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_73.sub b/test/ntuple_qcd_1000_1500/batch/condor_73.sub new file mode 100644 index 00000000000..d813b44940d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_74.sub b/test/ntuple_qcd_1000_1500/batch/condor_74.sub new file mode 100644 index 00000000000..5384b65458c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_75.sub b/test/ntuple_qcd_1000_1500/batch/condor_75.sub new file mode 100644 index 00000000000..e26174c1b0f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_76.sub b/test/ntuple_qcd_1000_1500/batch/condor_76.sub new file mode 100644 index 00000000000..263d390b2a3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_77.sub b/test/ntuple_qcd_1000_1500/batch/condor_77.sub new file mode 100644 index 00000000000..51befd4df68 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_78.sub b/test/ntuple_qcd_1000_1500/batch/condor_78.sub new file mode 100644 index 00000000000..f79e7dadc3b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_79.sub b/test/ntuple_qcd_1000_1500/batch/condor_79.sub new file mode 100644 index 00000000000..10537fa3da5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_8.sub b/test/ntuple_qcd_1000_1500/batch/condor_8.sub new file mode 100644 index 00000000000..ed60279af79 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_80.sub b/test/ntuple_qcd_1000_1500/batch/condor_80.sub new file mode 100644 index 00000000000..2ea15105d56 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_81.sub b/test/ntuple_qcd_1000_1500/batch/condor_81.sub new file mode 100644 index 00000000000..aafec008917 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_82.sub b/test/ntuple_qcd_1000_1500/batch/condor_82.sub new file mode 100644 index 00000000000..08ccf55b4f6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_83.sub b/test/ntuple_qcd_1000_1500/batch/condor_83.sub new file mode 100644 index 00000000000..3c73111d541 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_84.sub b/test/ntuple_qcd_1000_1500/batch/condor_84.sub new file mode 100644 index 00000000000..dc7ed6b91a0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_85.sub b/test/ntuple_qcd_1000_1500/batch/condor_85.sub new file mode 100644 index 00000000000..e5516b6b635 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_86.sub b/test/ntuple_qcd_1000_1500/batch/condor_86.sub new file mode 100644 index 00000000000..9cb0b5c5eb7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_87.sub b/test/ntuple_qcd_1000_1500/batch/condor_87.sub new file mode 100644 index 00000000000..a199efc8800 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_88.sub b/test/ntuple_qcd_1000_1500/batch/condor_88.sub new file mode 100644 index 00000000000..fb1e9418e56 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_89.sub b/test/ntuple_qcd_1000_1500/batch/condor_89.sub new file mode 100644 index 00000000000..12f8a4c775e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_9.sub b/test/ntuple_qcd_1000_1500/batch/condor_9.sub new file mode 100644 index 00000000000..4e4010fae1b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_90.sub b/test/ntuple_qcd_1000_1500/batch/condor_90.sub new file mode 100644 index 00000000000..5b511744943 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_91.sub b/test/ntuple_qcd_1000_1500/batch/condor_91.sub new file mode 100644 index 00000000000..995bae886cb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_92.sub b/test/ntuple_qcd_1000_1500/batch/condor_92.sub new file mode 100644 index 00000000000..996df25843a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_93.sub b/test/ntuple_qcd_1000_1500/batch/condor_93.sub new file mode 100644 index 00000000000..c8105979475 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_94.sub b/test/ntuple_qcd_1000_1500/batch/condor_94.sub new file mode 100644 index 00000000000..b43140ea5dd --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_95.sub b/test/ntuple_qcd_1000_1500/batch/condor_95.sub new file mode 100644 index 00000000000..41cd4f6a77d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_96.sub b/test/ntuple_qcd_1000_1500/batch/condor_96.sub new file mode 100644 index 00000000000..a6a26817212 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_97.sub b/test/ntuple_qcd_1000_1500/batch/condor_97.sub new file mode 100644 index 00000000000..dfa5b564289 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_98.sub b/test/ntuple_qcd_1000_1500/batch/condor_98.sub new file mode 100644 index 00000000000..3392b130689 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_99.sub b/test/ntuple_qcd_1000_1500/batch/condor_99.sub new file mode 100644 index 00000000000..13bcaaee74e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/nJobs.196 b/test/ntuple_qcd_1000_1500/batch/nJobs.196 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_1000_1500/batch/sge_0.sh b/test/ntuple_qcd_1000_1500/batch/sge_0.sh new file mode 100755 index 00000000000..bbf06c0d6c2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_1.sh b/test/ntuple_qcd_1000_1500/batch/sge_1.sh new file mode 100755 index 00000000000..c85d3265631 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_10.sh b/test/ntuple_qcd_1000_1500/batch/sge_10.sh new file mode 100755 index 00000000000..9213e0c5210 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_100.sh b/test/ntuple_qcd_1000_1500/batch/sge_100.sh new file mode 100755 index 00000000000..abde49e09bd --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=100 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_101.sh b/test/ntuple_qcd_1000_1500/batch/sge_101.sh new file mode 100755 index 00000000000..1beccd3dc0b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=101 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_102.sh b/test/ntuple_qcd_1000_1500/batch/sge_102.sh new file mode 100755 index 00000000000..b96062cc808 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=102 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_103.sh b/test/ntuple_qcd_1000_1500/batch/sge_103.sh new file mode 100755 index 00000000000..bdf338f7f16 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=103 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_104.sh b/test/ntuple_qcd_1000_1500/batch/sge_104.sh new file mode 100755 index 00000000000..7624812f008 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=104 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_105.sh b/test/ntuple_qcd_1000_1500/batch/sge_105.sh new file mode 100755 index 00000000000..456fe385959 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=105 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_106.sh b/test/ntuple_qcd_1000_1500/batch/sge_106.sh new file mode 100755 index 00000000000..f257f7c13a8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=106 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_107.sh b/test/ntuple_qcd_1000_1500/batch/sge_107.sh new file mode 100755 index 00000000000..8d7a0d132ee --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=107 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_108.sh b/test/ntuple_qcd_1000_1500/batch/sge_108.sh new file mode 100755 index 00000000000..4edd2d38c10 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=108 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_109.sh b/test/ntuple_qcd_1000_1500/batch/sge_109.sh new file mode 100755 index 00000000000..d06a8171f36 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=109 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_11.sh b/test/ntuple_qcd_1000_1500/batch/sge_11.sh new file mode 100755 index 00000000000..0019efa0ba9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_110.sh b/test/ntuple_qcd_1000_1500/batch/sge_110.sh new file mode 100755 index 00000000000..6cfc5cd9d66 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=110 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_111.sh b/test/ntuple_qcd_1000_1500/batch/sge_111.sh new file mode 100755 index 00000000000..d518788ae76 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=111 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_112.sh b/test/ntuple_qcd_1000_1500/batch/sge_112.sh new file mode 100755 index 00000000000..960dcdeb5cc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=112 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_113.sh b/test/ntuple_qcd_1000_1500/batch/sge_113.sh new file mode 100755 index 00000000000..ff0a030e2ac --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=113 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_114.sh b/test/ntuple_qcd_1000_1500/batch/sge_114.sh new file mode 100755 index 00000000000..fc5f83862d0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=114 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_115.sh b/test/ntuple_qcd_1000_1500/batch/sge_115.sh new file mode 100755 index 00000000000..c3962b440a1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=115 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_116.sh b/test/ntuple_qcd_1000_1500/batch/sge_116.sh new file mode 100755 index 00000000000..58c4f60730a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=116 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_117.sh b/test/ntuple_qcd_1000_1500/batch/sge_117.sh new file mode 100755 index 00000000000..11a5c8ed26d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=117 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_118.sh b/test/ntuple_qcd_1000_1500/batch/sge_118.sh new file mode 100755 index 00000000000..879c85c1c8e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=118 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_119.sh b/test/ntuple_qcd_1000_1500/batch/sge_119.sh new file mode 100755 index 00000000000..4d0cdc395ab --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=119 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_12.sh b/test/ntuple_qcd_1000_1500/batch/sge_12.sh new file mode 100755 index 00000000000..f924a2c2f8e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_120.sh b/test/ntuple_qcd_1000_1500/batch/sge_120.sh new file mode 100755 index 00000000000..7431c48c97c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=120 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_121.sh b/test/ntuple_qcd_1000_1500/batch/sge_121.sh new file mode 100755 index 00000000000..83533b4096e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=121 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_122.sh b/test/ntuple_qcd_1000_1500/batch/sge_122.sh new file mode 100755 index 00000000000..dd863862ef6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=122 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_123.sh b/test/ntuple_qcd_1000_1500/batch/sge_123.sh new file mode 100755 index 00000000000..582c3f4bbc5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=123 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_124.sh b/test/ntuple_qcd_1000_1500/batch/sge_124.sh new file mode 100755 index 00000000000..ee081c856b1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=124 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_125.sh b/test/ntuple_qcd_1000_1500/batch/sge_125.sh new file mode 100755 index 00000000000..821775a2d50 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=125 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_126.sh b/test/ntuple_qcd_1000_1500/batch/sge_126.sh new file mode 100755 index 00000000000..8b0b4ef1d63 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=126 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_127.sh b/test/ntuple_qcd_1000_1500/batch/sge_127.sh new file mode 100755 index 00000000000..10610202c5c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=127 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_128.sh b/test/ntuple_qcd_1000_1500/batch/sge_128.sh new file mode 100755 index 00000000000..a4da2bd68f4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=128 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_129.sh b/test/ntuple_qcd_1000_1500/batch/sge_129.sh new file mode 100755 index 00000000000..d450d06259e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=129 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_13.sh b/test/ntuple_qcd_1000_1500/batch/sge_13.sh new file mode 100755 index 00000000000..fa2e59fe2ce --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_130.sh b/test/ntuple_qcd_1000_1500/batch/sge_130.sh new file mode 100755 index 00000000000..dc51d7c88cc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=130 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_131.sh b/test/ntuple_qcd_1000_1500/batch/sge_131.sh new file mode 100755 index 00000000000..e831e1c4fe0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=131 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_132.sh b/test/ntuple_qcd_1000_1500/batch/sge_132.sh new file mode 100755 index 00000000000..8503f29ade8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=132 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_133.sh b/test/ntuple_qcd_1000_1500/batch/sge_133.sh new file mode 100755 index 00000000000..a3f88a8c5c2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=133 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_134.sh b/test/ntuple_qcd_1000_1500/batch/sge_134.sh new file mode 100755 index 00000000000..4897be6de1c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=134 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_135.sh b/test/ntuple_qcd_1000_1500/batch/sge_135.sh new file mode 100755 index 00000000000..a03c8cd7120 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=135 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_136.sh b/test/ntuple_qcd_1000_1500/batch/sge_136.sh new file mode 100755 index 00000000000..35664bdc36e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=136 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_137.sh b/test/ntuple_qcd_1000_1500/batch/sge_137.sh new file mode 100755 index 00000000000..5d6e0d6655d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=137 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_138.sh b/test/ntuple_qcd_1000_1500/batch/sge_138.sh new file mode 100755 index 00000000000..4866cee1c35 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=138 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_139.sh b/test/ntuple_qcd_1000_1500/batch/sge_139.sh new file mode 100755 index 00000000000..0077a50faba --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_139.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=139 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_139.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=139 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_14.sh b/test/ntuple_qcd_1000_1500/batch/sge_14.sh new file mode 100755 index 00000000000..de1cbf62152 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_140.sh b/test/ntuple_qcd_1000_1500/batch/sge_140.sh new file mode 100755 index 00000000000..22bc93e32ac --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_140.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=140 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_140.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=140 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_141.sh b/test/ntuple_qcd_1000_1500/batch/sge_141.sh new file mode 100755 index 00000000000..5a7bac541fe --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_141.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=141 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_141.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=141 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_142.sh b/test/ntuple_qcd_1000_1500/batch/sge_142.sh new file mode 100755 index 00000000000..b3f49fd68a6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_142.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=142 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_142.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=142 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_143.sh b/test/ntuple_qcd_1000_1500/batch/sge_143.sh new file mode 100755 index 00000000000..52defce7ffb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_143.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=143 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_143.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=143 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_144.sh b/test/ntuple_qcd_1000_1500/batch/sge_144.sh new file mode 100755 index 00000000000..6eefa155e80 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_144.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=144 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_144.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=144 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_145.sh b/test/ntuple_qcd_1000_1500/batch/sge_145.sh new file mode 100755 index 00000000000..d477efb9bf0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_145.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=145 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_145.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=145 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_146.sh b/test/ntuple_qcd_1000_1500/batch/sge_146.sh new file mode 100755 index 00000000000..91e51c66850 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_146.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=146 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_146.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=146 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_147.sh b/test/ntuple_qcd_1000_1500/batch/sge_147.sh new file mode 100755 index 00000000000..8acf8a6d7ac --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_147.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=147 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_147.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=147 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_148.sh b/test/ntuple_qcd_1000_1500/batch/sge_148.sh new file mode 100755 index 00000000000..a6470383a0d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_148.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=148 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_148.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=148 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_149.sh b/test/ntuple_qcd_1000_1500/batch/sge_149.sh new file mode 100755 index 00000000000..8e044dfe543 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_149.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=149 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_149.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=149 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_15.sh b/test/ntuple_qcd_1000_1500/batch/sge_15.sh new file mode 100755 index 00000000000..5efa1824a40 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_150.sh b/test/ntuple_qcd_1000_1500/batch/sge_150.sh new file mode 100755 index 00000000000..2d6597d03a2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_150.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=150 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_150.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=150 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_151.sh b/test/ntuple_qcd_1000_1500/batch/sge_151.sh new file mode 100755 index 00000000000..bceeefe44a4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_151.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=151 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_151.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=151 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_152.sh b/test/ntuple_qcd_1000_1500/batch/sge_152.sh new file mode 100755 index 00000000000..817d4cd8d3b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_152.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=152 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_152.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=152 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_153.sh b/test/ntuple_qcd_1000_1500/batch/sge_153.sh new file mode 100755 index 00000000000..2d805147c5a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_153.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=153 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_153.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=153 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_154.sh b/test/ntuple_qcd_1000_1500/batch/sge_154.sh new file mode 100755 index 00000000000..3b3a2ca906d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_154.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=154 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_154.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=154 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_155.sh b/test/ntuple_qcd_1000_1500/batch/sge_155.sh new file mode 100755 index 00000000000..9ac0c972ece --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_155.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=155 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_155.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=155 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_156.sh b/test/ntuple_qcd_1000_1500/batch/sge_156.sh new file mode 100755 index 00000000000..1aebaf3fd43 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_156.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=156 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_156.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=156 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_157.sh b/test/ntuple_qcd_1000_1500/batch/sge_157.sh new file mode 100755 index 00000000000..f34eb73c493 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_157.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=157 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_157.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=157 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_158.sh b/test/ntuple_qcd_1000_1500/batch/sge_158.sh new file mode 100755 index 00000000000..70bbf74f4d7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_158.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=158 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_158.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=158 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_159.sh b/test/ntuple_qcd_1000_1500/batch/sge_159.sh new file mode 100755 index 00000000000..00c97e35b7a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_159.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=159 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_159.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=159 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_16.sh b/test/ntuple_qcd_1000_1500/batch/sge_16.sh new file mode 100755 index 00000000000..c03d77f0171 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_160.sh b/test/ntuple_qcd_1000_1500/batch/sge_160.sh new file mode 100755 index 00000000000..31087560704 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_160.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=160 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_160.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=160 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_161.sh b/test/ntuple_qcd_1000_1500/batch/sge_161.sh new file mode 100755 index 00000000000..c3d30dbf254 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_161.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=161 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_161.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=161 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_162.sh b/test/ntuple_qcd_1000_1500/batch/sge_162.sh new file mode 100755 index 00000000000..c7634ab5d3f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_162.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=162 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_162.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=162 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_163.sh b/test/ntuple_qcd_1000_1500/batch/sge_163.sh new file mode 100755 index 00000000000..53a617f2a66 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_163.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=163 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_163.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=163 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_164.sh b/test/ntuple_qcd_1000_1500/batch/sge_164.sh new file mode 100755 index 00000000000..308b7fdbdc7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_164.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=164 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_164.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=164 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_165.sh b/test/ntuple_qcd_1000_1500/batch/sge_165.sh new file mode 100755 index 00000000000..836e0839c4b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_165.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=165 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_165.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=165 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_166.sh b/test/ntuple_qcd_1000_1500/batch/sge_166.sh new file mode 100755 index 00000000000..693e3a00285 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_166.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=166 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_166.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=166 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_167.sh b/test/ntuple_qcd_1000_1500/batch/sge_167.sh new file mode 100755 index 00000000000..a6ccd899ffa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_167.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=167 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_167.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=167 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_168.sh b/test/ntuple_qcd_1000_1500/batch/sge_168.sh new file mode 100755 index 00000000000..127eb473ac6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_168.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=168 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_168.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=168 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_169.sh b/test/ntuple_qcd_1000_1500/batch/sge_169.sh new file mode 100755 index 00000000000..20a254513aa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_169.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=169 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_169.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=169 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_17.sh b/test/ntuple_qcd_1000_1500/batch/sge_17.sh new file mode 100755 index 00000000000..6b4c10d40b6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_170.sh b/test/ntuple_qcd_1000_1500/batch/sge_170.sh new file mode 100755 index 00000000000..28e6c528886 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_170.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=170 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_170.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=170 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_171.sh b/test/ntuple_qcd_1000_1500/batch/sge_171.sh new file mode 100755 index 00000000000..29b2f7b5fc5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_171.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=171 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_171.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=171 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_172.sh b/test/ntuple_qcd_1000_1500/batch/sge_172.sh new file mode 100755 index 00000000000..e0e5cb36ceb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_172.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=172 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_172.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=172 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_173.sh b/test/ntuple_qcd_1000_1500/batch/sge_173.sh new file mode 100755 index 00000000000..85de728b80e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_173.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=173 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_173.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=173 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_174.sh b/test/ntuple_qcd_1000_1500/batch/sge_174.sh new file mode 100755 index 00000000000..3d8b6359fc2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_174.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=174 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_174.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=174 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_175.sh b/test/ntuple_qcd_1000_1500/batch/sge_175.sh new file mode 100755 index 00000000000..5007345544c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_175.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=175 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_175.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=175 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_176.sh b/test/ntuple_qcd_1000_1500/batch/sge_176.sh new file mode 100755 index 00000000000..aec32d7fa04 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_176.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=176 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_176.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=176 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_177.sh b/test/ntuple_qcd_1000_1500/batch/sge_177.sh new file mode 100755 index 00000000000..5505556d47d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_177.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=177 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_177.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=177 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_178.sh b/test/ntuple_qcd_1000_1500/batch/sge_178.sh new file mode 100755 index 00000000000..f4b46a87dea --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_178.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=178 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_178.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=178 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_179.sh b/test/ntuple_qcd_1000_1500/batch/sge_179.sh new file mode 100755 index 00000000000..fd992c9de8e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_179.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=179 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_179.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=179 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_18.sh b/test/ntuple_qcd_1000_1500/batch/sge_18.sh new file mode 100755 index 00000000000..d6f7af349be --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_180.sh b/test/ntuple_qcd_1000_1500/batch/sge_180.sh new file mode 100755 index 00000000000..2d3f0a1526e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_180.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=180 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_180.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=180 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_181.sh b/test/ntuple_qcd_1000_1500/batch/sge_181.sh new file mode 100755 index 00000000000..590bda3de44 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_181.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=181 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_181.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=181 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_182.sh b/test/ntuple_qcd_1000_1500/batch/sge_182.sh new file mode 100755 index 00000000000..30c08095af6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_182.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=182 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_182.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=182 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_183.sh b/test/ntuple_qcd_1000_1500/batch/sge_183.sh new file mode 100755 index 00000000000..08d32f24799 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_183.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=183 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_183.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=183 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_184.sh b/test/ntuple_qcd_1000_1500/batch/sge_184.sh new file mode 100755 index 00000000000..7c4454a27c0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_184.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=184 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_184.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=184 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_185.sh b/test/ntuple_qcd_1000_1500/batch/sge_185.sh new file mode 100755 index 00000000000..61c927d816f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_185.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=185 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_185.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=185 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_186.sh b/test/ntuple_qcd_1000_1500/batch/sge_186.sh new file mode 100755 index 00000000000..6fe1d787342 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_186.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=186 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_186.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=186 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_187.sh b/test/ntuple_qcd_1000_1500/batch/sge_187.sh new file mode 100755 index 00000000000..b5e41e3eb2f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_187.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=187 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_187.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=187 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_188.sh b/test/ntuple_qcd_1000_1500/batch/sge_188.sh new file mode 100755 index 00000000000..61358fa8764 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_188.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=188 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_188.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=188 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_189.sh b/test/ntuple_qcd_1000_1500/batch/sge_189.sh new file mode 100755 index 00000000000..ecbf2164733 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_189.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=189 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_189.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=189 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_19.sh b/test/ntuple_qcd_1000_1500/batch/sge_19.sh new file mode 100755 index 00000000000..10a6dad7a19 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_190.sh b/test/ntuple_qcd_1000_1500/batch/sge_190.sh new file mode 100755 index 00000000000..0185c7f0dbf --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_190.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=190 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_190.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=190 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_191.sh b/test/ntuple_qcd_1000_1500/batch/sge_191.sh new file mode 100755 index 00000000000..b61db9509c8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_191.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=191 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_191.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=191 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_192.sh b/test/ntuple_qcd_1000_1500/batch/sge_192.sh new file mode 100755 index 00000000000..7f457fa3845 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_192.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=192 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_192.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=192 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_193.sh b/test/ntuple_qcd_1000_1500/batch/sge_193.sh new file mode 100755 index 00000000000..bd519dc86dc --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_193.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=193 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_193.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=193 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_194.sh b/test/ntuple_qcd_1000_1500/batch/sge_194.sh new file mode 100755 index 00000000000..9dd2d7628fa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_194.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=194 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_194.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=194 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_195.sh b/test/ntuple_qcd_1000_1500/batch/sge_195.sh new file mode 100755 index 00000000000..06977b6f4ef --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_195.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=195 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_195.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=195 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_2.sh b/test/ntuple_qcd_1000_1500/batch/sge_2.sh new file mode 100755 index 00000000000..bbf407d729e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_20.sh b/test/ntuple_qcd_1000_1500/batch/sge_20.sh new file mode 100755 index 00000000000..5710c30572a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_21.sh b/test/ntuple_qcd_1000_1500/batch/sge_21.sh new file mode 100755 index 00000000000..2fd7f68942e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_22.sh b/test/ntuple_qcd_1000_1500/batch/sge_22.sh new file mode 100755 index 00000000000..f4cdb22fdc9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_23.sh b/test/ntuple_qcd_1000_1500/batch/sge_23.sh new file mode 100755 index 00000000000..dfb70184790 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_24.sh b/test/ntuple_qcd_1000_1500/batch/sge_24.sh new file mode 100755 index 00000000000..71e9bc75ab6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_25.sh b/test/ntuple_qcd_1000_1500/batch/sge_25.sh new file mode 100755 index 00000000000..eb9a62e3321 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_26.sh b/test/ntuple_qcd_1000_1500/batch/sge_26.sh new file mode 100755 index 00000000000..3c2c01824c9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_27.sh b/test/ntuple_qcd_1000_1500/batch/sge_27.sh new file mode 100755 index 00000000000..23ce80ea6ea --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_28.sh b/test/ntuple_qcd_1000_1500/batch/sge_28.sh new file mode 100755 index 00000000000..be099df038e --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_29.sh b/test/ntuple_qcd_1000_1500/batch/sge_29.sh new file mode 100755 index 00000000000..2b2bdb35eb1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_3.sh b/test/ntuple_qcd_1000_1500/batch/sge_3.sh new file mode 100755 index 00000000000..4f2f5ffa7c8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_30.sh b/test/ntuple_qcd_1000_1500/batch/sge_30.sh new file mode 100755 index 00000000000..dca26e687b0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_31.sh b/test/ntuple_qcd_1000_1500/batch/sge_31.sh new file mode 100755 index 00000000000..c1f83927d1a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_32.sh b/test/ntuple_qcd_1000_1500/batch/sge_32.sh new file mode 100755 index 00000000000..9f7a970a8c0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_33.sh b/test/ntuple_qcd_1000_1500/batch/sge_33.sh new file mode 100755 index 00000000000..38614532514 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_34.sh b/test/ntuple_qcd_1000_1500/batch/sge_34.sh new file mode 100755 index 00000000000..b0eff1d78ac --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_35.sh b/test/ntuple_qcd_1000_1500/batch/sge_35.sh new file mode 100755 index 00000000000..148a4982d78 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_36.sh b/test/ntuple_qcd_1000_1500/batch/sge_36.sh new file mode 100755 index 00000000000..820251ca286 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_37.sh b/test/ntuple_qcd_1000_1500/batch/sge_37.sh new file mode 100755 index 00000000000..90bfed9eb71 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_38.sh b/test/ntuple_qcd_1000_1500/batch/sge_38.sh new file mode 100755 index 00000000000..ecceb43decb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_39.sh b/test/ntuple_qcd_1000_1500/batch/sge_39.sh new file mode 100755 index 00000000000..b727b22a448 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_4.sh b/test/ntuple_qcd_1000_1500/batch/sge_4.sh new file mode 100755 index 00000000000..43cafd98fae --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_40.sh b/test/ntuple_qcd_1000_1500/batch/sge_40.sh new file mode 100755 index 00000000000..626f6f1da98 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_41.sh b/test/ntuple_qcd_1000_1500/batch/sge_41.sh new file mode 100755 index 00000000000..7b74b09ce4d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_42.sh b/test/ntuple_qcd_1000_1500/batch/sge_42.sh new file mode 100755 index 00000000000..5f0f3b2ad4d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_43.sh b/test/ntuple_qcd_1000_1500/batch/sge_43.sh new file mode 100755 index 00000000000..f9ed68615b4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_44.sh b/test/ntuple_qcd_1000_1500/batch/sge_44.sh new file mode 100755 index 00000000000..46f36c82cbb --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_45.sh b/test/ntuple_qcd_1000_1500/batch/sge_45.sh new file mode 100755 index 00000000000..125c61266b7 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_46.sh b/test/ntuple_qcd_1000_1500/batch/sge_46.sh new file mode 100755 index 00000000000..2e97a91f1f6 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_47.sh b/test/ntuple_qcd_1000_1500/batch/sge_47.sh new file mode 100755 index 00000000000..878ba56f600 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_48.sh b/test/ntuple_qcd_1000_1500/batch/sge_48.sh new file mode 100755 index 00000000000..3e2fc3f2f9b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_49.sh b/test/ntuple_qcd_1000_1500/batch/sge_49.sh new file mode 100755 index 00000000000..62c07468f98 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_5.sh b/test/ntuple_qcd_1000_1500/batch/sge_5.sh new file mode 100755 index 00000000000..e038db5bd80 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_50.sh b/test/ntuple_qcd_1000_1500/batch/sge_50.sh new file mode 100755 index 00000000000..3c14d535ec3 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_51.sh b/test/ntuple_qcd_1000_1500/batch/sge_51.sh new file mode 100755 index 00000000000..ba49863eea4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_52.sh b/test/ntuple_qcd_1000_1500/batch/sge_52.sh new file mode 100755 index 00000000000..2c98ee3e04d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_53.sh b/test/ntuple_qcd_1000_1500/batch/sge_53.sh new file mode 100755 index 00000000000..aacdea07685 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_54.sh b/test/ntuple_qcd_1000_1500/batch/sge_54.sh new file mode 100755 index 00000000000..fe4eefcef21 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_55.sh b/test/ntuple_qcd_1000_1500/batch/sge_55.sh new file mode 100755 index 00000000000..805142776fa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_56.sh b/test/ntuple_qcd_1000_1500/batch/sge_56.sh new file mode 100755 index 00000000000..116772297d4 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_57.sh b/test/ntuple_qcd_1000_1500/batch/sge_57.sh new file mode 100755 index 00000000000..69ba5bcdee9 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_58.sh b/test/ntuple_qcd_1000_1500/batch/sge_58.sh new file mode 100755 index 00000000000..152442e7faa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_59.sh b/test/ntuple_qcd_1000_1500/batch/sge_59.sh new file mode 100755 index 00000000000..d09ed5aadd2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_6.sh b/test/ntuple_qcd_1000_1500/batch/sge_6.sh new file mode 100755 index 00000000000..a06e99532b5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_60.sh b/test/ntuple_qcd_1000_1500/batch/sge_60.sh new file mode 100755 index 00000000000..3ef5d450934 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_61.sh b/test/ntuple_qcd_1000_1500/batch/sge_61.sh new file mode 100755 index 00000000000..e714bc0a161 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_62.sh b/test/ntuple_qcd_1000_1500/batch/sge_62.sh new file mode 100755 index 00000000000..653ad99bf60 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_63.sh b/test/ntuple_qcd_1000_1500/batch/sge_63.sh new file mode 100755 index 00000000000..1f732070aa1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_64.sh b/test/ntuple_qcd_1000_1500/batch/sge_64.sh new file mode 100755 index 00000000000..ed8a708d2a5 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_65.sh b/test/ntuple_qcd_1000_1500/batch/sge_65.sh new file mode 100755 index 00000000000..6eb62bb2040 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_66.sh b/test/ntuple_qcd_1000_1500/batch/sge_66.sh new file mode 100755 index 00000000000..c3ef9a3ea73 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_67.sh b/test/ntuple_qcd_1000_1500/batch/sge_67.sh new file mode 100755 index 00000000000..4efefb68d64 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_68.sh b/test/ntuple_qcd_1000_1500/batch/sge_68.sh new file mode 100755 index 00000000000..3f53a52fa53 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_69.sh b/test/ntuple_qcd_1000_1500/batch/sge_69.sh new file mode 100755 index 00000000000..aa15dc7db17 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_7.sh b/test/ntuple_qcd_1000_1500/batch/sge_7.sh new file mode 100755 index 00000000000..9f5b48b27da --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_70.sh b/test/ntuple_qcd_1000_1500/batch/sge_70.sh new file mode 100755 index 00000000000..ca82f9d439d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_71.sh b/test/ntuple_qcd_1000_1500/batch/sge_71.sh new file mode 100755 index 00000000000..ee29270202f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_72.sh b/test/ntuple_qcd_1000_1500/batch/sge_72.sh new file mode 100755 index 00000000000..c65c0eeb42f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_73.sh b/test/ntuple_qcd_1000_1500/batch/sge_73.sh new file mode 100755 index 00000000000..4b2add02cfa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_74.sh b/test/ntuple_qcd_1000_1500/batch/sge_74.sh new file mode 100755 index 00000000000..8d75d80dd1b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_75.sh b/test/ntuple_qcd_1000_1500/batch/sge_75.sh new file mode 100755 index 00000000000..dc30dc51710 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_76.sh b/test/ntuple_qcd_1000_1500/batch/sge_76.sh new file mode 100755 index 00000000000..31f056b40d0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_77.sh b/test/ntuple_qcd_1000_1500/batch/sge_77.sh new file mode 100755 index 00000000000..05bee5f2845 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=77 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_78.sh b/test/ntuple_qcd_1000_1500/batch/sge_78.sh new file mode 100755 index 00000000000..f5359346dff --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=78 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_79.sh b/test/ntuple_qcd_1000_1500/batch/sge_79.sh new file mode 100755 index 00000000000..068a8a3d6a8 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=79 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_8.sh b/test/ntuple_qcd_1000_1500/batch/sge_8.sh new file mode 100755 index 00000000000..bcaf260bfed --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_80.sh b/test/ntuple_qcd_1000_1500/batch/sge_80.sh new file mode 100755 index 00000000000..539de8b302b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=80 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_81.sh b/test/ntuple_qcd_1000_1500/batch/sge_81.sh new file mode 100755 index 00000000000..d4517ffd0aa --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=81 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_82.sh b/test/ntuple_qcd_1000_1500/batch/sge_82.sh new file mode 100755 index 00000000000..98739c0565a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=82 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_83.sh b/test/ntuple_qcd_1000_1500/batch/sge_83.sh new file mode 100755 index 00000000000..877eaedefd1 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=83 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_84.sh b/test/ntuple_qcd_1000_1500/batch/sge_84.sh new file mode 100755 index 00000000000..bdc02d0ff74 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=84 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_85.sh b/test/ntuple_qcd_1000_1500/batch/sge_85.sh new file mode 100755 index 00000000000..464e8034b88 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=85 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_86.sh b/test/ntuple_qcd_1000_1500/batch/sge_86.sh new file mode 100755 index 00000000000..b00d1a02976 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=86 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_87.sh b/test/ntuple_qcd_1000_1500/batch/sge_87.sh new file mode 100755 index 00000000000..480b7cf472b --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=87 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_88.sh b/test/ntuple_qcd_1000_1500/batch/sge_88.sh new file mode 100755 index 00000000000..26636588680 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=88 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_89.sh b/test/ntuple_qcd_1000_1500/batch/sge_89.sh new file mode 100755 index 00000000000..a8461b772e0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=89 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_9.sh b/test/ntuple_qcd_1000_1500/batch/sge_9.sh new file mode 100755 index 00000000000..ad26dc3b51f --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_90.sh b/test/ntuple_qcd_1000_1500/batch/sge_90.sh new file mode 100755 index 00000000000..393383e4345 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=90 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_91.sh b/test/ntuple_qcd_1000_1500/batch/sge_91.sh new file mode 100755 index 00000000000..30911d10757 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=91 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_92.sh b/test/ntuple_qcd_1000_1500/batch/sge_92.sh new file mode 100755 index 00000000000..98b573abf7d --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=92 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_93.sh b/test/ntuple_qcd_1000_1500/batch/sge_93.sh new file mode 100755 index 00000000000..c3e4fb59422 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=93 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_94.sh b/test/ntuple_qcd_1000_1500/batch/sge_94.sh new file mode 100755 index 00000000000..21f232a70b0 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=94 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_95.sh b/test/ntuple_qcd_1000_1500/batch/sge_95.sh new file mode 100755 index 00000000000..43d6a9e2dff --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=95 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_96.sh b/test/ntuple_qcd_1000_1500/batch/sge_96.sh new file mode 100755 index 00000000000..8c10adfa8e2 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=96 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_97.sh b/test/ntuple_qcd_1000_1500/batch/sge_97.sh new file mode 100755 index 00000000000..683642eb66c --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=97 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_98.sh b/test/ntuple_qcd_1000_1500/batch/sge_98.sh new file mode 100755 index 00000000000..1a5366ea8ce --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=98 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_99.sh b/test/ntuple_qcd_1000_1500/batch/sge_99.sh new file mode 100755 index 00000000000..523ef3ba344 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=99 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batchscript.sh b/test/ntuple_qcd_1000_1500/batchscript.sh new file mode 100755 index 00000000000..d330479a91a --- /dev/null +++ b/test/ntuple_qcd_1000_1500/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_1000_1500" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/condor.sub b/test/ntuple_qcd_1000_1500/condor.sub new file mode 100644 index 00000000000..d1a25c3e311 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 196 + \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/helper b/test/ntuple_qcd_1000_1500/helper new file mode 120000 index 00000000000..6fe107ecd52 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_1000_1500/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/output b/test/ntuple_qcd_1000_1500/output new file mode 120000 index 00000000000..b31a4aa1122 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/sge_sub.sh b/test/ntuple_qcd_1000_1500/sge_sub.sh new file mode 100755 index 00000000000..21b6f49b032 --- /dev/null +++ b/test/ntuple_qcd_1000_1500/sge_sub.sh @@ -0,0 +1,196 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_182.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_183.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_184.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_185.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_186.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_187.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_188.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_189.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_190.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_191.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_192.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_193.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_194.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_195.sh diff --git a/test/ntuple_qcd_100_200/ademoor.cc b/test/ntuple_qcd_100_200/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..c192e3add7900880f7732060d0e95961d2c02aa4 GIT binary patch literal 5609 zcmai$WmFXGw#ON|hpr(8=^k1H0i|O=O1g&b8VTv{6iMlhp+ON4>244Sk%kcoX>ow7 zcfIGm=bp3fxqGeW!~XBRpZ%=o|K*2;iS{P|e;ph-1#Jy}IpyCej-|DYi<_J0|64`> z-SOxA(=4`=Ck$=}|7Vf49}?$108@>ga`V^j$(QU-5(9Th#W!+`fJ_a)siqgiQiMAe>%vD z{)`rf;c;Mw;jwJ{y4EZ%+=JjlvNin*ts?Vjs~=>Uw0b*s)o!G#%*!n)^s9%P^KM+@ zl!puvDU2ckZziE({K;C(r&hMklKo5{dJ`&3p za%*&^o3D?P_|-nFBOX5i zAGP3y^kAAJ5`DX}C9g3#-rvQM2tgN0%U|y(s0;BXbnzWBW?l;-S>166-V&mT0^Wo~ zV#7!vn2nS5)Y(issezkQ;+=>rtQ4WUUrn**i~|OiHz~Q4e&KobQ&h>7tdD?|kH@sl zxGwa@#cA5&B}i5R5ufH9i$o0NSpz*(WLuBHv>aa^GcJ>G)&_kdL#(frr6Xt}CuLmV z15Mc#b!?^cTBNNqfS|!k9A=cwaLcFH%^!1z0%E|hXT-$^`wHffg?fL+PXb&gUsG5dWjk(HhiOJI7H#PSN{Yx3+nzGKWk41$%n7AWL`QMi* z6CP$iWd3$FR;EfUbPc#?HX>yWY9BvFL|XjwYrXS6)+d^bYZ(dQ;`Fs}yK(pc#8juzImZKG7gUv|?>Dzp>=<73M55rMfT;K zB-n^^k>dx!h>eHlLH5H?!ew@|VGJ9&m?V=+mxuK<)y2I_oRzS=qC6SB7?y09t@03yCi8-lsQj^15}SNaqm>{ed%ef5^Uy)Q0!n+ z=~9QbL#m>4^La`O^i3zu4&v@Sog~V4+YODKMAThx*ZCmpk{9hMgP!9s;rox?Wyfr> zVJ5=0FLZ7hs$FnrOmpN(t4=HE&sbbO?isVA)?FZ&zV=zp!3P0Yq@cUANU*x%Od>*Vj4QrnPrtmGotBh>tT>K&ij30@GosHSh1Z=!2 z!@f|5zdStBi%Fc%?8aazIWUKGshF6$pN~0~;)1ff{ns+?ctReXK?T-1qpLhuCK8J$Hompa)g=Jsv3mfw+j zK+rI0;>^7uh3Zz-LySS2)@cP&`2<=)iR4J6>|1$pUF*m#L%>|Jqelg;=RgYrj=fiU zTfkufE+(EOSmgvh*`(x6@0r8o^%z}tl^x$Q}zA`%H4%`p$|?(NN+rYLB#Moh4HJ8gO8X9N$59UjvuvhUpIWr5179G zRib)%KS>m))!zb(;M4geXXw(fwBhH38DYF39)a0!p6KC35IGVnr@!4|oC~<7MkCql z#p(vTFmG;*!e4v}`7X5kV*f+)VdBxYMl2SWM|pnGtP3!H@xgGr68G}EDdbpNo>S3i zMU_`G{?F7X-46ovQz=8}-wK`SqunBXdSI~5L}$I$1K|3Ljgqc8Z^{|-rXEyHw|24z z?MsagyHMvP6jPF>E_c+PlmtxXVaYM|3tzCh(Y z+Z#^RpE16uHEXzn+j=-X$~X9wjv!;>#zGT?lf9(%!`69HZocN)WzTYZV%Qs*FLP6X z1h-GwLT2&!urueJ{nEK>Xrm-)Z@4DX3;38YJ*dn3uoCb(Mjm;PPt)lI3Uv)T@a!!2 z^1egOkE`2vz0KNUln-Mrb0;vvijFv|K{BOIrLtMv`z*EJe((6o=-n)!;ks79verd1 zJ{mMJKIu6@M{o7L^<;!uF@w(*D^N)otKRjpc(L+i$uFSCqpafUa|*7XB4Cz@3JFik zK^n+Bt7e-a+n3IY3S8soUCg`?FPl#Y+TjF(if1K_mkrcnx@pRdVyv&9-%M%TEK$15 z=M5#*K4sWWW02)Kz2_LU*2!Cz6FwX)hTmq**2zRi`h5|Dx-iVVji}}-5cJRyuC()* zLVAD`yoAM>^_lovl+Bj!x*NE!qR2mrQqbP2?;fEAyB6{gvljRP2R`4Fcn2yY?PbcV zOY;+GrGbaI=59B8AviKgD_SFHLCsxJ@4LhkdBubLZKR}hja*DflB(heYnBJF6~MF^ z`zHS1#0M`RTQ_K86gwkke&RXuGNnpy=Mz`#$~5h8K1il_J7EGE@pmtd!`H*@M6^>J z^Q7{go4nWlyl`1ZG}M_>k*eM)xmA{M?61(Rt?!Y-@WSCMscXr3$)Nb@A?sLNev~9-I zk&V;k_O|jAD~ta{U;mj1|1|vz^I=%pdi_>$tZY18`K|2H$bKha{BfY>R-VoLdd{-G zcAWC_*MZxE27*jK^_9ZetTs+l{~G|U5uE=6fMtKK{zm{nmSF&DNEm?p-vE#nLj6ZW zD&Z9FTi|}hJ^K*A*C}-L2 zfxa%zis&~rGswk=Jc-O)ui*Fk={c2GqrO;6d)*87j(u~kVyMq<6FvU(G7H&l;jl!n zHe-7L>exM`jl`)&JTqF#BrvL=^jXW$*!9qY;&-+*(A_?A>1)lc76|R+hqoB;TK>%T zud1NX{(9!TeZ!`Vz#LaNj&OsJOPFlg?%OSdO&;F%mu15Lhh=zaznMMh zH+{$bn`JBz=06&shz>#n`s)>-e|f`ibl3Vl4E@_a%-`rP^BdhI;ZnTAENwwQ{fZ*o zp$q!^FW)H{sx1TaAH`pxFSI0@i6 zR?k2n5l<|4Y>>kR;Dx4d976uN#c5dGiMPt2N#s|eSd9*h2>k$@Ioq(|_;CIDb##-H zauTC3f$ng=M+dC3jMjDFTt(aqUq{Zhz$NQYqFWCM8FBecRudNv zF=Lbr^)Jy|oZ}lDX`3u;HGR3|HB~v7q}9z3Hr9-EYbp7+m%+5PeU)6VmP%q5RN1SV zqqlpd#Z*q|>kDBY?eTd(+~~ivvVUX5bodScYxcXS5*>U0-J?#m8G~uTPrHxHEQnSF zIFXf9u063abryHk9~NKSop~2xMTiWZ4mk6?5^5jgDA8XcdrT8%Hb5HndMlN?d2?U+ zi+3udSyq?Yi2x)NA+iDeIwcc(en?$WACIxTKcLBvaDFA~cvSc_(F{>DRCBO`xj48e zzJ()^XEZUVy7*KsgfD{QmT>jkEiS6n%G)gTpoeen9;B)!KWE|~n)qhb$8Z^&NcD7e zT#nS>^yqc?Y1bwuWT0q7$FO{$slJf!`KT#?8w{<-=T;7laQ>=a>Gbtw<5F_eG1@3R zX88`>j@NMw)@`)!o%U}hXCszR>b~@x8hrklLjNwdVdFpBNHo>l7lqVEy(^laq=4v`_X<5*H09IlDUefhY?f9*dvkngsSAR zS)3>gP!|1>Ie$#AjJYaSYK4>aMA~4}$%5yvV&W}J9Tw%I3bPD$Xeo~m1!B*5Ui0`0 z0K_FImgJw7xrxGQqx$uWDWz4MvG#F#d)V&Au0cq*OMq|u{VsaplbjVSxZPy`+?H0IN~6klohm{WeIcYdcke#T2By_K`3!op-e3RAf%~zTT1jt4gI^ZZ(!Esn@L4bZhMF z166YP_MAdA*7*Cc)+j&w?ZQYe$a;)ockSsh{$nMJ4B8E+#^xi~I8eM|xK)nG|8O*Q zd&ikn#nnG%OWdm5%%v?fKrmeGyRhY5&1%ZTWTfP<(h?Nr{h%f1WcSFCA30cb6eSE73WuPLNnA1tfeF}eGz{8V25p?4Dt%=%vQ9su#J({ zHOqM`e_ZZfZ@x_83uduzMn{{eFy8JNmkez$0ysRdEb7_uk*;={y2n1fT%P~RH-sVm z;OV-Ke6asb{bR-H2jkrWMc}R1+mZMHMbjwW{>Y~5@?XRomavt1&VBG49Hr53Gw{xI zzon!=^1Md@JxW42IRB~~7K~q6v!^RNAQ}*1rEklv#gl}eKTV}#P${Q+b*(N56tGTN z-g#A0ZyNdR5dYogdW*%izy^s+@cqvgP*dhlJEK%vhgqXsIXVZp(UT1ayP<7 z4-+XMUTmUsJ;Aj%#=j=OpEbiERMYX(MeF|*e@=c#@Z_pHQF8D5+slz%N?jq6!uT7w>P|#?PDUtuuLExvSs_^zFW>gwZw5? z=d5^jhX2Dr%6Aq^l|$#AEyRa|OF`_VqRf-{YR&4Ki}*xwgAUxI%>IToQqTENWzcs% zpX9!HUMTNnhEmQ(Z}HCrD3OighN!e9uL9Am?VtkU%3EX2Y~ig3&Up_)0(cQLenn>< zi>h48w9^BPS|{&xP@p>yz-6NqwN-58LP;$G70xdGbj{;g3Q(b#ohNSxZd-?#Li+mXxg* zW1X~W>tp(+b;YH389gJ~6P)q*i`mWfNBrdMwmpw(1$gJND% U*K2beY$0yZkoEBjjX$LLUp;b5Y5)KL literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_100_200/batch/condor_0.sub b/test/ntuple_qcd_100_200/batch/condor_0.sub new file mode 100644 index 00000000000..f28f109d070 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_1.sub b/test/ntuple_qcd_100_200/batch/condor_1.sub new file mode 100644 index 00000000000..5fa9097a78b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_10.sub b/test/ntuple_qcd_100_200/batch/condor_10.sub new file mode 100644 index 00000000000..d2b4f47d214 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_100.sub b/test/ntuple_qcd_100_200/batch/condor_100.sub new file mode 100644 index 00000000000..b6162b074f7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_101.sub b/test/ntuple_qcd_100_200/batch/condor_101.sub new file mode 100644 index 00000000000..27d290015e7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_102.sub b/test/ntuple_qcd_100_200/batch/condor_102.sub new file mode 100644 index 00000000000..4621b58ae07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_103.sub b/test/ntuple_qcd_100_200/batch/condor_103.sub new file mode 100644 index 00000000000..a95535d3d57 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_104.sub b/test/ntuple_qcd_100_200/batch/condor_104.sub new file mode 100644 index 00000000000..2c8d97d6605 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_105.sub b/test/ntuple_qcd_100_200/batch/condor_105.sub new file mode 100644 index 00000000000..415fda14834 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_106.sub b/test/ntuple_qcd_100_200/batch/condor_106.sub new file mode 100644 index 00000000000..fffb9a1029f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_107.sub b/test/ntuple_qcd_100_200/batch/condor_107.sub new file mode 100644 index 00000000000..6e5662acb76 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_108.sub b/test/ntuple_qcd_100_200/batch/condor_108.sub new file mode 100644 index 00000000000..a0905d3f0fa --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_109.sub b/test/ntuple_qcd_100_200/batch/condor_109.sub new file mode 100644 index 00000000000..1b455b745d7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_11.sub b/test/ntuple_qcd_100_200/batch/condor_11.sub new file mode 100644 index 00000000000..659333aac07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_110.sub b/test/ntuple_qcd_100_200/batch/condor_110.sub new file mode 100644 index 00000000000..d4b92add0a4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_111.sub b/test/ntuple_qcd_100_200/batch/condor_111.sub new file mode 100644 index 00000000000..9f95b7d49b3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_112.sub b/test/ntuple_qcd_100_200/batch/condor_112.sub new file mode 100644 index 00000000000..f707c9f6b66 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_113.sub b/test/ntuple_qcd_100_200/batch/condor_113.sub new file mode 100644 index 00000000000..a58284a5643 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_114.sub b/test/ntuple_qcd_100_200/batch/condor_114.sub new file mode 100644 index 00000000000..92aff004590 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_115.sub b/test/ntuple_qcd_100_200/batch/condor_115.sub new file mode 100644 index 00000000000..1e7580db1c4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_116.sub b/test/ntuple_qcd_100_200/batch/condor_116.sub new file mode 100644 index 00000000000..c8d35308e2a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_117.sub b/test/ntuple_qcd_100_200/batch/condor_117.sub new file mode 100644 index 00000000000..45dfebb0c8c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_118.sub b/test/ntuple_qcd_100_200/batch/condor_118.sub new file mode 100644 index 00000000000..268d8c06d2f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_119.sub b/test/ntuple_qcd_100_200/batch/condor_119.sub new file mode 100644 index 00000000000..1e2882af92d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_12.sub b/test/ntuple_qcd_100_200/batch/condor_12.sub new file mode 100644 index 00000000000..064d09c1fee --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_120.sub b/test/ntuple_qcd_100_200/batch/condor_120.sub new file mode 100644 index 00000000000..ed558c19089 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_121.sub b/test/ntuple_qcd_100_200/batch/condor_121.sub new file mode 100644 index 00000000000..adfa881a21a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_122.sub b/test/ntuple_qcd_100_200/batch/condor_122.sub new file mode 100644 index 00000000000..2a60d66ce37 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_123.sub b/test/ntuple_qcd_100_200/batch/condor_123.sub new file mode 100644 index 00000000000..3f9edd008ce --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_124.sub b/test/ntuple_qcd_100_200/batch/condor_124.sub new file mode 100644 index 00000000000..7c7052dc8d8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_125.sub b/test/ntuple_qcd_100_200/batch/condor_125.sub new file mode 100644 index 00000000000..91d7799af84 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_126.sub b/test/ntuple_qcd_100_200/batch/condor_126.sub new file mode 100644 index 00000000000..4a8c83cca1c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_127.sub b/test/ntuple_qcd_100_200/batch/condor_127.sub new file mode 100644 index 00000000000..a935738b73f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_128.sub b/test/ntuple_qcd_100_200/batch/condor_128.sub new file mode 100644 index 00000000000..860942a7a39 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_129.sub b/test/ntuple_qcd_100_200/batch/condor_129.sub new file mode 100644 index 00000000000..ee90baf5738 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_13.sub b/test/ntuple_qcd_100_200/batch/condor_13.sub new file mode 100644 index 00000000000..dcf6abcdd84 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_130.sub b/test/ntuple_qcd_100_200/batch/condor_130.sub new file mode 100644 index 00000000000..7da0e26eb87 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_131.sub b/test/ntuple_qcd_100_200/batch/condor_131.sub new file mode 100644 index 00000000000..531fb13d62d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_132.sub b/test/ntuple_qcd_100_200/batch/condor_132.sub new file mode 100644 index 00000000000..fe7d9ae9624 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_133.sub b/test/ntuple_qcd_100_200/batch/condor_133.sub new file mode 100644 index 00000000000..ecbfc5beaf0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_134.sub b/test/ntuple_qcd_100_200/batch/condor_134.sub new file mode 100644 index 00000000000..0d36ee8aab5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_135.sub b/test/ntuple_qcd_100_200/batch/condor_135.sub new file mode 100644 index 00000000000..0e17939527e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_136.sub b/test/ntuple_qcd_100_200/batch/condor_136.sub new file mode 100644 index 00000000000..bf9b19b74fc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_137.sub b/test/ntuple_qcd_100_200/batch/condor_137.sub new file mode 100644 index 00000000000..41bb37ff5d6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_138.sub b/test/ntuple_qcd_100_200/batch/condor_138.sub new file mode 100644 index 00000000000..4b77b3be3f7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_139.sub b/test/ntuple_qcd_100_200/batch/condor_139.sub new file mode 100644 index 00000000000..5dad162db60 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_139.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.139.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_139.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.139.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_14.sub b/test/ntuple_qcd_100_200/batch/condor_14.sub new file mode 100644 index 00000000000..bfd853b8620 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_140.sub b/test/ntuple_qcd_100_200/batch/condor_140.sub new file mode 100644 index 00000000000..38635b66cc9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_140.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.140.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_140.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.140.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_141.sub b/test/ntuple_qcd_100_200/batch/condor_141.sub new file mode 100644 index 00000000000..250282464d1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_141.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.141.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_141.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.141.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_142.sub b/test/ntuple_qcd_100_200/batch/condor_142.sub new file mode 100644 index 00000000000..c3e768dcb30 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_142.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.142.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_142.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.142.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_143.sub b/test/ntuple_qcd_100_200/batch/condor_143.sub new file mode 100644 index 00000000000..3f94f482c15 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_143.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.143.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_143.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.143.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_144.sub b/test/ntuple_qcd_100_200/batch/condor_144.sub new file mode 100644 index 00000000000..e990ddeca0a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_144.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.144.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_144.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.144.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_145.sub b/test/ntuple_qcd_100_200/batch/condor_145.sub new file mode 100644 index 00000000000..66f427dbf1d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_145.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.145.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_145.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.145.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_146.sub b/test/ntuple_qcd_100_200/batch/condor_146.sub new file mode 100644 index 00000000000..6258564271e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_146.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.146.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_146.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.146.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_147.sub b/test/ntuple_qcd_100_200/batch/condor_147.sub new file mode 100644 index 00000000000..3844d28e445 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_147.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.147.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_147.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.147.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_148.sub b/test/ntuple_qcd_100_200/batch/condor_148.sub new file mode 100644 index 00000000000..d95518990a5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_148.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.148.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_148.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.148.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_149.sub b/test/ntuple_qcd_100_200/batch/condor_149.sub new file mode 100644 index 00000000000..5659e7c1a76 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_149.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.149.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_149.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.149.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_15.sub b/test/ntuple_qcd_100_200/batch/condor_15.sub new file mode 100644 index 00000000000..8ab0aa05763 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_150.sub b/test/ntuple_qcd_100_200/batch/condor_150.sub new file mode 100644 index 00000000000..4e60470d50c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_150.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.150.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_150.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.150.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_151.sub b/test/ntuple_qcd_100_200/batch/condor_151.sub new file mode 100644 index 00000000000..fd9d9201afe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_151.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.151.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_151.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.151.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_152.sub b/test/ntuple_qcd_100_200/batch/condor_152.sub new file mode 100644 index 00000000000..f4666c1fefe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_152.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.152.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_152.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.152.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_153.sub b/test/ntuple_qcd_100_200/batch/condor_153.sub new file mode 100644 index 00000000000..83f82ec042d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_153.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.153.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_153.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.153.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_154.sub b/test/ntuple_qcd_100_200/batch/condor_154.sub new file mode 100644 index 00000000000..b4c675f8d73 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_154.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.154.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_154.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.154.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_155.sub b/test/ntuple_qcd_100_200/batch/condor_155.sub new file mode 100644 index 00000000000..be9f0033f1a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_155.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.155.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_155.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.155.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_156.sub b/test/ntuple_qcd_100_200/batch/condor_156.sub new file mode 100644 index 00000000000..777ce87b211 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_156.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.156.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_156.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.156.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_157.sub b/test/ntuple_qcd_100_200/batch/condor_157.sub new file mode 100644 index 00000000000..ddcb4bcf13d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_157.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.157.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_157.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.157.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_158.sub b/test/ntuple_qcd_100_200/batch/condor_158.sub new file mode 100644 index 00000000000..ce02830f18d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_158.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.158.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_158.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.158.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_159.sub b/test/ntuple_qcd_100_200/batch/condor_159.sub new file mode 100644 index 00000000000..3bdb48b3563 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_159.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.159.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_159.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.159.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_16.sub b/test/ntuple_qcd_100_200/batch/condor_16.sub new file mode 100644 index 00000000000..56cce210646 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_160.sub b/test/ntuple_qcd_100_200/batch/condor_160.sub new file mode 100644 index 00000000000..af150a4010a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_160.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.160.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_160.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.160.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_161.sub b/test/ntuple_qcd_100_200/batch/condor_161.sub new file mode 100644 index 00000000000..8d91abf1287 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_161.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.161.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_161.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.161.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_162.sub b/test/ntuple_qcd_100_200/batch/condor_162.sub new file mode 100644 index 00000000000..c98d12c0485 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_162.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.162.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_162.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.162.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_163.sub b/test/ntuple_qcd_100_200/batch/condor_163.sub new file mode 100644 index 00000000000..96846b3b278 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_163.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.163.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_163.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.163.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_164.sub b/test/ntuple_qcd_100_200/batch/condor_164.sub new file mode 100644 index 00000000000..9fe842ca550 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_164.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.164.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_164.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.164.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_165.sub b/test/ntuple_qcd_100_200/batch/condor_165.sub new file mode 100644 index 00000000000..281ab13b537 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_165.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.165.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_165.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.165.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_166.sub b/test/ntuple_qcd_100_200/batch/condor_166.sub new file mode 100644 index 00000000000..280051dc394 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_166.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.166.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_166.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.166.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_167.sub b/test/ntuple_qcd_100_200/batch/condor_167.sub new file mode 100644 index 00000000000..255df0d55d3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_167.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.167.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_167.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.167.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_168.sub b/test/ntuple_qcd_100_200/batch/condor_168.sub new file mode 100644 index 00000000000..9c9a5fc3b45 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_168.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.168.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_168.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.168.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_169.sub b/test/ntuple_qcd_100_200/batch/condor_169.sub new file mode 100644 index 00000000000..da0a6c245a0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_169.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.169.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_169.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.169.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_17.sub b/test/ntuple_qcd_100_200/batch/condor_17.sub new file mode 100644 index 00000000000..84a69f88742 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_170.sub b/test/ntuple_qcd_100_200/batch/condor_170.sub new file mode 100644 index 00000000000..25737304cb8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_170.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.170.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_170.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.170.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_171.sub b/test/ntuple_qcd_100_200/batch/condor_171.sub new file mode 100644 index 00000000000..95365b9aacb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_171.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.171.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_171.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.171.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_172.sub b/test/ntuple_qcd_100_200/batch/condor_172.sub new file mode 100644 index 00000000000..ce98a657516 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_172.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.172.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_172.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.172.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_173.sub b/test/ntuple_qcd_100_200/batch/condor_173.sub new file mode 100644 index 00000000000..0f422742676 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_173.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.173.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_173.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.173.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_174.sub b/test/ntuple_qcd_100_200/batch/condor_174.sub new file mode 100644 index 00000000000..f53f0b93091 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_174.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.174.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_174.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.174.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_175.sub b/test/ntuple_qcd_100_200/batch/condor_175.sub new file mode 100644 index 00000000000..321ce551d8f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_175.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.175.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_175.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.175.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_176.sub b/test/ntuple_qcd_100_200/batch/condor_176.sub new file mode 100644 index 00000000000..486d51c08d6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_176.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.176.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_176.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.176.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_177.sub b/test/ntuple_qcd_100_200/batch/condor_177.sub new file mode 100644 index 00000000000..f9c1c58f39a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_177.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.177.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_177.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.177.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_178.sub b/test/ntuple_qcd_100_200/batch/condor_178.sub new file mode 100644 index 00000000000..54f830e1598 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_178.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.178.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_178.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.178.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_179.sub b/test/ntuple_qcd_100_200/batch/condor_179.sub new file mode 100644 index 00000000000..af794fa729d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_179.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.179.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_179.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.179.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_18.sub b/test/ntuple_qcd_100_200/batch/condor_18.sub new file mode 100644 index 00000000000..eb0188f9708 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_180.sub b/test/ntuple_qcd_100_200/batch/condor_180.sub new file mode 100644 index 00000000000..30713f2cf09 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_180.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.180.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_180.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.180.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_181.sub b/test/ntuple_qcd_100_200/batch/condor_181.sub new file mode 100644 index 00000000000..cbc0ca8447e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_181.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.181.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_181.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.181.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_182.sub b/test/ntuple_qcd_100_200/batch/condor_182.sub new file mode 100644 index 00000000000..e5fa7508ae7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_182.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.182.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_182.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.182.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_183.sub b/test/ntuple_qcd_100_200/batch/condor_183.sub new file mode 100644 index 00000000000..32656c62495 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_183.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.183.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_183.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.183.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_184.sub b/test/ntuple_qcd_100_200/batch/condor_184.sub new file mode 100644 index 00000000000..a77a341fdb4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_184.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.184.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_184.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.184.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_185.sub b/test/ntuple_qcd_100_200/batch/condor_185.sub new file mode 100644 index 00000000000..a1b8bb6c39c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_185.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.185.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_185.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.185.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_186.sub b/test/ntuple_qcd_100_200/batch/condor_186.sub new file mode 100644 index 00000000000..e149077e148 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_186.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.186.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_186.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.186.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_187.sub b/test/ntuple_qcd_100_200/batch/condor_187.sub new file mode 100644 index 00000000000..74dce79a00d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_187.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.187.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_187.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.187.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_188.sub b/test/ntuple_qcd_100_200/batch/condor_188.sub new file mode 100644 index 00000000000..ed8e6f9a671 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_188.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.188.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_188.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.188.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_189.sub b/test/ntuple_qcd_100_200/batch/condor_189.sub new file mode 100644 index 00000000000..330667e70ec --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_189.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.189.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_189.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.189.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_19.sub b/test/ntuple_qcd_100_200/batch/condor_19.sub new file mode 100644 index 00000000000..4f871a89175 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_190.sub b/test/ntuple_qcd_100_200/batch/condor_190.sub new file mode 100644 index 00000000000..1344b660e2f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_190.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.190.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_190.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.190.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_191.sub b/test/ntuple_qcd_100_200/batch/condor_191.sub new file mode 100644 index 00000000000..bf5151625b4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_191.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.191.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_191.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.191.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_192.sub b/test/ntuple_qcd_100_200/batch/condor_192.sub new file mode 100644 index 00000000000..e653d4a6878 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_192.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.192.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_192.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.192.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_193.sub b/test/ntuple_qcd_100_200/batch/condor_193.sub new file mode 100644 index 00000000000..e0e2f653e26 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_193.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.193.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_193.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.193.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_194.sub b/test/ntuple_qcd_100_200/batch/condor_194.sub new file mode 100644 index 00000000000..c764ea20fd2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_194.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.194.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_194.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.194.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_195.sub b/test/ntuple_qcd_100_200/batch/condor_195.sub new file mode 100644 index 00000000000..eafb0f5535d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_195.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.195.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_195.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.195.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_196.sub b/test/ntuple_qcd_100_200/batch/condor_196.sub new file mode 100644 index 00000000000..ff1779a8354 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_196.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.196.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_196.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.196.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_197.sub b/test/ntuple_qcd_100_200/batch/condor_197.sub new file mode 100644 index 00000000000..f7c4f7c7e2c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_197.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.197.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_197.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.197.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_198.sub b/test/ntuple_qcd_100_200/batch/condor_198.sub new file mode 100644 index 00000000000..f234c5bd4b0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_198.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.198.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_198.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.198.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_199.sub b/test/ntuple_qcd_100_200/batch/condor_199.sub new file mode 100644 index 00000000000..95a0747718b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_199.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.199.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_199.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.199.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_2.sub b/test/ntuple_qcd_100_200/batch/condor_2.sub new file mode 100644 index 00000000000..8f8a3dc68a4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_20.sub b/test/ntuple_qcd_100_200/batch/condor_20.sub new file mode 100644 index 00000000000..4965b8ba1e1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_200.sub b/test/ntuple_qcd_100_200/batch/condor_200.sub new file mode 100644 index 00000000000..de7b7a01fe2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_200.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.200.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_200.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.200.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_201.sub b/test/ntuple_qcd_100_200/batch/condor_201.sub new file mode 100644 index 00000000000..95a18ff57e3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_201.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.201.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_201.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.201.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_202.sub b/test/ntuple_qcd_100_200/batch/condor_202.sub new file mode 100644 index 00000000000..35316f88e1a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_202.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.202.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_202.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.202.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_203.sub b/test/ntuple_qcd_100_200/batch/condor_203.sub new file mode 100644 index 00000000000..1de1045e2cd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_203.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.203.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_203.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.203.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_204.sub b/test/ntuple_qcd_100_200/batch/condor_204.sub new file mode 100644 index 00000000000..c411c23a840 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_204.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.204.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_204.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.204.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_205.sub b/test/ntuple_qcd_100_200/batch/condor_205.sub new file mode 100644 index 00000000000..52f764c9dd0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_205.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.205.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_205.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.205.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_206.sub b/test/ntuple_qcd_100_200/batch/condor_206.sub new file mode 100644 index 00000000000..7ce08292006 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_206.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.206.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_206.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.206.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_207.sub b/test/ntuple_qcd_100_200/batch/condor_207.sub new file mode 100644 index 00000000000..ffc10b02456 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_207.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.207.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_207.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.207.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_208.sub b/test/ntuple_qcd_100_200/batch/condor_208.sub new file mode 100644 index 00000000000..2504fd672fc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_208.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.208.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_208.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.208.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_209.sub b/test/ntuple_qcd_100_200/batch/condor_209.sub new file mode 100644 index 00000000000..480c581b41d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_209.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.209.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_209.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.209.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_21.sub b/test/ntuple_qcd_100_200/batch/condor_21.sub new file mode 100644 index 00000000000..47d27eb163c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_210.sub b/test/ntuple_qcd_100_200/batch/condor_210.sub new file mode 100644 index 00000000000..9d598604519 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_210.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.210.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_210.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.210.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_211.sub b/test/ntuple_qcd_100_200/batch/condor_211.sub new file mode 100644 index 00000000000..ff8ce33fc4a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_211.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.211.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_211.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.211.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_212.sub b/test/ntuple_qcd_100_200/batch/condor_212.sub new file mode 100644 index 00000000000..f2da60a81d2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_212.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.212.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_212.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.212.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_213.sub b/test/ntuple_qcd_100_200/batch/condor_213.sub new file mode 100644 index 00000000000..85a12faa91f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_213.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.213.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_213.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.213.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_214.sub b/test/ntuple_qcd_100_200/batch/condor_214.sub new file mode 100644 index 00000000000..c6ec61a5a74 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_214.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.214.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_214.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.214.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_215.sub b/test/ntuple_qcd_100_200/batch/condor_215.sub new file mode 100644 index 00000000000..eec6d9ae008 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_215.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.215.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_215.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.215.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_216.sub b/test/ntuple_qcd_100_200/batch/condor_216.sub new file mode 100644 index 00000000000..576d4b2abdd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_216.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.216.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_216.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.216.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_217.sub b/test/ntuple_qcd_100_200/batch/condor_217.sub new file mode 100644 index 00000000000..72a1865213f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_217.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.217.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_217.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.217.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_218.sub b/test/ntuple_qcd_100_200/batch/condor_218.sub new file mode 100644 index 00000000000..9188c75f19c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_218.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.218.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_218.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.218.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_219.sub b/test/ntuple_qcd_100_200/batch/condor_219.sub new file mode 100644 index 00000000000..75105985047 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_219.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.219.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_219.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.219.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_22.sub b/test/ntuple_qcd_100_200/batch/condor_22.sub new file mode 100644 index 00000000000..8a1fca1c2e9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_220.sub b/test/ntuple_qcd_100_200/batch/condor_220.sub new file mode 100644 index 00000000000..d2580a430dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_220.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.220.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_220.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.220.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_221.sub b/test/ntuple_qcd_100_200/batch/condor_221.sub new file mode 100644 index 00000000000..a59f8da9373 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_221.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.221.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_221.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.221.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_222.sub b/test/ntuple_qcd_100_200/batch/condor_222.sub new file mode 100644 index 00000000000..9d00cc49532 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_222.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.222.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_222.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.222.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_223.sub b/test/ntuple_qcd_100_200/batch/condor_223.sub new file mode 100644 index 00000000000..6c72b53f489 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_223.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.223.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_223.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.223.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_224.sub b/test/ntuple_qcd_100_200/batch/condor_224.sub new file mode 100644 index 00000000000..3d3f3ed5de8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_224.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.224.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_224.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.224.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_225.sub b/test/ntuple_qcd_100_200/batch/condor_225.sub new file mode 100644 index 00000000000..6319f359bbc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_225.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.225.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_225.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.225.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_226.sub b/test/ntuple_qcd_100_200/batch/condor_226.sub new file mode 100644 index 00000000000..f5dcbe2dd07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_226.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.226.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_226.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.226.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_227.sub b/test/ntuple_qcd_100_200/batch/condor_227.sub new file mode 100644 index 00000000000..ac9bf74c553 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_227.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.227.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_227.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.227.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_228.sub b/test/ntuple_qcd_100_200/batch/condor_228.sub new file mode 100644 index 00000000000..93136b7d007 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_228.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.228.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_228.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.228.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_229.sub b/test/ntuple_qcd_100_200/batch/condor_229.sub new file mode 100644 index 00000000000..90f357f7f52 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_229.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.229.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_229.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.229.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_23.sub b/test/ntuple_qcd_100_200/batch/condor_23.sub new file mode 100644 index 00000000000..87fbd626b49 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_230.sub b/test/ntuple_qcd_100_200/batch/condor_230.sub new file mode 100644 index 00000000000..27faa234c6b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_230.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.230.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_230.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.230.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_231.sub b/test/ntuple_qcd_100_200/batch/condor_231.sub new file mode 100644 index 00000000000..e1e5e7a5a22 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_231.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.231.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_231.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.231.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_232.sub b/test/ntuple_qcd_100_200/batch/condor_232.sub new file mode 100644 index 00000000000..0b537d5fd4e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_232.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.232.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_232.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.232.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_233.sub b/test/ntuple_qcd_100_200/batch/condor_233.sub new file mode 100644 index 00000000000..644e51a8f07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_233.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.233.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_233.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.233.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_234.sub b/test/ntuple_qcd_100_200/batch/condor_234.sub new file mode 100644 index 00000000000..a9c0e54e97c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_234.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.234.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_234.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.234.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_235.sub b/test/ntuple_qcd_100_200/batch/condor_235.sub new file mode 100644 index 00000000000..deb2240754a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_235.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.235.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_235.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.235.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_236.sub b/test/ntuple_qcd_100_200/batch/condor_236.sub new file mode 100644 index 00000000000..6f7bfa69a66 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_236.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.236.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_236.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.236.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_237.sub b/test/ntuple_qcd_100_200/batch/condor_237.sub new file mode 100644 index 00000000000..5716bf45a0a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_237.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.237.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_237.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.237.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_238.sub b/test/ntuple_qcd_100_200/batch/condor_238.sub new file mode 100644 index 00000000000..01f0d45b65b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_238.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.238.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_238.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.238.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_239.sub b/test/ntuple_qcd_100_200/batch/condor_239.sub new file mode 100644 index 00000000000..df16da1cec7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_239.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.239.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_239.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.239.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_24.sub b/test/ntuple_qcd_100_200/batch/condor_24.sub new file mode 100644 index 00000000000..aee4aa2cc1f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_240.sub b/test/ntuple_qcd_100_200/batch/condor_240.sub new file mode 100644 index 00000000000..f71ddcb76e0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_240.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.240.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_240.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.240.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_241.sub b/test/ntuple_qcd_100_200/batch/condor_241.sub new file mode 100644 index 00000000000..731cf8b8e8f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_241.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.241.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_241.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.241.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_242.sub b/test/ntuple_qcd_100_200/batch/condor_242.sub new file mode 100644 index 00000000000..a47fc2d66df --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_242.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.242.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_242.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.242.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_243.sub b/test/ntuple_qcd_100_200/batch/condor_243.sub new file mode 100644 index 00000000000..cffd419df94 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_243.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.243.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_243.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.243.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_244.sub b/test/ntuple_qcd_100_200/batch/condor_244.sub new file mode 100644 index 00000000000..4b795bfa87d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_244.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.244.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_244.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.244.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_245.sub b/test/ntuple_qcd_100_200/batch/condor_245.sub new file mode 100644 index 00000000000..f919082e729 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_245.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.245.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_245.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.245.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_246.sub b/test/ntuple_qcd_100_200/batch/condor_246.sub new file mode 100644 index 00000000000..8f368cd1713 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_246.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.246.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_246.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.246.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_247.sub b/test/ntuple_qcd_100_200/batch/condor_247.sub new file mode 100644 index 00000000000..9615ec04a1b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_247.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.247.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_247.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.247.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_248.sub b/test/ntuple_qcd_100_200/batch/condor_248.sub new file mode 100644 index 00000000000..f4dc9b0d1c1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_248.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.248.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_248.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.248.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_249.sub b/test/ntuple_qcd_100_200/batch/condor_249.sub new file mode 100644 index 00000000000..8b93da6d314 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_249.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.249.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_249.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.249.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_25.sub b/test/ntuple_qcd_100_200/batch/condor_25.sub new file mode 100644 index 00000000000..f5b40460ab8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_250.sub b/test/ntuple_qcd_100_200/batch/condor_250.sub new file mode 100644 index 00000000000..33d789c503c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_250.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.250.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_250.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.250.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_251.sub b/test/ntuple_qcd_100_200/batch/condor_251.sub new file mode 100644 index 00000000000..b9960bda866 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_251.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.251.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_251.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.251.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_252.sub b/test/ntuple_qcd_100_200/batch/condor_252.sub new file mode 100644 index 00000000000..ca13154864a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_252.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.252.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_252.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.252.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_253.sub b/test/ntuple_qcd_100_200/batch/condor_253.sub new file mode 100644 index 00000000000..dae69dfcb2b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_253.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.253.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_253.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.253.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_254.sub b/test/ntuple_qcd_100_200/batch/condor_254.sub new file mode 100644 index 00000000000..d2b70942bfd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_254.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.254.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_254.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.254.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_255.sub b/test/ntuple_qcd_100_200/batch/condor_255.sub new file mode 100644 index 00000000000..745b0fd3eef --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_255.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.255.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_255.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.255.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_256.sub b/test/ntuple_qcd_100_200/batch/condor_256.sub new file mode 100644 index 00000000000..3d602fab1af --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_256.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.256.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_256.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.256.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_257.sub b/test/ntuple_qcd_100_200/batch/condor_257.sub new file mode 100644 index 00000000000..1db4c270bde --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_257.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.257.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_257.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.257.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_258.sub b/test/ntuple_qcd_100_200/batch/condor_258.sub new file mode 100644 index 00000000000..4e590ce903d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_258.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.258.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_258.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.258.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_259.sub b/test/ntuple_qcd_100_200/batch/condor_259.sub new file mode 100644 index 00000000000..62942b6b15d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_259.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.259.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_259.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.259.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_26.sub b/test/ntuple_qcd_100_200/batch/condor_26.sub new file mode 100644 index 00000000000..df6935db8dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_260.sub b/test/ntuple_qcd_100_200/batch/condor_260.sub new file mode 100644 index 00000000000..0b0bf24f7c5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_260.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.260.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_260.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.260.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_261.sub b/test/ntuple_qcd_100_200/batch/condor_261.sub new file mode 100644 index 00000000000..fcf7d118a7b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_261.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.261.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_261.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.261.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_262.sub b/test/ntuple_qcd_100_200/batch/condor_262.sub new file mode 100644 index 00000000000..ec8acf2e86d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_262.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.262.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_262.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.262.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_263.sub b/test/ntuple_qcd_100_200/batch/condor_263.sub new file mode 100644 index 00000000000..3680cc679d3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_263.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.263.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_263.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.263.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_264.sub b/test/ntuple_qcd_100_200/batch/condor_264.sub new file mode 100644 index 00000000000..3f5c6223b06 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_264.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.264.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_264.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.264.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_265.sub b/test/ntuple_qcd_100_200/batch/condor_265.sub new file mode 100644 index 00000000000..b4fcbfda4e2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_265.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.265.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_265.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.265.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_266.sub b/test/ntuple_qcd_100_200/batch/condor_266.sub new file mode 100644 index 00000000000..4fa72a05476 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_266.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.266.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_266.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.266.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_267.sub b/test/ntuple_qcd_100_200/batch/condor_267.sub new file mode 100644 index 00000000000..35f4af618c0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_267.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.267.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_267.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.267.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_268.sub b/test/ntuple_qcd_100_200/batch/condor_268.sub new file mode 100644 index 00000000000..da00253ffc4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_268.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.268.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_268.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.268.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_269.sub b/test/ntuple_qcd_100_200/batch/condor_269.sub new file mode 100644 index 00000000000..5f1b6cdfd12 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_269.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.269.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_269.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.269.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_27.sub b/test/ntuple_qcd_100_200/batch/condor_27.sub new file mode 100644 index 00000000000..291f9290ebc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_270.sub b/test/ntuple_qcd_100_200/batch/condor_270.sub new file mode 100644 index 00000000000..5e399a6a5df --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_270.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.270.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_270.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.270.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_271.sub b/test/ntuple_qcd_100_200/batch/condor_271.sub new file mode 100644 index 00000000000..8bdb71ac219 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_271.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.271.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_271.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.271.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_272.sub b/test/ntuple_qcd_100_200/batch/condor_272.sub new file mode 100644 index 00000000000..1e8f0253c4c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_272.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.272.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_272.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.272.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_273.sub b/test/ntuple_qcd_100_200/batch/condor_273.sub new file mode 100644 index 00000000000..73be1d6f92f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_273.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.273.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_273.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.273.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_274.sub b/test/ntuple_qcd_100_200/batch/condor_274.sub new file mode 100644 index 00000000000..5ed3960967d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_274.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.274.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_274.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.274.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_275.sub b/test/ntuple_qcd_100_200/batch/condor_275.sub new file mode 100644 index 00000000000..e7a4c5f3dfc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_275.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.275.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_275.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.275.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_276.sub b/test/ntuple_qcd_100_200/batch/condor_276.sub new file mode 100644 index 00000000000..c877285c260 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_276.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.276.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_276.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.276.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_277.sub b/test/ntuple_qcd_100_200/batch/condor_277.sub new file mode 100644 index 00000000000..c462f1dec5d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_277.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.277.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_277.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.277.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_278.sub b/test/ntuple_qcd_100_200/batch/condor_278.sub new file mode 100644 index 00000000000..f7336cf2689 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_278.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.278.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_278.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.278.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_279.sub b/test/ntuple_qcd_100_200/batch/condor_279.sub new file mode 100644 index 00000000000..37e46125c07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_279.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.279.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_279.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.279.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_28.sub b/test/ntuple_qcd_100_200/batch/condor_28.sub new file mode 100644 index 00000000000..6aa85f0eaf4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_280.sub b/test/ntuple_qcd_100_200/batch/condor_280.sub new file mode 100644 index 00000000000..a80476da68a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_280.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.280.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_280.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.280.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_281.sub b/test/ntuple_qcd_100_200/batch/condor_281.sub new file mode 100644 index 00000000000..078eac15fa8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_281.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.281.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_281.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.281.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_282.sub b/test/ntuple_qcd_100_200/batch/condor_282.sub new file mode 100644 index 00000000000..f4b9f613869 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_282.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.282.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_282.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.282.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_283.sub b/test/ntuple_qcd_100_200/batch/condor_283.sub new file mode 100644 index 00000000000..1f522ec94c4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_283.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.283.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_283.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.283.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_284.sub b/test/ntuple_qcd_100_200/batch/condor_284.sub new file mode 100644 index 00000000000..6da896cc4b3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_284.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.284.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_284.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.284.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_285.sub b/test/ntuple_qcd_100_200/batch/condor_285.sub new file mode 100644 index 00000000000..7d0b92eace1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_285.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.285.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_285.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.285.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_286.sub b/test/ntuple_qcd_100_200/batch/condor_286.sub new file mode 100644 index 00000000000..aeb22f21a24 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_286.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.286.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_286.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.286.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_287.sub b/test/ntuple_qcd_100_200/batch/condor_287.sub new file mode 100644 index 00000000000..bfcf781b299 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_287.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.287.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_287.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.287.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_288.sub b/test/ntuple_qcd_100_200/batch/condor_288.sub new file mode 100644 index 00000000000..f5e778500d8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_288.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.288.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_288.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.288.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_289.sub b/test/ntuple_qcd_100_200/batch/condor_289.sub new file mode 100644 index 00000000000..63e7d4b1e64 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_289.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.289.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_289.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.289.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_29.sub b/test/ntuple_qcd_100_200/batch/condor_29.sub new file mode 100644 index 00000000000..5102ec43062 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_290.sub b/test/ntuple_qcd_100_200/batch/condor_290.sub new file mode 100644 index 00000000000..c470f3678ed --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_290.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.290.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_290.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.290.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_291.sub b/test/ntuple_qcd_100_200/batch/condor_291.sub new file mode 100644 index 00000000000..6a419a7824b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_291.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.291.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_291.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.291.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_292.sub b/test/ntuple_qcd_100_200/batch/condor_292.sub new file mode 100644 index 00000000000..8dd6748b4dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_292.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.292.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_292.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.292.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_293.sub b/test/ntuple_qcd_100_200/batch/condor_293.sub new file mode 100644 index 00000000000..8cf6a9cc5d1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_293.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.293.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_293.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.293.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_294.sub b/test/ntuple_qcd_100_200/batch/condor_294.sub new file mode 100644 index 00000000000..3ec34985e69 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_294.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.294.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_294.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.294.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_295.sub b/test/ntuple_qcd_100_200/batch/condor_295.sub new file mode 100644 index 00000000000..1888edb2ad3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_295.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.295.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_295.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.295.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_296.sub b/test/ntuple_qcd_100_200/batch/condor_296.sub new file mode 100644 index 00000000000..9f31d7a968f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_296.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.296.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_296.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.296.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_297.sub b/test/ntuple_qcd_100_200/batch/condor_297.sub new file mode 100644 index 00000000000..1f6e18f1f51 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_297.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.297.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_297.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.297.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_298.sub b/test/ntuple_qcd_100_200/batch/condor_298.sub new file mode 100644 index 00000000000..5f820b4e30f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_298.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.298.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_298.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.298.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_299.sub b/test/ntuple_qcd_100_200/batch/condor_299.sub new file mode 100644 index 00000000000..9600945b9db --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_299.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.299.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_299.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.299.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_3.sub b/test/ntuple_qcd_100_200/batch/condor_3.sub new file mode 100644 index 00000000000..b46a16d5297 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_30.sub b/test/ntuple_qcd_100_200/batch/condor_30.sub new file mode 100644 index 00000000000..d3d013c3ec6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_300.sub b/test/ntuple_qcd_100_200/batch/condor_300.sub new file mode 100644 index 00000000000..669a1c80a45 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_300.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.300.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_300.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.300.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_301.sub b/test/ntuple_qcd_100_200/batch/condor_301.sub new file mode 100644 index 00000000000..831f50d0bb8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_301.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.301.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_301.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.301.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_302.sub b/test/ntuple_qcd_100_200/batch/condor_302.sub new file mode 100644 index 00000000000..e145b7d021f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_302.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.302.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_302.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.302.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_303.sub b/test/ntuple_qcd_100_200/batch/condor_303.sub new file mode 100644 index 00000000000..58e2c4e0f00 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_303.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.303.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_303.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.303.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_304.sub b/test/ntuple_qcd_100_200/batch/condor_304.sub new file mode 100644 index 00000000000..0639a33cf87 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_304.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.304.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_304.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.304.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_305.sub b/test/ntuple_qcd_100_200/batch/condor_305.sub new file mode 100644 index 00000000000..b720e8036ac --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_305.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.305.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_305.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.305.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_306.sub b/test/ntuple_qcd_100_200/batch/condor_306.sub new file mode 100644 index 00000000000..89246fbcab8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_306.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.306.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_306.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.306.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_307.sub b/test/ntuple_qcd_100_200/batch/condor_307.sub new file mode 100644 index 00000000000..9eea1c5fc6e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_307.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.307.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_307.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.307.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_308.sub b/test/ntuple_qcd_100_200/batch/condor_308.sub new file mode 100644 index 00000000000..794324fd533 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_308.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.308.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_308.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.308.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_309.sub b/test/ntuple_qcd_100_200/batch/condor_309.sub new file mode 100644 index 00000000000..fb35f791828 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_309.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.309.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_309.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.309.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_31.sub b/test/ntuple_qcd_100_200/batch/condor_31.sub new file mode 100644 index 00000000000..f275d81527f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_310.sub b/test/ntuple_qcd_100_200/batch/condor_310.sub new file mode 100644 index 00000000000..e408fe7c0bd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_310.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.310.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_310.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.310.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_311.sub b/test/ntuple_qcd_100_200/batch/condor_311.sub new file mode 100644 index 00000000000..99ff59e9baf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_311.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.311.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_311.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.311.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_312.sub b/test/ntuple_qcd_100_200/batch/condor_312.sub new file mode 100644 index 00000000000..f64eb08db25 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_312.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.312.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_312.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.312.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_313.sub b/test/ntuple_qcd_100_200/batch/condor_313.sub new file mode 100644 index 00000000000..044dd105fb6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_313.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.313.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_313.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.313.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_314.sub b/test/ntuple_qcd_100_200/batch/condor_314.sub new file mode 100644 index 00000000000..4ca3a38b6f4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_314.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.314.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_314.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.314.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_315.sub b/test/ntuple_qcd_100_200/batch/condor_315.sub new file mode 100644 index 00000000000..4b9f85c2b27 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_315.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.315.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_315.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.315.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_316.sub b/test/ntuple_qcd_100_200/batch/condor_316.sub new file mode 100644 index 00000000000..a8369a65cdb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_316.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.316.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_316.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.316.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_317.sub b/test/ntuple_qcd_100_200/batch/condor_317.sub new file mode 100644 index 00000000000..c532458702c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_317.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.317.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_317.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.317.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_318.sub b/test/ntuple_qcd_100_200/batch/condor_318.sub new file mode 100644 index 00000000000..216f554c53a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_318.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.318.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_318.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.318.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_319.sub b/test/ntuple_qcd_100_200/batch/condor_319.sub new file mode 100644 index 00000000000..02a29fd2300 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_319.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.319.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_319.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.319.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_32.sub b/test/ntuple_qcd_100_200/batch/condor_32.sub new file mode 100644 index 00000000000..7f67637a444 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_320.sub b/test/ntuple_qcd_100_200/batch/condor_320.sub new file mode 100644 index 00000000000..349873d2be8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_320.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.320.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_320.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.320.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_321.sub b/test/ntuple_qcd_100_200/batch/condor_321.sub new file mode 100644 index 00000000000..4a43b4880dd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_321.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.321.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_321.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.321.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_322.sub b/test/ntuple_qcd_100_200/batch/condor_322.sub new file mode 100644 index 00000000000..1abb4c603f6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_322.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.322.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_322.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.322.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_323.sub b/test/ntuple_qcd_100_200/batch/condor_323.sub new file mode 100644 index 00000000000..5da87aa79c3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_323.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.323.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_323.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.323.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_324.sub b/test/ntuple_qcd_100_200/batch/condor_324.sub new file mode 100644 index 00000000000..a79a24a0ecf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_324.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.324.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_324.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.324.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_325.sub b/test/ntuple_qcd_100_200/batch/condor_325.sub new file mode 100644 index 00000000000..67fb4adf36d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_325.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.325.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_325.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.325.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_326.sub b/test/ntuple_qcd_100_200/batch/condor_326.sub new file mode 100644 index 00000000000..35d4f592327 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_326.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.326.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_326.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.326.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_327.sub b/test/ntuple_qcd_100_200/batch/condor_327.sub new file mode 100644 index 00000000000..2b1abfd8ddf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_327.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.327.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_327.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.327.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_328.sub b/test/ntuple_qcd_100_200/batch/condor_328.sub new file mode 100644 index 00000000000..f2cda5f5007 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_328.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.328.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_328.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.328.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_329.sub b/test/ntuple_qcd_100_200/batch/condor_329.sub new file mode 100644 index 00000000000..248aa768763 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_329.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.329.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_329.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.329.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_33.sub b/test/ntuple_qcd_100_200/batch/condor_33.sub new file mode 100644 index 00000000000..d02b946e11b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_330.sub b/test/ntuple_qcd_100_200/batch/condor_330.sub new file mode 100644 index 00000000000..47623e16ee6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_330.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.330.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_330.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.330.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_331.sub b/test/ntuple_qcd_100_200/batch/condor_331.sub new file mode 100644 index 00000000000..dce336e7402 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_331.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.331.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_331.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.331.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_332.sub b/test/ntuple_qcd_100_200/batch/condor_332.sub new file mode 100644 index 00000000000..e26b6cc5f88 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_332.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.332.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_332.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.332.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_333.sub b/test/ntuple_qcd_100_200/batch/condor_333.sub new file mode 100644 index 00000000000..b785a701c60 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_333.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.333.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_333.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.333.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_334.sub b/test/ntuple_qcd_100_200/batch/condor_334.sub new file mode 100644 index 00000000000..9170bc31416 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_334.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.334.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_334.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.334.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_335.sub b/test/ntuple_qcd_100_200/batch/condor_335.sub new file mode 100644 index 00000000000..95977fb5e86 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_335.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.335.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_335.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.335.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_336.sub b/test/ntuple_qcd_100_200/batch/condor_336.sub new file mode 100644 index 00000000000..c4a9f7e31a8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_336.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.336.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_336.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.336.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_337.sub b/test/ntuple_qcd_100_200/batch/condor_337.sub new file mode 100644 index 00000000000..4a93ef3f606 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_337.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.337.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_337.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.337.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_338.sub b/test/ntuple_qcd_100_200/batch/condor_338.sub new file mode 100644 index 00000000000..042a32aa069 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_338.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.338.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_338.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.338.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_339.sub b/test/ntuple_qcd_100_200/batch/condor_339.sub new file mode 100644 index 00000000000..468c6751c9c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_339.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.339.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_339.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.339.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_34.sub b/test/ntuple_qcd_100_200/batch/condor_34.sub new file mode 100644 index 00000000000..0bf5677afe9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_340.sub b/test/ntuple_qcd_100_200/batch/condor_340.sub new file mode 100644 index 00000000000..93ef62bacb5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_340.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.340.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_340.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.340.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_341.sub b/test/ntuple_qcd_100_200/batch/condor_341.sub new file mode 100644 index 00000000000..d82218855fe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_341.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.341.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_341.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.341.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_342.sub b/test/ntuple_qcd_100_200/batch/condor_342.sub new file mode 100644 index 00000000000..6e2c64af51d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_342.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.342.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_342.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.342.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_343.sub b/test/ntuple_qcd_100_200/batch/condor_343.sub new file mode 100644 index 00000000000..c418b1c5a6d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_343.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.343.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_343.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.343.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_344.sub b/test/ntuple_qcd_100_200/batch/condor_344.sub new file mode 100644 index 00000000000..afa568a1314 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_344.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.344.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_344.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.344.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_345.sub b/test/ntuple_qcd_100_200/batch/condor_345.sub new file mode 100644 index 00000000000..1c5a5c9e8df --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_345.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.345.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_345.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.345.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_346.sub b/test/ntuple_qcd_100_200/batch/condor_346.sub new file mode 100644 index 00000000000..4cd1aba1fde --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_346.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.346.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_346.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.346.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_347.sub b/test/ntuple_qcd_100_200/batch/condor_347.sub new file mode 100644 index 00000000000..2673c0df115 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_347.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.347.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_347.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.347.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_348.sub b/test/ntuple_qcd_100_200/batch/condor_348.sub new file mode 100644 index 00000000000..0342dde82c8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_348.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.348.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_348.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.348.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_349.sub b/test/ntuple_qcd_100_200/batch/condor_349.sub new file mode 100644 index 00000000000..656d15c20c6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_349.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.349.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_349.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.349.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_35.sub b/test/ntuple_qcd_100_200/batch/condor_35.sub new file mode 100644 index 00000000000..dee7d68a6ee --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_350.sub b/test/ntuple_qcd_100_200/batch/condor_350.sub new file mode 100644 index 00000000000..71d98f9417d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_350.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.350.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_350.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.350.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_351.sub b/test/ntuple_qcd_100_200/batch/condor_351.sub new file mode 100644 index 00000000000..5a4d245f500 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_351.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.351.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_351.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.351.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_352.sub b/test/ntuple_qcd_100_200/batch/condor_352.sub new file mode 100644 index 00000000000..4e578a83651 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_352.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.352.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_352.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.352.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_353.sub b/test/ntuple_qcd_100_200/batch/condor_353.sub new file mode 100644 index 00000000000..407f8954210 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_353.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.353.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_353.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.353.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_354.sub b/test/ntuple_qcd_100_200/batch/condor_354.sub new file mode 100644 index 00000000000..01b0bf031a5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_354.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.354.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_354.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.354.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_355.sub b/test/ntuple_qcd_100_200/batch/condor_355.sub new file mode 100644 index 00000000000..03ee66d3aa2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_355.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.355.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_355.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.355.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_356.sub b/test/ntuple_qcd_100_200/batch/condor_356.sub new file mode 100644 index 00000000000..a1d7937742d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_356.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.356.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_356.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.356.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_357.sub b/test/ntuple_qcd_100_200/batch/condor_357.sub new file mode 100644 index 00000000000..ddbaa3a994f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_357.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.357.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_357.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.357.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_358.sub b/test/ntuple_qcd_100_200/batch/condor_358.sub new file mode 100644 index 00000000000..919a444d9b8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_358.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.358.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_358.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.358.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_359.sub b/test/ntuple_qcd_100_200/batch/condor_359.sub new file mode 100644 index 00000000000..2b6e8703b93 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_359.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.359.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_359.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.359.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_36.sub b/test/ntuple_qcd_100_200/batch/condor_36.sub new file mode 100644 index 00000000000..9fa8429ff2a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_360.sub b/test/ntuple_qcd_100_200/batch/condor_360.sub new file mode 100644 index 00000000000..76e64fd240e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_360.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.360.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_360.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.360.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_361.sub b/test/ntuple_qcd_100_200/batch/condor_361.sub new file mode 100644 index 00000000000..50063f391cd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_361.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.361.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_361.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.361.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_362.sub b/test/ntuple_qcd_100_200/batch/condor_362.sub new file mode 100644 index 00000000000..86c91be855d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_362.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.362.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_362.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.362.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_363.sub b/test/ntuple_qcd_100_200/batch/condor_363.sub new file mode 100644 index 00000000000..874ccd5b16f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_363.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.363.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_363.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.363.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_364.sub b/test/ntuple_qcd_100_200/batch/condor_364.sub new file mode 100644 index 00000000000..1deeada9e41 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_364.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.364.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_364.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.364.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_365.sub b/test/ntuple_qcd_100_200/batch/condor_365.sub new file mode 100644 index 00000000000..4413723f837 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_365.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.365.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_365.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.365.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_366.sub b/test/ntuple_qcd_100_200/batch/condor_366.sub new file mode 100644 index 00000000000..6dafa617696 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_366.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.366.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_366.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.366.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_367.sub b/test/ntuple_qcd_100_200/batch/condor_367.sub new file mode 100644 index 00000000000..15f61cde5dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_367.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.367.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_367.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.367.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_368.sub b/test/ntuple_qcd_100_200/batch/condor_368.sub new file mode 100644 index 00000000000..df2fbd7cea7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_368.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.368.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_368.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.368.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_369.sub b/test/ntuple_qcd_100_200/batch/condor_369.sub new file mode 100644 index 00000000000..c5f5eea9168 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_369.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.369.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_369.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.369.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_37.sub b/test/ntuple_qcd_100_200/batch/condor_37.sub new file mode 100644 index 00000000000..e7d9d18353a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_370.sub b/test/ntuple_qcd_100_200/batch/condor_370.sub new file mode 100644 index 00000000000..0704d274765 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_370.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.370.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_370.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.370.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_371.sub b/test/ntuple_qcd_100_200/batch/condor_371.sub new file mode 100644 index 00000000000..3d4ce641547 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_371.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.371.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_371.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.371.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_372.sub b/test/ntuple_qcd_100_200/batch/condor_372.sub new file mode 100644 index 00000000000..c6147ecaaf7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_372.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.372.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_372.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.372.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_373.sub b/test/ntuple_qcd_100_200/batch/condor_373.sub new file mode 100644 index 00000000000..5a0d1c7aae7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_373.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.373.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_373.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.373.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_374.sub b/test/ntuple_qcd_100_200/batch/condor_374.sub new file mode 100644 index 00000000000..6c1c5f40a8f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_374.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.374.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_374.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.374.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_375.sub b/test/ntuple_qcd_100_200/batch/condor_375.sub new file mode 100644 index 00000000000..51067d952fa --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_375.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.375.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_375.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.375.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_376.sub b/test/ntuple_qcd_100_200/batch/condor_376.sub new file mode 100644 index 00000000000..4ffa550b749 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_376.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.376.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_376.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.376.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_377.sub b/test/ntuple_qcd_100_200/batch/condor_377.sub new file mode 100644 index 00000000000..8bbc909c32c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_377.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.377.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_377.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.377.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_378.sub b/test/ntuple_qcd_100_200/batch/condor_378.sub new file mode 100644 index 00000000000..8844ba5b252 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_378.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.378.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_378.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.378.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_379.sub b/test/ntuple_qcd_100_200/batch/condor_379.sub new file mode 100644 index 00000000000..79fd5c0af1a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_379.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.379.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_379.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.379.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_38.sub b/test/ntuple_qcd_100_200/batch/condor_38.sub new file mode 100644 index 00000000000..d3254b9f969 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_380.sub b/test/ntuple_qcd_100_200/batch/condor_380.sub new file mode 100644 index 00000000000..b158368f290 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_380.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.380.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_380.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.380.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_381.sub b/test/ntuple_qcd_100_200/batch/condor_381.sub new file mode 100644 index 00000000000..e881164abff --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_381.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.381.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_381.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.381.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_382.sub b/test/ntuple_qcd_100_200/batch/condor_382.sub new file mode 100644 index 00000000000..c79c9e1f4b7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_382.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.382.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_382.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.382.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_383.sub b/test/ntuple_qcd_100_200/batch/condor_383.sub new file mode 100644 index 00000000000..8d65f443e6b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_383.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.383.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_383.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.383.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_384.sub b/test/ntuple_qcd_100_200/batch/condor_384.sub new file mode 100644 index 00000000000..d3c1bcf5e68 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_384.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.384.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_384.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.384.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_385.sub b/test/ntuple_qcd_100_200/batch/condor_385.sub new file mode 100644 index 00000000000..df28ea36f6e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_385.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.385.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_385.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.385.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_386.sub b/test/ntuple_qcd_100_200/batch/condor_386.sub new file mode 100644 index 00000000000..52166cdb2e9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_386.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.386.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_386.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.386.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_387.sub b/test/ntuple_qcd_100_200/batch/condor_387.sub new file mode 100644 index 00000000000..59b8474846a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_387.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.387.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_387.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.387.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_388.sub b/test/ntuple_qcd_100_200/batch/condor_388.sub new file mode 100644 index 00000000000..e56d23efe96 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_388.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.388.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_388.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.388.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_389.sub b/test/ntuple_qcd_100_200/batch/condor_389.sub new file mode 100644 index 00000000000..3facf62e27d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_389.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.389.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_389.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.389.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_39.sub b/test/ntuple_qcd_100_200/batch/condor_39.sub new file mode 100644 index 00000000000..81de555d0bc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_390.sub b/test/ntuple_qcd_100_200/batch/condor_390.sub new file mode 100644 index 00000000000..df46b72fbe6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_390.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.390.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_390.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.390.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_391.sub b/test/ntuple_qcd_100_200/batch/condor_391.sub new file mode 100644 index 00000000000..2fb0e2b151e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_391.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.391.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_391.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.391.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_392.sub b/test/ntuple_qcd_100_200/batch/condor_392.sub new file mode 100644 index 00000000000..88a3df584dd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_392.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.392.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_392.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.392.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_393.sub b/test/ntuple_qcd_100_200/batch/condor_393.sub new file mode 100644 index 00000000000..18b4eef9890 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_393.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.393.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_393.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.393.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_394.sub b/test/ntuple_qcd_100_200/batch/condor_394.sub new file mode 100644 index 00000000000..744ee43a450 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_394.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.394.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_394.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.394.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_395.sub b/test/ntuple_qcd_100_200/batch/condor_395.sub new file mode 100644 index 00000000000..3cc20300146 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_395.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.395.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_395.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.395.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_396.sub b/test/ntuple_qcd_100_200/batch/condor_396.sub new file mode 100644 index 00000000000..df6d6fa481a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_396.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.396.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_396.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.396.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_397.sub b/test/ntuple_qcd_100_200/batch/condor_397.sub new file mode 100644 index 00000000000..03eee608219 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_397.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.397.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_397.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.397.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_398.sub b/test/ntuple_qcd_100_200/batch/condor_398.sub new file mode 100644 index 00000000000..8f9f06159f6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_398.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.398.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_398.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.398.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_399.sub b/test/ntuple_qcd_100_200/batch/condor_399.sub new file mode 100644 index 00000000000..a11d29eaebf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_399.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.399.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_399.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.399.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_4.sub b/test/ntuple_qcd_100_200/batch/condor_4.sub new file mode 100644 index 00000000000..02c68c56e02 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_40.sub b/test/ntuple_qcd_100_200/batch/condor_40.sub new file mode 100644 index 00000000000..291c4658fe8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_400.sub b/test/ntuple_qcd_100_200/batch/condor_400.sub new file mode 100644 index 00000000000..4e26fec6c7e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_400.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.400.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_400.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.400.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_401.sub b/test/ntuple_qcd_100_200/batch/condor_401.sub new file mode 100644 index 00000000000..4b0d26ef5f2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_401.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.401.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_401.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.401.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_402.sub b/test/ntuple_qcd_100_200/batch/condor_402.sub new file mode 100644 index 00000000000..04e4c2946d2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_402.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.402.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_402.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.402.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_403.sub b/test/ntuple_qcd_100_200/batch/condor_403.sub new file mode 100644 index 00000000000..888dd46dd4f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_403.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.403.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_403.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.403.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_404.sub b/test/ntuple_qcd_100_200/batch/condor_404.sub new file mode 100644 index 00000000000..1e4d842139f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_404.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.404.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_404.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.404.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_405.sub b/test/ntuple_qcd_100_200/batch/condor_405.sub new file mode 100644 index 00000000000..ed550f98318 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_405.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.405.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_405.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.405.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_406.sub b/test/ntuple_qcd_100_200/batch/condor_406.sub new file mode 100644 index 00000000000..306d3c916f4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_406.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.406.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_406.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.406.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_407.sub b/test/ntuple_qcd_100_200/batch/condor_407.sub new file mode 100644 index 00000000000..1919bb2d9fe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_407.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.407.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_407.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.407.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_408.sub b/test/ntuple_qcd_100_200/batch/condor_408.sub new file mode 100644 index 00000000000..597eff1a10f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_408.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.408.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_408.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.408.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_409.sub b/test/ntuple_qcd_100_200/batch/condor_409.sub new file mode 100644 index 00000000000..23ddd2736b4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_409.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.409.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_409.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.409.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_41.sub b/test/ntuple_qcd_100_200/batch/condor_41.sub new file mode 100644 index 00000000000..e8c41c5f6b2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_410.sub b/test/ntuple_qcd_100_200/batch/condor_410.sub new file mode 100644 index 00000000000..8a1cf60a2ce --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_410.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.410.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_410.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.410.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_411.sub b/test/ntuple_qcd_100_200/batch/condor_411.sub new file mode 100644 index 00000000000..68d93df4115 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_411.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.411.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_411.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.411.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_412.sub b/test/ntuple_qcd_100_200/batch/condor_412.sub new file mode 100644 index 00000000000..99c1d625f68 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_412.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.412.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_412.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.412.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_413.sub b/test/ntuple_qcd_100_200/batch/condor_413.sub new file mode 100644 index 00000000000..9c8d2f957ef --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_413.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.413.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_413.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.413.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_414.sub b/test/ntuple_qcd_100_200/batch/condor_414.sub new file mode 100644 index 00000000000..361e2e4bdcd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_414.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.414.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_414.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.414.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_415.sub b/test/ntuple_qcd_100_200/batch/condor_415.sub new file mode 100644 index 00000000000..9fec6deda9f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_415.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.415.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_415.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.415.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_416.sub b/test/ntuple_qcd_100_200/batch/condor_416.sub new file mode 100644 index 00000000000..e373188c938 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_416.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.416.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_416.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.416.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_417.sub b/test/ntuple_qcd_100_200/batch/condor_417.sub new file mode 100644 index 00000000000..a4fd65fc516 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_417.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.417.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_417.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.417.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_418.sub b/test/ntuple_qcd_100_200/batch/condor_418.sub new file mode 100644 index 00000000000..08a7ddf7bd4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_418.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.418.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_418.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.418.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_419.sub b/test/ntuple_qcd_100_200/batch/condor_419.sub new file mode 100644 index 00000000000..e067de3e8bd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_419.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.419.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_419.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.419.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_42.sub b/test/ntuple_qcd_100_200/batch/condor_42.sub new file mode 100644 index 00000000000..4604d16125d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_420.sub b/test/ntuple_qcd_100_200/batch/condor_420.sub new file mode 100644 index 00000000000..f6eea55adb5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_420.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.420.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_420.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.420.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_421.sub b/test/ntuple_qcd_100_200/batch/condor_421.sub new file mode 100644 index 00000000000..a04a25830e0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_421.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.421.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_421.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.421.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_422.sub b/test/ntuple_qcd_100_200/batch/condor_422.sub new file mode 100644 index 00000000000..1ee13e880c9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_422.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.422.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_422.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.422.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_423.sub b/test/ntuple_qcd_100_200/batch/condor_423.sub new file mode 100644 index 00000000000..d833076c743 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_423.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.423.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_423.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.423.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_424.sub b/test/ntuple_qcd_100_200/batch/condor_424.sub new file mode 100644 index 00000000000..ace0872e9f4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_424.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.424.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_424.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.424.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_425.sub b/test/ntuple_qcd_100_200/batch/condor_425.sub new file mode 100644 index 00000000000..51e47071fa0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_425.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.425.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_425.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.425.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_426.sub b/test/ntuple_qcd_100_200/batch/condor_426.sub new file mode 100644 index 00000000000..c1b26892e85 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_426.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.426.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_426.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.426.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_427.sub b/test/ntuple_qcd_100_200/batch/condor_427.sub new file mode 100644 index 00000000000..fada5ab337d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_427.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.427.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_427.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.427.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_428.sub b/test/ntuple_qcd_100_200/batch/condor_428.sub new file mode 100644 index 00000000000..d81e4502db2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_428.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.428.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_428.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.428.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_429.sub b/test/ntuple_qcd_100_200/batch/condor_429.sub new file mode 100644 index 00000000000..402311da5cf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_429.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.429.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_429.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.429.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_43.sub b/test/ntuple_qcd_100_200/batch/condor_43.sub new file mode 100644 index 00000000000..345cac9d4d8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_430.sub b/test/ntuple_qcd_100_200/batch/condor_430.sub new file mode 100644 index 00000000000..33ce56f8bab --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_430.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.430.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_430.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.430.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_431.sub b/test/ntuple_qcd_100_200/batch/condor_431.sub new file mode 100644 index 00000000000..f6ca3ff23f1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_431.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.431.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_431.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.431.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_432.sub b/test/ntuple_qcd_100_200/batch/condor_432.sub new file mode 100644 index 00000000000..6d618db8622 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_432.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.432.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_432.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.432.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_433.sub b/test/ntuple_qcd_100_200/batch/condor_433.sub new file mode 100644 index 00000000000..f0c66e893a2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_433.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.433.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_433.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.433.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_434.sub b/test/ntuple_qcd_100_200/batch/condor_434.sub new file mode 100644 index 00000000000..a251adadac4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_434.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.434.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_434.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.434.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_435.sub b/test/ntuple_qcd_100_200/batch/condor_435.sub new file mode 100644 index 00000000000..0f603e2df93 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_435.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.435.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_435.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.435.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_436.sub b/test/ntuple_qcd_100_200/batch/condor_436.sub new file mode 100644 index 00000000000..671ed7c1392 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_436.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.436.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_436.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.436.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_437.sub b/test/ntuple_qcd_100_200/batch/condor_437.sub new file mode 100644 index 00000000000..ac25c3deeb8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_437.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.437.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_437.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.437.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_438.sub b/test/ntuple_qcd_100_200/batch/condor_438.sub new file mode 100644 index 00000000000..ce2df726e75 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_438.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.438.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_438.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.438.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_439.sub b/test/ntuple_qcd_100_200/batch/condor_439.sub new file mode 100644 index 00000000000..c773e32e5e0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_439.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.439.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_439.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.439.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_44.sub b/test/ntuple_qcd_100_200/batch/condor_44.sub new file mode 100644 index 00000000000..1a928f474ce --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_440.sub b/test/ntuple_qcd_100_200/batch/condor_440.sub new file mode 100644 index 00000000000..37b51a38274 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_440.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.440.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_440.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.440.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_441.sub b/test/ntuple_qcd_100_200/batch/condor_441.sub new file mode 100644 index 00000000000..3861db3475a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_441.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.441.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_441.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.441.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_442.sub b/test/ntuple_qcd_100_200/batch/condor_442.sub new file mode 100644 index 00000000000..3fb95681c86 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_442.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.442.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_442.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.442.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_443.sub b/test/ntuple_qcd_100_200/batch/condor_443.sub new file mode 100644 index 00000000000..51c1fcf51c1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_443.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.443.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_443.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.443.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_444.sub b/test/ntuple_qcd_100_200/batch/condor_444.sub new file mode 100644 index 00000000000..09ee443c4bd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_444.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.444.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_444.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.444.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_445.sub b/test/ntuple_qcd_100_200/batch/condor_445.sub new file mode 100644 index 00000000000..36d5633f008 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_445.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.445.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_445.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.445.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_446.sub b/test/ntuple_qcd_100_200/batch/condor_446.sub new file mode 100644 index 00000000000..a045d606761 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_446.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.446.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_446.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.446.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_447.sub b/test/ntuple_qcd_100_200/batch/condor_447.sub new file mode 100644 index 00000000000..caf2930df85 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_447.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.447.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_447.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.447.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_448.sub b/test/ntuple_qcd_100_200/batch/condor_448.sub new file mode 100644 index 00000000000..92910797baf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_448.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.448.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_448.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.448.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_449.sub b/test/ntuple_qcd_100_200/batch/condor_449.sub new file mode 100644 index 00000000000..7e9f7d786a0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_449.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.449.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_449.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.449.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_45.sub b/test/ntuple_qcd_100_200/batch/condor_45.sub new file mode 100644 index 00000000000..dec540c5d90 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_450.sub b/test/ntuple_qcd_100_200/batch/condor_450.sub new file mode 100644 index 00000000000..1216d0e2e45 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_450.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.450.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_450.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.450.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_451.sub b/test/ntuple_qcd_100_200/batch/condor_451.sub new file mode 100644 index 00000000000..0c2b0d85a0a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_451.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.451.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_451.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.451.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_452.sub b/test/ntuple_qcd_100_200/batch/condor_452.sub new file mode 100644 index 00000000000..b7a947eb003 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_452.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.452.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_452.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.452.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_453.sub b/test/ntuple_qcd_100_200/batch/condor_453.sub new file mode 100644 index 00000000000..15f7b727c36 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_453.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.453.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_453.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.453.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_454.sub b/test/ntuple_qcd_100_200/batch/condor_454.sub new file mode 100644 index 00000000000..a53a1bc38a3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_454.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.454.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_454.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.454.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_455.sub b/test/ntuple_qcd_100_200/batch/condor_455.sub new file mode 100644 index 00000000000..277519bb888 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_455.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.455.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_455.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.455.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_456.sub b/test/ntuple_qcd_100_200/batch/condor_456.sub new file mode 100644 index 00000000000..d4ff259c31a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_456.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.456.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_456.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.456.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_457.sub b/test/ntuple_qcd_100_200/batch/condor_457.sub new file mode 100644 index 00000000000..ab7fdc73f18 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_457.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.457.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_457.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.457.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_458.sub b/test/ntuple_qcd_100_200/batch/condor_458.sub new file mode 100644 index 00000000000..7ad4596ee10 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_458.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.458.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_458.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.458.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_459.sub b/test/ntuple_qcd_100_200/batch/condor_459.sub new file mode 100644 index 00000000000..247ce1fce12 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_459.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.459.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_459.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.459.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_46.sub b/test/ntuple_qcd_100_200/batch/condor_46.sub new file mode 100644 index 00000000000..86e37069942 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_460.sub b/test/ntuple_qcd_100_200/batch/condor_460.sub new file mode 100644 index 00000000000..8c427957774 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_460.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.460.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_460.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.460.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_461.sub b/test/ntuple_qcd_100_200/batch/condor_461.sub new file mode 100644 index 00000000000..b4aed19aae2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_461.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.461.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_461.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.461.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_462.sub b/test/ntuple_qcd_100_200/batch/condor_462.sub new file mode 100644 index 00000000000..c06f57578d6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_462.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.462.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_462.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.462.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_463.sub b/test/ntuple_qcd_100_200/batch/condor_463.sub new file mode 100644 index 00000000000..c389140a683 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_463.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.463.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_463.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.463.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_464.sub b/test/ntuple_qcd_100_200/batch/condor_464.sub new file mode 100644 index 00000000000..aaa282128a2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_464.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.464.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_464.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.464.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_465.sub b/test/ntuple_qcd_100_200/batch/condor_465.sub new file mode 100644 index 00000000000..ee71d2a60be --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_465.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.465.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_465.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.465.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_466.sub b/test/ntuple_qcd_100_200/batch/condor_466.sub new file mode 100644 index 00000000000..6564c0505a3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_466.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.466.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_466.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.466.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_467.sub b/test/ntuple_qcd_100_200/batch/condor_467.sub new file mode 100644 index 00000000000..b3a2677499c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_467.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.467.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_467.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.467.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_468.sub b/test/ntuple_qcd_100_200/batch/condor_468.sub new file mode 100644 index 00000000000..913e2d8d9c1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_468.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.468.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_468.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.468.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_469.sub b/test/ntuple_qcd_100_200/batch/condor_469.sub new file mode 100644 index 00000000000..8f88d6b4838 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_469.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.469.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_469.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.469.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_47.sub b/test/ntuple_qcd_100_200/batch/condor_47.sub new file mode 100644 index 00000000000..2faaaf1e55e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_470.sub b/test/ntuple_qcd_100_200/batch/condor_470.sub new file mode 100644 index 00000000000..6c8b68ba2dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_470.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.470.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_470.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.470.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_471.sub b/test/ntuple_qcd_100_200/batch/condor_471.sub new file mode 100644 index 00000000000..2b55ee8e8dd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_471.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.471.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_471.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.471.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_472.sub b/test/ntuple_qcd_100_200/batch/condor_472.sub new file mode 100644 index 00000000000..c48044d1c4a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_472.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.472.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_472.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.472.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_473.sub b/test/ntuple_qcd_100_200/batch/condor_473.sub new file mode 100644 index 00000000000..dc65b697a27 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_473.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.473.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_473.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.473.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_474.sub b/test/ntuple_qcd_100_200/batch/condor_474.sub new file mode 100644 index 00000000000..791ced3b431 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_474.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.474.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_474.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.474.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_475.sub b/test/ntuple_qcd_100_200/batch/condor_475.sub new file mode 100644 index 00000000000..a81129a3d49 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_475.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.475.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_475.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.475.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_476.sub b/test/ntuple_qcd_100_200/batch/condor_476.sub new file mode 100644 index 00000000000..de9c80f67c9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_476.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.476.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_476.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.476.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_477.sub b/test/ntuple_qcd_100_200/batch/condor_477.sub new file mode 100644 index 00000000000..015f8487811 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_477.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.477.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_477.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.477.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_478.sub b/test/ntuple_qcd_100_200/batch/condor_478.sub new file mode 100644 index 00000000000..9b378409de7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_478.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.478.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_478.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.478.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_479.sub b/test/ntuple_qcd_100_200/batch/condor_479.sub new file mode 100644 index 00000000000..5c12e8c1af5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_479.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.479.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_479.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.479.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_48.sub b/test/ntuple_qcd_100_200/batch/condor_48.sub new file mode 100644 index 00000000000..d5270e31202 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_480.sub b/test/ntuple_qcd_100_200/batch/condor_480.sub new file mode 100644 index 00000000000..77b7898b412 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_480.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.480.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_480.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.480.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_481.sub b/test/ntuple_qcd_100_200/batch/condor_481.sub new file mode 100644 index 00000000000..281f9aea241 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_481.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.481.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_481.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.481.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_482.sub b/test/ntuple_qcd_100_200/batch/condor_482.sub new file mode 100644 index 00000000000..2c439d219fe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_482.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.482.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_482.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.482.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_483.sub b/test/ntuple_qcd_100_200/batch/condor_483.sub new file mode 100644 index 00000000000..dc99c818194 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_483.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.483.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_483.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.483.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_484.sub b/test/ntuple_qcd_100_200/batch/condor_484.sub new file mode 100644 index 00000000000..bd25320e08a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_484.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.484.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_484.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.484.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_485.sub b/test/ntuple_qcd_100_200/batch/condor_485.sub new file mode 100644 index 00000000000..bb848cdb44e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_485.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.485.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_485.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.485.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_486.sub b/test/ntuple_qcd_100_200/batch/condor_486.sub new file mode 100644 index 00000000000..88bbe4bb787 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_486.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.486.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_486.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.486.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_487.sub b/test/ntuple_qcd_100_200/batch/condor_487.sub new file mode 100644 index 00000000000..17d1ca805b6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_487.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.487.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_487.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.487.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_488.sub b/test/ntuple_qcd_100_200/batch/condor_488.sub new file mode 100644 index 00000000000..5c8afad9b3c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_488.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.488.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_488.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.488.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_489.sub b/test/ntuple_qcd_100_200/batch/condor_489.sub new file mode 100644 index 00000000000..2151cbead79 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_489.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.489.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_489.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.489.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_49.sub b/test/ntuple_qcd_100_200/batch/condor_49.sub new file mode 100644 index 00000000000..37139f73d92 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_490.sub b/test/ntuple_qcd_100_200/batch/condor_490.sub new file mode 100644 index 00000000000..8bd4dbb0b25 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_490.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.490.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_490.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.490.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_491.sub b/test/ntuple_qcd_100_200/batch/condor_491.sub new file mode 100644 index 00000000000..6f9e9c12b33 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_491.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.491.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_491.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.491.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_492.sub b/test/ntuple_qcd_100_200/batch/condor_492.sub new file mode 100644 index 00000000000..4d3d6f09003 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_492.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.492.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_492.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.492.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_493.sub b/test/ntuple_qcd_100_200/batch/condor_493.sub new file mode 100644 index 00000000000..6469dd344ad --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_493.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.493.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_493.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.493.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_494.sub b/test/ntuple_qcd_100_200/batch/condor_494.sub new file mode 100644 index 00000000000..e608f515bb9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_494.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.494.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_494.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.494.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_495.sub b/test/ntuple_qcd_100_200/batch/condor_495.sub new file mode 100644 index 00000000000..2edddbd3feb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_495.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.495.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_495.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.495.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_496.sub b/test/ntuple_qcd_100_200/batch/condor_496.sub new file mode 100644 index 00000000000..47f3b398176 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_496.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.496.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_496.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.496.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_497.sub b/test/ntuple_qcd_100_200/batch/condor_497.sub new file mode 100644 index 00000000000..f10f0c1a208 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_497.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.497.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_497.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.497.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_498.sub b/test/ntuple_qcd_100_200/batch/condor_498.sub new file mode 100644 index 00000000000..1c1df0ad311 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_498.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.498.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_498.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.498.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_499.sub b/test/ntuple_qcd_100_200/batch/condor_499.sub new file mode 100644 index 00000000000..fab17cd4206 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_499.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.499.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_499.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.499.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_5.sub b/test/ntuple_qcd_100_200/batch/condor_5.sub new file mode 100644 index 00000000000..fcff2800f19 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_50.sub b/test/ntuple_qcd_100_200/batch/condor_50.sub new file mode 100644 index 00000000000..ca49ea24b77 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_51.sub b/test/ntuple_qcd_100_200/batch/condor_51.sub new file mode 100644 index 00000000000..c435d29772b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_52.sub b/test/ntuple_qcd_100_200/batch/condor_52.sub new file mode 100644 index 00000000000..b882527e9a2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_53.sub b/test/ntuple_qcd_100_200/batch/condor_53.sub new file mode 100644 index 00000000000..14f967ae95a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_54.sub b/test/ntuple_qcd_100_200/batch/condor_54.sub new file mode 100644 index 00000000000..1350906aa4a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_55.sub b/test/ntuple_qcd_100_200/batch/condor_55.sub new file mode 100644 index 00000000000..4c39158012d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_56.sub b/test/ntuple_qcd_100_200/batch/condor_56.sub new file mode 100644 index 00000000000..d49e67acf27 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_57.sub b/test/ntuple_qcd_100_200/batch/condor_57.sub new file mode 100644 index 00000000000..0bfc82c5ab9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_58.sub b/test/ntuple_qcd_100_200/batch/condor_58.sub new file mode 100644 index 00000000000..1cb13e9b7ae --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_59.sub b/test/ntuple_qcd_100_200/batch/condor_59.sub new file mode 100644 index 00000000000..1db95cb00bf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_6.sub b/test/ntuple_qcd_100_200/batch/condor_6.sub new file mode 100644 index 00000000000..eb25b350e85 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_60.sub b/test/ntuple_qcd_100_200/batch/condor_60.sub new file mode 100644 index 00000000000..7aa31f5622e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_61.sub b/test/ntuple_qcd_100_200/batch/condor_61.sub new file mode 100644 index 00000000000..70bedb94020 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_62.sub b/test/ntuple_qcd_100_200/batch/condor_62.sub new file mode 100644 index 00000000000..cd7c257dc08 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_63.sub b/test/ntuple_qcd_100_200/batch/condor_63.sub new file mode 100644 index 00000000000..7f51ea60197 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_64.sub b/test/ntuple_qcd_100_200/batch/condor_64.sub new file mode 100644 index 00000000000..d6cae6b6cf1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_65.sub b/test/ntuple_qcd_100_200/batch/condor_65.sub new file mode 100644 index 00000000000..f25162ff8b5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_66.sub b/test/ntuple_qcd_100_200/batch/condor_66.sub new file mode 100644 index 00000000000..a0d09181da7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_67.sub b/test/ntuple_qcd_100_200/batch/condor_67.sub new file mode 100644 index 00000000000..95c28056946 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_68.sub b/test/ntuple_qcd_100_200/batch/condor_68.sub new file mode 100644 index 00000000000..27452bcc8dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_69.sub b/test/ntuple_qcd_100_200/batch/condor_69.sub new file mode 100644 index 00000000000..eb83af8e6be --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_7.sub b/test/ntuple_qcd_100_200/batch/condor_7.sub new file mode 100644 index 00000000000..2e0a747234a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_70.sub b/test/ntuple_qcd_100_200/batch/condor_70.sub new file mode 100644 index 00000000000..644e745bf24 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_71.sub b/test/ntuple_qcd_100_200/batch/condor_71.sub new file mode 100644 index 00000000000..20b0da2f6f6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_72.sub b/test/ntuple_qcd_100_200/batch/condor_72.sub new file mode 100644 index 00000000000..6a253a85f08 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_73.sub b/test/ntuple_qcd_100_200/batch/condor_73.sub new file mode 100644 index 00000000000..64dfbab6fb1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_74.sub b/test/ntuple_qcd_100_200/batch/condor_74.sub new file mode 100644 index 00000000000..29aeaba2a52 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_75.sub b/test/ntuple_qcd_100_200/batch/condor_75.sub new file mode 100644 index 00000000000..b64e184ecf9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_76.sub b/test/ntuple_qcd_100_200/batch/condor_76.sub new file mode 100644 index 00000000000..fb98a8c25b7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_77.sub b/test/ntuple_qcd_100_200/batch/condor_77.sub new file mode 100644 index 00000000000..08d9367734c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_78.sub b/test/ntuple_qcd_100_200/batch/condor_78.sub new file mode 100644 index 00000000000..ce32bf28e4d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_79.sub b/test/ntuple_qcd_100_200/batch/condor_79.sub new file mode 100644 index 00000000000..53c3571fb88 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_8.sub b/test/ntuple_qcd_100_200/batch/condor_8.sub new file mode 100644 index 00000000000..36aea5ea7be --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_80.sub b/test/ntuple_qcd_100_200/batch/condor_80.sub new file mode 100644 index 00000000000..1a5a5836346 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_81.sub b/test/ntuple_qcd_100_200/batch/condor_81.sub new file mode 100644 index 00000000000..9c675a211ff --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_82.sub b/test/ntuple_qcd_100_200/batch/condor_82.sub new file mode 100644 index 00000000000..7ea3a53ca0f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_83.sub b/test/ntuple_qcd_100_200/batch/condor_83.sub new file mode 100644 index 00000000000..db418f38612 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_84.sub b/test/ntuple_qcd_100_200/batch/condor_84.sub new file mode 100644 index 00000000000..d29c5f5a0c3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_85.sub b/test/ntuple_qcd_100_200/batch/condor_85.sub new file mode 100644 index 00000000000..042478a1175 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_86.sub b/test/ntuple_qcd_100_200/batch/condor_86.sub new file mode 100644 index 00000000000..8b1cc431ffa --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_87.sub b/test/ntuple_qcd_100_200/batch/condor_87.sub new file mode 100644 index 00000000000..c8253947dd3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_88.sub b/test/ntuple_qcd_100_200/batch/condor_88.sub new file mode 100644 index 00000000000..12b5a77df93 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_89.sub b/test/ntuple_qcd_100_200/batch/condor_89.sub new file mode 100644 index 00000000000..831a2e5870b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_9.sub b/test/ntuple_qcd_100_200/batch/condor_9.sub new file mode 100644 index 00000000000..e814709166a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_90.sub b/test/ntuple_qcd_100_200/batch/condor_90.sub new file mode 100644 index 00000000000..b0de868ad9c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_91.sub b/test/ntuple_qcd_100_200/batch/condor_91.sub new file mode 100644 index 00000000000..12c22e98592 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_92.sub b/test/ntuple_qcd_100_200/batch/condor_92.sub new file mode 100644 index 00000000000..3d03c35fb9c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_93.sub b/test/ntuple_qcd_100_200/batch/condor_93.sub new file mode 100644 index 00000000000..aa7dc32476e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_94.sub b/test/ntuple_qcd_100_200/batch/condor_94.sub new file mode 100644 index 00000000000..9de1b015916 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_95.sub b/test/ntuple_qcd_100_200/batch/condor_95.sub new file mode 100644 index 00000000000..55266ce2c4a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_96.sub b/test/ntuple_qcd_100_200/batch/condor_96.sub new file mode 100644 index 00000000000..c4f84b69ef1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_97.sub b/test/ntuple_qcd_100_200/batch/condor_97.sub new file mode 100644 index 00000000000..45d7c19b5a7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_98.sub b/test/ntuple_qcd_100_200/batch/condor_98.sub new file mode 100644 index 00000000000..a2b4ddb19be --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_99.sub b/test/ntuple_qcd_100_200/batch/condor_99.sub new file mode 100644 index 00000000000..4ef76c24f75 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/nJobs.500 b/test/ntuple_qcd_100_200/batch/nJobs.500 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_100_200/batch/sge_0.sh b/test/ntuple_qcd_100_200/batch/sge_0.sh new file mode 100755 index 00000000000..4aae44dcf9b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_1.sh b/test/ntuple_qcd_100_200/batch/sge_1.sh new file mode 100755 index 00000000000..bb569edec3f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_10.sh b/test/ntuple_qcd_100_200/batch/sge_10.sh new file mode 100755 index 00000000000..1d57ac53fe5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_100.sh b/test/ntuple_qcd_100_200/batch/sge_100.sh new file mode 100755 index 00000000000..564afc5ad6e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_101.sh b/test/ntuple_qcd_100_200/batch/sge_101.sh new file mode 100755 index 00000000000..e43aeaabe21 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_102.sh b/test/ntuple_qcd_100_200/batch/sge_102.sh new file mode 100755 index 00000000000..7720fa0522f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_103.sh b/test/ntuple_qcd_100_200/batch/sge_103.sh new file mode 100755 index 00000000000..5b049c87433 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_104.sh b/test/ntuple_qcd_100_200/batch/sge_104.sh new file mode 100755 index 00000000000..8746ecfd59b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_105.sh b/test/ntuple_qcd_100_200/batch/sge_105.sh new file mode 100755 index 00000000000..37b74561154 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_106.sh b/test/ntuple_qcd_100_200/batch/sge_106.sh new file mode 100755 index 00000000000..1cb97b9c018 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_107.sh b/test/ntuple_qcd_100_200/batch/sge_107.sh new file mode 100755 index 00000000000..63228ad5c5b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_108.sh b/test/ntuple_qcd_100_200/batch/sge_108.sh new file mode 100755 index 00000000000..95f98869916 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_109.sh b/test/ntuple_qcd_100_200/batch/sge_109.sh new file mode 100755 index 00000000000..636950a75e4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_11.sh b/test/ntuple_qcd_100_200/batch/sge_11.sh new file mode 100755 index 00000000000..ab5e88f74a6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_110.sh b/test/ntuple_qcd_100_200/batch/sge_110.sh new file mode 100755 index 00000000000..8c67fda9072 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_111.sh b/test/ntuple_qcd_100_200/batch/sge_111.sh new file mode 100755 index 00000000000..8e771960e7a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_112.sh b/test/ntuple_qcd_100_200/batch/sge_112.sh new file mode 100755 index 00000000000..2e90a153ec3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_113.sh b/test/ntuple_qcd_100_200/batch/sge_113.sh new file mode 100755 index 00000000000..63cf54dab45 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_114.sh b/test/ntuple_qcd_100_200/batch/sge_114.sh new file mode 100755 index 00000000000..af345253808 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_115.sh b/test/ntuple_qcd_100_200/batch/sge_115.sh new file mode 100755 index 00000000000..e81d8e9b6c1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_116.sh b/test/ntuple_qcd_100_200/batch/sge_116.sh new file mode 100755 index 00000000000..8eef098addd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_117.sh b/test/ntuple_qcd_100_200/batch/sge_117.sh new file mode 100755 index 00000000000..4ce80a6aaa7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_118.sh b/test/ntuple_qcd_100_200/batch/sge_118.sh new file mode 100755 index 00000000000..37cb8f9359a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_119.sh b/test/ntuple_qcd_100_200/batch/sge_119.sh new file mode 100755 index 00000000000..0a734da1c3f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_12.sh b/test/ntuple_qcd_100_200/batch/sge_12.sh new file mode 100755 index 00000000000..e7255dfd466 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_120.sh b/test/ntuple_qcd_100_200/batch/sge_120.sh new file mode 100755 index 00000000000..50ddf4c27b3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_121.sh b/test/ntuple_qcd_100_200/batch/sge_121.sh new file mode 100755 index 00000000000..4dbdfce41e5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_122.sh b/test/ntuple_qcd_100_200/batch/sge_122.sh new file mode 100755 index 00000000000..e0144fc7ff0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_123.sh b/test/ntuple_qcd_100_200/batch/sge_123.sh new file mode 100755 index 00000000000..e5804571631 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_124.sh b/test/ntuple_qcd_100_200/batch/sge_124.sh new file mode 100755 index 00000000000..0cd63d27cff --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_125.sh b/test/ntuple_qcd_100_200/batch/sge_125.sh new file mode 100755 index 00000000000..6cf55b65161 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_126.sh b/test/ntuple_qcd_100_200/batch/sge_126.sh new file mode 100755 index 00000000000..99da1ef1f25 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_127.sh b/test/ntuple_qcd_100_200/batch/sge_127.sh new file mode 100755 index 00000000000..15b542e499b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_128.sh b/test/ntuple_qcd_100_200/batch/sge_128.sh new file mode 100755 index 00000000000..1114404649c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_129.sh b/test/ntuple_qcd_100_200/batch/sge_129.sh new file mode 100755 index 00000000000..97a6275561a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_13.sh b/test/ntuple_qcd_100_200/batch/sge_13.sh new file mode 100755 index 00000000000..89dbef80a3d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_130.sh b/test/ntuple_qcd_100_200/batch/sge_130.sh new file mode 100755 index 00000000000..c7b0ae7fa13 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_131.sh b/test/ntuple_qcd_100_200/batch/sge_131.sh new file mode 100755 index 00000000000..493dc567ebe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_132.sh b/test/ntuple_qcd_100_200/batch/sge_132.sh new file mode 100755 index 00000000000..56dc6906400 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_133.sh b/test/ntuple_qcd_100_200/batch/sge_133.sh new file mode 100755 index 00000000000..da1d3f1d66a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_134.sh b/test/ntuple_qcd_100_200/batch/sge_134.sh new file mode 100755 index 00000000000..d804aee8c38 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_135.sh b/test/ntuple_qcd_100_200/batch/sge_135.sh new file mode 100755 index 00000000000..864b401ca96 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_136.sh b/test/ntuple_qcd_100_200/batch/sge_136.sh new file mode 100755 index 00000000000..f5437679543 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_137.sh b/test/ntuple_qcd_100_200/batch/sge_137.sh new file mode 100755 index 00000000000..3f88d5a03f1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_138.sh b/test/ntuple_qcd_100_200/batch/sge_138.sh new file mode 100755 index 00000000000..5e2f7191e26 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_139.sh b/test/ntuple_qcd_100_200/batch/sge_139.sh new file mode 100755 index 00000000000..a200b880755 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_139.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=139 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_139.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_14.sh b/test/ntuple_qcd_100_200/batch/sge_14.sh new file mode 100755 index 00000000000..2c814d5f49a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_140.sh b/test/ntuple_qcd_100_200/batch/sge_140.sh new file mode 100755 index 00000000000..e70410839ed --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_140.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=140 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_140.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_141.sh b/test/ntuple_qcd_100_200/batch/sge_141.sh new file mode 100755 index 00000000000..3ad05092043 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_141.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=141 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_141.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_142.sh b/test/ntuple_qcd_100_200/batch/sge_142.sh new file mode 100755 index 00000000000..22550f37090 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_142.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=142 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_142.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_143.sh b/test/ntuple_qcd_100_200/batch/sge_143.sh new file mode 100755 index 00000000000..0bd58593f58 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_143.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=143 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_143.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_144.sh b/test/ntuple_qcd_100_200/batch/sge_144.sh new file mode 100755 index 00000000000..7f812366600 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_144.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=144 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_144.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_145.sh b/test/ntuple_qcd_100_200/batch/sge_145.sh new file mode 100755 index 00000000000..bdc0f2f772e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_145.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=145 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_145.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_146.sh b/test/ntuple_qcd_100_200/batch/sge_146.sh new file mode 100755 index 00000000000..c6bca21ac07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_146.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=146 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_146.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_147.sh b/test/ntuple_qcd_100_200/batch/sge_147.sh new file mode 100755 index 00000000000..165f7cc0a81 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_147.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=147 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_147.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_148.sh b/test/ntuple_qcd_100_200/batch/sge_148.sh new file mode 100755 index 00000000000..0579e54c406 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_148.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=148 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_148.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_149.sh b/test/ntuple_qcd_100_200/batch/sge_149.sh new file mode 100755 index 00000000000..f3d978f87d6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_149.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=149 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_149.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_15.sh b/test/ntuple_qcd_100_200/batch/sge_15.sh new file mode 100755 index 00000000000..7900e25ff58 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_150.sh b/test/ntuple_qcd_100_200/batch/sge_150.sh new file mode 100755 index 00000000000..0b199839bdf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_150.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=150 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_150.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_151.sh b/test/ntuple_qcd_100_200/batch/sge_151.sh new file mode 100755 index 00000000000..612681c442d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_151.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=151 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_151.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_152.sh b/test/ntuple_qcd_100_200/batch/sge_152.sh new file mode 100755 index 00000000000..c2e2822fe1f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_152.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=152 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_152.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_153.sh b/test/ntuple_qcd_100_200/batch/sge_153.sh new file mode 100755 index 00000000000..806a7959a17 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_153.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=153 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_153.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_154.sh b/test/ntuple_qcd_100_200/batch/sge_154.sh new file mode 100755 index 00000000000..9c5e1b6fbd1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_154.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=154 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_154.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_155.sh b/test/ntuple_qcd_100_200/batch/sge_155.sh new file mode 100755 index 00000000000..e08a6e594a8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_155.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=155 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_155.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_156.sh b/test/ntuple_qcd_100_200/batch/sge_156.sh new file mode 100755 index 00000000000..e46f79ced3a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_156.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=156 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_156.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_157.sh b/test/ntuple_qcd_100_200/batch/sge_157.sh new file mode 100755 index 00000000000..6a5ae7ca00f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_157.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=157 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_157.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_158.sh b/test/ntuple_qcd_100_200/batch/sge_158.sh new file mode 100755 index 00000000000..416787cf04b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_158.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=158 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_158.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_159.sh b/test/ntuple_qcd_100_200/batch/sge_159.sh new file mode 100755 index 00000000000..1b42a39d607 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_159.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=159 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_159.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_16.sh b/test/ntuple_qcd_100_200/batch/sge_16.sh new file mode 100755 index 00000000000..aeb8449a5ad --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_160.sh b/test/ntuple_qcd_100_200/batch/sge_160.sh new file mode 100755 index 00000000000..62e55b7cecb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_160.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=160 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_160.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_161.sh b/test/ntuple_qcd_100_200/batch/sge_161.sh new file mode 100755 index 00000000000..f0e45ce1bd4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_161.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=161 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_161.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_162.sh b/test/ntuple_qcd_100_200/batch/sge_162.sh new file mode 100755 index 00000000000..9bc149e7e73 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_162.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=162 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_162.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_163.sh b/test/ntuple_qcd_100_200/batch/sge_163.sh new file mode 100755 index 00000000000..1c07f8bdbc0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_163.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=163 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_163.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_164.sh b/test/ntuple_qcd_100_200/batch/sge_164.sh new file mode 100755 index 00000000000..017b652d7f9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_164.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=164 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_164.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_165.sh b/test/ntuple_qcd_100_200/batch/sge_165.sh new file mode 100755 index 00000000000..9d8a4d74f97 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_165.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=165 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_165.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_166.sh b/test/ntuple_qcd_100_200/batch/sge_166.sh new file mode 100755 index 00000000000..f65bb276e0f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_166.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=166 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_166.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_167.sh b/test/ntuple_qcd_100_200/batch/sge_167.sh new file mode 100755 index 00000000000..5adb6e60de5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_167.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=167 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_167.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_168.sh b/test/ntuple_qcd_100_200/batch/sge_168.sh new file mode 100755 index 00000000000..f9a55a43b17 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_168.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=168 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_168.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_169.sh b/test/ntuple_qcd_100_200/batch/sge_169.sh new file mode 100755 index 00000000000..15e455f1b6a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_169.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=169 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_169.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_17.sh b/test/ntuple_qcd_100_200/batch/sge_17.sh new file mode 100755 index 00000000000..72f54e1a51e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_170.sh b/test/ntuple_qcd_100_200/batch/sge_170.sh new file mode 100755 index 00000000000..2ced0d2ec75 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_170.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=170 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_170.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_171.sh b/test/ntuple_qcd_100_200/batch/sge_171.sh new file mode 100755 index 00000000000..9f2269150f1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_171.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=171 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_171.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_172.sh b/test/ntuple_qcd_100_200/batch/sge_172.sh new file mode 100755 index 00000000000..c77ca6b761d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_172.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=172 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_172.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_173.sh b/test/ntuple_qcd_100_200/batch/sge_173.sh new file mode 100755 index 00000000000..e1783d8c082 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_173.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=173 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_173.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_174.sh b/test/ntuple_qcd_100_200/batch/sge_174.sh new file mode 100755 index 00000000000..34122ab8112 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_174.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=174 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_174.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_175.sh b/test/ntuple_qcd_100_200/batch/sge_175.sh new file mode 100755 index 00000000000..90a0c51b394 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_175.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=175 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_175.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_176.sh b/test/ntuple_qcd_100_200/batch/sge_176.sh new file mode 100755 index 00000000000..a9794a18eaa --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_176.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=176 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_176.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_177.sh b/test/ntuple_qcd_100_200/batch/sge_177.sh new file mode 100755 index 00000000000..7ff5c75b6c5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_177.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=177 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_177.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_178.sh b/test/ntuple_qcd_100_200/batch/sge_178.sh new file mode 100755 index 00000000000..953e6f79d7b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_178.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=178 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_178.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_179.sh b/test/ntuple_qcd_100_200/batch/sge_179.sh new file mode 100755 index 00000000000..d6041cfe6bc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_179.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=179 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_179.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_18.sh b/test/ntuple_qcd_100_200/batch/sge_18.sh new file mode 100755 index 00000000000..a64d4937f07 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_180.sh b/test/ntuple_qcd_100_200/batch/sge_180.sh new file mode 100755 index 00000000000..e1639e073ca --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_180.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=180 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_180.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_181.sh b/test/ntuple_qcd_100_200/batch/sge_181.sh new file mode 100755 index 00000000000..4e08bddbce4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_181.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=181 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_181.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_182.sh b/test/ntuple_qcd_100_200/batch/sge_182.sh new file mode 100755 index 00000000000..118a1f66666 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_182.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=182 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_182.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_183.sh b/test/ntuple_qcd_100_200/batch/sge_183.sh new file mode 100755 index 00000000000..7f045a0a722 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_183.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=183 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_183.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_184.sh b/test/ntuple_qcd_100_200/batch/sge_184.sh new file mode 100755 index 00000000000..ca6d8fa6707 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_184.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=184 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_184.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_185.sh b/test/ntuple_qcd_100_200/batch/sge_185.sh new file mode 100755 index 00000000000..77d8cd923ac --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_185.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=185 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_185.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_186.sh b/test/ntuple_qcd_100_200/batch/sge_186.sh new file mode 100755 index 00000000000..dae7998429c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_186.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=186 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_186.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_187.sh b/test/ntuple_qcd_100_200/batch/sge_187.sh new file mode 100755 index 00000000000..807e4ebc7ef --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_187.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=187 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_187.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_188.sh b/test/ntuple_qcd_100_200/batch/sge_188.sh new file mode 100755 index 00000000000..6a71b460f4e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_188.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=188 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_188.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_189.sh b/test/ntuple_qcd_100_200/batch/sge_189.sh new file mode 100755 index 00000000000..b52fbbc6b24 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_189.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=189 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_189.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_19.sh b/test/ntuple_qcd_100_200/batch/sge_19.sh new file mode 100755 index 00000000000..89d3a7c51c5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_190.sh b/test/ntuple_qcd_100_200/batch/sge_190.sh new file mode 100755 index 00000000000..25aedfab5af --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_190.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=190 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_190.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_191.sh b/test/ntuple_qcd_100_200/batch/sge_191.sh new file mode 100755 index 00000000000..b78962e71e2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_191.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=191 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_191.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_192.sh b/test/ntuple_qcd_100_200/batch/sge_192.sh new file mode 100755 index 00000000000..9fb06884641 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_192.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=192 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_192.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_193.sh b/test/ntuple_qcd_100_200/batch/sge_193.sh new file mode 100755 index 00000000000..78aad7af9a0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_193.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=193 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_193.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_194.sh b/test/ntuple_qcd_100_200/batch/sge_194.sh new file mode 100755 index 00000000000..613762e54ad --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_194.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=194 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_194.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_195.sh b/test/ntuple_qcd_100_200/batch/sge_195.sh new file mode 100755 index 00000000000..233aa5ffcf5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_195.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=195 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_195.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_196.sh b/test/ntuple_qcd_100_200/batch/sge_196.sh new file mode 100755 index 00000000000..af399c60317 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_196.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=196 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_196.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_197.sh b/test/ntuple_qcd_100_200/batch/sge_197.sh new file mode 100755 index 00000000000..0bf520d243b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_197.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=197 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_197.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_198.sh b/test/ntuple_qcd_100_200/batch/sge_198.sh new file mode 100755 index 00000000000..5698b378b30 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_198.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=198 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_198.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_199.sh b/test/ntuple_qcd_100_200/batch/sge_199.sh new file mode 100755 index 00000000000..b787a7bee4f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_199.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=199 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_199.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_2.sh b/test/ntuple_qcd_100_200/batch/sge_2.sh new file mode 100755 index 00000000000..cbbbf4456b5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_20.sh b/test/ntuple_qcd_100_200/batch/sge_20.sh new file mode 100755 index 00000000000..85d721f96ea --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_200.sh b/test/ntuple_qcd_100_200/batch/sge_200.sh new file mode 100755 index 00000000000..27d317d5cf3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_200.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=200 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_200.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_201.sh b/test/ntuple_qcd_100_200/batch/sge_201.sh new file mode 100755 index 00000000000..ae4c980307c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_201.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=201 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_201.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_202.sh b/test/ntuple_qcd_100_200/batch/sge_202.sh new file mode 100755 index 00000000000..18b8f4ec432 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_202.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=202 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_202.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_203.sh b/test/ntuple_qcd_100_200/batch/sge_203.sh new file mode 100755 index 00000000000..a3f8121d315 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_203.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=203 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_203.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_204.sh b/test/ntuple_qcd_100_200/batch/sge_204.sh new file mode 100755 index 00000000000..0f30b28ef6f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_204.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=204 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_204.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_205.sh b/test/ntuple_qcd_100_200/batch/sge_205.sh new file mode 100755 index 00000000000..6c2df21a255 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_205.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=205 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_205.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_206.sh b/test/ntuple_qcd_100_200/batch/sge_206.sh new file mode 100755 index 00000000000..c4b777c036b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_206.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=206 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_206.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_207.sh b/test/ntuple_qcd_100_200/batch/sge_207.sh new file mode 100755 index 00000000000..cb57b1b9894 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_207.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=207 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_207.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_208.sh b/test/ntuple_qcd_100_200/batch/sge_208.sh new file mode 100755 index 00000000000..27161adc9b3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_208.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=208 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_208.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_209.sh b/test/ntuple_qcd_100_200/batch/sge_209.sh new file mode 100755 index 00000000000..098b08043dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_209.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=209 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_209.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_21.sh b/test/ntuple_qcd_100_200/batch/sge_21.sh new file mode 100755 index 00000000000..1088360b908 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_210.sh b/test/ntuple_qcd_100_200/batch/sge_210.sh new file mode 100755 index 00000000000..537cfe163e7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_210.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=210 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_210.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_211.sh b/test/ntuple_qcd_100_200/batch/sge_211.sh new file mode 100755 index 00000000000..f3d4faa51de --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_211.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=211 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_211.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_212.sh b/test/ntuple_qcd_100_200/batch/sge_212.sh new file mode 100755 index 00000000000..af4745d8789 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_212.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=212 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_212.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_213.sh b/test/ntuple_qcd_100_200/batch/sge_213.sh new file mode 100755 index 00000000000..a09556744e9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_213.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=213 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_213.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_214.sh b/test/ntuple_qcd_100_200/batch/sge_214.sh new file mode 100755 index 00000000000..95283c28e0b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_214.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=214 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_214.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_215.sh b/test/ntuple_qcd_100_200/batch/sge_215.sh new file mode 100755 index 00000000000..85180765a6c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_215.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=215 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_215.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_216.sh b/test/ntuple_qcd_100_200/batch/sge_216.sh new file mode 100755 index 00000000000..f8edb3ea4a0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_216.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=216 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_216.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_217.sh b/test/ntuple_qcd_100_200/batch/sge_217.sh new file mode 100755 index 00000000000..0b99f7cd4a8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_217.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=217 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_217.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_218.sh b/test/ntuple_qcd_100_200/batch/sge_218.sh new file mode 100755 index 00000000000..e7ac69edfbf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_218.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=218 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_218.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_219.sh b/test/ntuple_qcd_100_200/batch/sge_219.sh new file mode 100755 index 00000000000..851a37d752d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_219.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=219 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_219.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_22.sh b/test/ntuple_qcd_100_200/batch/sge_22.sh new file mode 100755 index 00000000000..ccf037cff03 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_220.sh b/test/ntuple_qcd_100_200/batch/sge_220.sh new file mode 100755 index 00000000000..8365c6ec322 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_220.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=220 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_220.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_221.sh b/test/ntuple_qcd_100_200/batch/sge_221.sh new file mode 100755 index 00000000000..bd5a1c66100 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_221.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=221 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_221.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_222.sh b/test/ntuple_qcd_100_200/batch/sge_222.sh new file mode 100755 index 00000000000..a9fbbf9ea00 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_222.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=222 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_222.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_223.sh b/test/ntuple_qcd_100_200/batch/sge_223.sh new file mode 100755 index 00000000000..d7e637beacb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_223.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=223 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_223.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_224.sh b/test/ntuple_qcd_100_200/batch/sge_224.sh new file mode 100755 index 00000000000..43bb734af95 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_224.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=224 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_224.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_225.sh b/test/ntuple_qcd_100_200/batch/sge_225.sh new file mode 100755 index 00000000000..0908ec3f475 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_225.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=225 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_225.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_226.sh b/test/ntuple_qcd_100_200/batch/sge_226.sh new file mode 100755 index 00000000000..321c735b463 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_226.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=226 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_226.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_227.sh b/test/ntuple_qcd_100_200/batch/sge_227.sh new file mode 100755 index 00000000000..2e08f8a0a66 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_227.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=227 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_227.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_228.sh b/test/ntuple_qcd_100_200/batch/sge_228.sh new file mode 100755 index 00000000000..f7f878f27d3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_228.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=228 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_228.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_229.sh b/test/ntuple_qcd_100_200/batch/sge_229.sh new file mode 100755 index 00000000000..697ff5b4d6d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_229.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=229 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_229.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_23.sh b/test/ntuple_qcd_100_200/batch/sge_23.sh new file mode 100755 index 00000000000..b429cb9a779 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_230.sh b/test/ntuple_qcd_100_200/batch/sge_230.sh new file mode 100755 index 00000000000..cc86b3f201a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_230.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=230 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_230.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_231.sh b/test/ntuple_qcd_100_200/batch/sge_231.sh new file mode 100755 index 00000000000..ef349e1af93 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_231.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=231 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_231.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_232.sh b/test/ntuple_qcd_100_200/batch/sge_232.sh new file mode 100755 index 00000000000..bf22f07c13b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_232.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=232 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_232.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_233.sh b/test/ntuple_qcd_100_200/batch/sge_233.sh new file mode 100755 index 00000000000..923c6c784e9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_233.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=233 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_233.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_234.sh b/test/ntuple_qcd_100_200/batch/sge_234.sh new file mode 100755 index 00000000000..afd6a0cc2d0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_234.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=234 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_234.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_235.sh b/test/ntuple_qcd_100_200/batch/sge_235.sh new file mode 100755 index 00000000000..56241b2f8d1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_235.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=235 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_235.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_236.sh b/test/ntuple_qcd_100_200/batch/sge_236.sh new file mode 100755 index 00000000000..13c556e4f86 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_236.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=236 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_236.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_237.sh b/test/ntuple_qcd_100_200/batch/sge_237.sh new file mode 100755 index 00000000000..1de88e5e21b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_237.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=237 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_237.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_238.sh b/test/ntuple_qcd_100_200/batch/sge_238.sh new file mode 100755 index 00000000000..acf51af4722 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_238.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=238 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_238.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_239.sh b/test/ntuple_qcd_100_200/batch/sge_239.sh new file mode 100755 index 00000000000..992718bb46a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_239.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=239 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_239.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_24.sh b/test/ntuple_qcd_100_200/batch/sge_24.sh new file mode 100755 index 00000000000..38c4261a42d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_240.sh b/test/ntuple_qcd_100_200/batch/sge_240.sh new file mode 100755 index 00000000000..31fe76838dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_240.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=240 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_240.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_241.sh b/test/ntuple_qcd_100_200/batch/sge_241.sh new file mode 100755 index 00000000000..c0f6ffd2c96 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_241.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=241 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_241.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_242.sh b/test/ntuple_qcd_100_200/batch/sge_242.sh new file mode 100755 index 00000000000..9cc088b9b7a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_242.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=242 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_242.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_243.sh b/test/ntuple_qcd_100_200/batch/sge_243.sh new file mode 100755 index 00000000000..7a094ccd296 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_243.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=243 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_243.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_244.sh b/test/ntuple_qcd_100_200/batch/sge_244.sh new file mode 100755 index 00000000000..21f496cffc9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_244.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=244 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_244.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_245.sh b/test/ntuple_qcd_100_200/batch/sge_245.sh new file mode 100755 index 00000000000..67e9b7cc379 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_245.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=245 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_245.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_246.sh b/test/ntuple_qcd_100_200/batch/sge_246.sh new file mode 100755 index 00000000000..b9eead11c74 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_246.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=246 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_246.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_247.sh b/test/ntuple_qcd_100_200/batch/sge_247.sh new file mode 100755 index 00000000000..7554b1ae641 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_247.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=247 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_247.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_248.sh b/test/ntuple_qcd_100_200/batch/sge_248.sh new file mode 100755 index 00000000000..890ce5bcb94 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_248.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=248 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_248.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_249.sh b/test/ntuple_qcd_100_200/batch/sge_249.sh new file mode 100755 index 00000000000..a4365e78fb7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_249.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=249 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_249.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_25.sh b/test/ntuple_qcd_100_200/batch/sge_25.sh new file mode 100755 index 00000000000..bd63cbcaf00 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_250.sh b/test/ntuple_qcd_100_200/batch/sge_250.sh new file mode 100755 index 00000000000..4aad7c305b3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_250.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=250 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_250.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_251.sh b/test/ntuple_qcd_100_200/batch/sge_251.sh new file mode 100755 index 00000000000..cab5a78105b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_251.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=251 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_251.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_252.sh b/test/ntuple_qcd_100_200/batch/sge_252.sh new file mode 100755 index 00000000000..a6d7cfe4063 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_252.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=252 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_252.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_253.sh b/test/ntuple_qcd_100_200/batch/sge_253.sh new file mode 100755 index 00000000000..6077b479298 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_253.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=253 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_253.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_254.sh b/test/ntuple_qcd_100_200/batch/sge_254.sh new file mode 100755 index 00000000000..13d7ce0b70b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_254.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=254 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_254.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_255.sh b/test/ntuple_qcd_100_200/batch/sge_255.sh new file mode 100755 index 00000000000..025d157c7dc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_255.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=255 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_255.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_256.sh b/test/ntuple_qcd_100_200/batch/sge_256.sh new file mode 100755 index 00000000000..003f44a5803 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_256.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=256 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_256.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_257.sh b/test/ntuple_qcd_100_200/batch/sge_257.sh new file mode 100755 index 00000000000..d5bd9386da6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_257.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=257 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_257.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_258.sh b/test/ntuple_qcd_100_200/batch/sge_258.sh new file mode 100755 index 00000000000..300d189ccd4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_258.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=258 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_258.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_259.sh b/test/ntuple_qcd_100_200/batch/sge_259.sh new file mode 100755 index 00000000000..f4d8b2924e4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_259.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=259 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_259.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_26.sh b/test/ntuple_qcd_100_200/batch/sge_26.sh new file mode 100755 index 00000000000..3eb6a7f066e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_260.sh b/test/ntuple_qcd_100_200/batch/sge_260.sh new file mode 100755 index 00000000000..1f022eda08f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_260.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=260 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_260.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_261.sh b/test/ntuple_qcd_100_200/batch/sge_261.sh new file mode 100755 index 00000000000..c108d585efe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_261.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=261 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_261.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_262.sh b/test/ntuple_qcd_100_200/batch/sge_262.sh new file mode 100755 index 00000000000..3defcd2a354 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_262.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=262 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_262.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_263.sh b/test/ntuple_qcd_100_200/batch/sge_263.sh new file mode 100755 index 00000000000..22ffa1c6ca2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_263.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=263 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_263.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_264.sh b/test/ntuple_qcd_100_200/batch/sge_264.sh new file mode 100755 index 00000000000..21812d98a31 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_264.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=264 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_264.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_265.sh b/test/ntuple_qcd_100_200/batch/sge_265.sh new file mode 100755 index 00000000000..26fd77f590f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_265.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=265 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_265.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_266.sh b/test/ntuple_qcd_100_200/batch/sge_266.sh new file mode 100755 index 00000000000..ab4ae04ff0a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_266.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=266 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_266.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_267.sh b/test/ntuple_qcd_100_200/batch/sge_267.sh new file mode 100755 index 00000000000..c27ebd36afd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_267.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=267 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_267.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_268.sh b/test/ntuple_qcd_100_200/batch/sge_268.sh new file mode 100755 index 00000000000..819084a3ae7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_268.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=268 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_268.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_269.sh b/test/ntuple_qcd_100_200/batch/sge_269.sh new file mode 100755 index 00000000000..2fbb6bd1e6f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_269.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=269 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_269.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_27.sh b/test/ntuple_qcd_100_200/batch/sge_27.sh new file mode 100755 index 00000000000..b8cb1fe3758 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_270.sh b/test/ntuple_qcd_100_200/batch/sge_270.sh new file mode 100755 index 00000000000..987b94b717f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_270.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=270 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_270.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_271.sh b/test/ntuple_qcd_100_200/batch/sge_271.sh new file mode 100755 index 00000000000..0673e0ed54f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_271.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=271 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_271.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_272.sh b/test/ntuple_qcd_100_200/batch/sge_272.sh new file mode 100755 index 00000000000..8f2d95b1d25 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_272.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=272 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_272.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_273.sh b/test/ntuple_qcd_100_200/batch/sge_273.sh new file mode 100755 index 00000000000..28c3ef61f1e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_273.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=273 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_273.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_274.sh b/test/ntuple_qcd_100_200/batch/sge_274.sh new file mode 100755 index 00000000000..fd71cd7a709 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_274.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=274 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_274.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_275.sh b/test/ntuple_qcd_100_200/batch/sge_275.sh new file mode 100755 index 00000000000..919822f437e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_275.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=275 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_275.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_276.sh b/test/ntuple_qcd_100_200/batch/sge_276.sh new file mode 100755 index 00000000000..0959660ff3f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_276.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=276 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_276.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_277.sh b/test/ntuple_qcd_100_200/batch/sge_277.sh new file mode 100755 index 00000000000..4d63810132c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_277.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=277 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_277.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_278.sh b/test/ntuple_qcd_100_200/batch/sge_278.sh new file mode 100755 index 00000000000..19c8b04eaf7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_278.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=278 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_278.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_279.sh b/test/ntuple_qcd_100_200/batch/sge_279.sh new file mode 100755 index 00000000000..ad964f05c14 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_279.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=279 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_279.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_28.sh b/test/ntuple_qcd_100_200/batch/sge_28.sh new file mode 100755 index 00000000000..e1ace5a7241 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_280.sh b/test/ntuple_qcd_100_200/batch/sge_280.sh new file mode 100755 index 00000000000..14004a683f8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_280.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=280 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_280.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_281.sh b/test/ntuple_qcd_100_200/batch/sge_281.sh new file mode 100755 index 00000000000..43ddc59757f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_281.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=281 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_281.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_282.sh b/test/ntuple_qcd_100_200/batch/sge_282.sh new file mode 100755 index 00000000000..0746062c7e8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_282.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=282 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_282.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_283.sh b/test/ntuple_qcd_100_200/batch/sge_283.sh new file mode 100755 index 00000000000..4e3aa3cae66 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_283.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=283 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_283.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_284.sh b/test/ntuple_qcd_100_200/batch/sge_284.sh new file mode 100755 index 00000000000..c2c2a1f5e60 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_284.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=284 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_284.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_285.sh b/test/ntuple_qcd_100_200/batch/sge_285.sh new file mode 100755 index 00000000000..5cd170c45a0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_285.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=285 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_285.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_286.sh b/test/ntuple_qcd_100_200/batch/sge_286.sh new file mode 100755 index 00000000000..134bdce3b8d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_286.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=286 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_286.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_287.sh b/test/ntuple_qcd_100_200/batch/sge_287.sh new file mode 100755 index 00000000000..836b0bc6ae6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_287.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=287 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_287.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_288.sh b/test/ntuple_qcd_100_200/batch/sge_288.sh new file mode 100755 index 00000000000..96749960119 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_288.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=288 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_288.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_289.sh b/test/ntuple_qcd_100_200/batch/sge_289.sh new file mode 100755 index 00000000000..9ad78042ee7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_289.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=289 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_289.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_29.sh b/test/ntuple_qcd_100_200/batch/sge_29.sh new file mode 100755 index 00000000000..1030a12d2e6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_290.sh b/test/ntuple_qcd_100_200/batch/sge_290.sh new file mode 100755 index 00000000000..24008e03146 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_290.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=290 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_290.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_291.sh b/test/ntuple_qcd_100_200/batch/sge_291.sh new file mode 100755 index 00000000000..adcc5d9e245 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_291.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=291 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_291.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_292.sh b/test/ntuple_qcd_100_200/batch/sge_292.sh new file mode 100755 index 00000000000..fbb254d4189 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_292.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=292 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_292.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_293.sh b/test/ntuple_qcd_100_200/batch/sge_293.sh new file mode 100755 index 00000000000..aa4bb693174 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_293.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=293 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_293.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_294.sh b/test/ntuple_qcd_100_200/batch/sge_294.sh new file mode 100755 index 00000000000..57475081426 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_294.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=294 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_294.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_295.sh b/test/ntuple_qcd_100_200/batch/sge_295.sh new file mode 100755 index 00000000000..212cbc8e0b7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_295.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=295 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_295.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_296.sh b/test/ntuple_qcd_100_200/batch/sge_296.sh new file mode 100755 index 00000000000..955adae8df4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_296.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=296 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_296.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_297.sh b/test/ntuple_qcd_100_200/batch/sge_297.sh new file mode 100755 index 00000000000..7fe352cd8a2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_297.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=297 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_297.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_298.sh b/test/ntuple_qcd_100_200/batch/sge_298.sh new file mode 100755 index 00000000000..2d46bee5e8e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_298.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=298 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_298.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_299.sh b/test/ntuple_qcd_100_200/batch/sge_299.sh new file mode 100755 index 00000000000..a002a02791f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_299.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=299 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_299.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_3.sh b/test/ntuple_qcd_100_200/batch/sge_3.sh new file mode 100755 index 00000000000..3f43d45ac67 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_30.sh b/test/ntuple_qcd_100_200/batch/sge_30.sh new file mode 100755 index 00000000000..b64e3c04dcc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_300.sh b/test/ntuple_qcd_100_200/batch/sge_300.sh new file mode 100755 index 00000000000..d7f9d404682 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_300.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=300 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_300.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_301.sh b/test/ntuple_qcd_100_200/batch/sge_301.sh new file mode 100755 index 00000000000..8d9539e6082 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_301.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=301 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_301.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_302.sh b/test/ntuple_qcd_100_200/batch/sge_302.sh new file mode 100755 index 00000000000..9550ba08a86 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_302.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=302 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_302.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_303.sh b/test/ntuple_qcd_100_200/batch/sge_303.sh new file mode 100755 index 00000000000..f603235b153 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_303.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=303 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_303.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_304.sh b/test/ntuple_qcd_100_200/batch/sge_304.sh new file mode 100755 index 00000000000..62da7ccf24b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_304.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=304 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_304.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_305.sh b/test/ntuple_qcd_100_200/batch/sge_305.sh new file mode 100755 index 00000000000..b433be34a9d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_305.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=305 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_305.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_306.sh b/test/ntuple_qcd_100_200/batch/sge_306.sh new file mode 100755 index 00000000000..b266da32d1f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_306.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=306 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_306.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_307.sh b/test/ntuple_qcd_100_200/batch/sge_307.sh new file mode 100755 index 00000000000..b2059967f94 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_307.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=307 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_307.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_308.sh b/test/ntuple_qcd_100_200/batch/sge_308.sh new file mode 100755 index 00000000000..00b00d66efc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_308.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=308 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_308.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_309.sh b/test/ntuple_qcd_100_200/batch/sge_309.sh new file mode 100755 index 00000000000..156689d04e0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_309.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=309 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_309.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_31.sh b/test/ntuple_qcd_100_200/batch/sge_31.sh new file mode 100755 index 00000000000..09e75444b8f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_310.sh b/test/ntuple_qcd_100_200/batch/sge_310.sh new file mode 100755 index 00000000000..b3faf718460 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_310.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=310 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_310.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_311.sh b/test/ntuple_qcd_100_200/batch/sge_311.sh new file mode 100755 index 00000000000..344e02d44f3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_311.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=311 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_311.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_312.sh b/test/ntuple_qcd_100_200/batch/sge_312.sh new file mode 100755 index 00000000000..f6a36c1c40a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_312.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=312 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_312.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_313.sh b/test/ntuple_qcd_100_200/batch/sge_313.sh new file mode 100755 index 00000000000..94b7c41c0bb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_313.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=313 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_313.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_314.sh b/test/ntuple_qcd_100_200/batch/sge_314.sh new file mode 100755 index 00000000000..59a31316129 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_314.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=314 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_314.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_315.sh b/test/ntuple_qcd_100_200/batch/sge_315.sh new file mode 100755 index 00000000000..6860823b723 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_315.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=315 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_315.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_316.sh b/test/ntuple_qcd_100_200/batch/sge_316.sh new file mode 100755 index 00000000000..e56a8658bbb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_316.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=316 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_316.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_317.sh b/test/ntuple_qcd_100_200/batch/sge_317.sh new file mode 100755 index 00000000000..8dbc547b75e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_317.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=317 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_317.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_318.sh b/test/ntuple_qcd_100_200/batch/sge_318.sh new file mode 100755 index 00000000000..b01f84c1481 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_318.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=318 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_318.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_319.sh b/test/ntuple_qcd_100_200/batch/sge_319.sh new file mode 100755 index 00000000000..30deb02f4f0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_319.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=319 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_319.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_32.sh b/test/ntuple_qcd_100_200/batch/sge_32.sh new file mode 100755 index 00000000000..382b9a9a716 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_320.sh b/test/ntuple_qcd_100_200/batch/sge_320.sh new file mode 100755 index 00000000000..9ece79200b8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_320.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=320 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_320.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_321.sh b/test/ntuple_qcd_100_200/batch/sge_321.sh new file mode 100755 index 00000000000..7d44de7eed5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_321.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=321 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_321.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_322.sh b/test/ntuple_qcd_100_200/batch/sge_322.sh new file mode 100755 index 00000000000..73b77be78c6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_322.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=322 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_322.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_323.sh b/test/ntuple_qcd_100_200/batch/sge_323.sh new file mode 100755 index 00000000000..e9463efb575 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_323.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=323 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_323.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_324.sh b/test/ntuple_qcd_100_200/batch/sge_324.sh new file mode 100755 index 00000000000..9f74ad74eb2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_324.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=324 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_324.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_325.sh b/test/ntuple_qcd_100_200/batch/sge_325.sh new file mode 100755 index 00000000000..01adeb1e537 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_325.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=325 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_325.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_326.sh b/test/ntuple_qcd_100_200/batch/sge_326.sh new file mode 100755 index 00000000000..3a6a2a3dc93 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_326.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=326 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_326.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_327.sh b/test/ntuple_qcd_100_200/batch/sge_327.sh new file mode 100755 index 00000000000..c4a85dcbc7a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_327.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=327 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_327.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_328.sh b/test/ntuple_qcd_100_200/batch/sge_328.sh new file mode 100755 index 00000000000..ec29ae85b65 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_328.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=328 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_328.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_329.sh b/test/ntuple_qcd_100_200/batch/sge_329.sh new file mode 100755 index 00000000000..69ebbce427e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_329.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=329 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_329.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_33.sh b/test/ntuple_qcd_100_200/batch/sge_33.sh new file mode 100755 index 00000000000..aabb18b5165 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_330.sh b/test/ntuple_qcd_100_200/batch/sge_330.sh new file mode 100755 index 00000000000..d0390824a9b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_330.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=330 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_330.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_331.sh b/test/ntuple_qcd_100_200/batch/sge_331.sh new file mode 100755 index 00000000000..75ef4e06efa --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_331.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=331 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_331.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_332.sh b/test/ntuple_qcd_100_200/batch/sge_332.sh new file mode 100755 index 00000000000..77704a6786a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_332.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=332 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_332.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_333.sh b/test/ntuple_qcd_100_200/batch/sge_333.sh new file mode 100755 index 00000000000..bb53f0e4869 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_333.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=333 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_333.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_334.sh b/test/ntuple_qcd_100_200/batch/sge_334.sh new file mode 100755 index 00000000000..c32864d5e12 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_334.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=334 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_334.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_335.sh b/test/ntuple_qcd_100_200/batch/sge_335.sh new file mode 100755 index 00000000000..fe8da481062 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_335.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=335 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_335.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_336.sh b/test/ntuple_qcd_100_200/batch/sge_336.sh new file mode 100755 index 00000000000..dcd6978ccd5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_336.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=336 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_336.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_337.sh b/test/ntuple_qcd_100_200/batch/sge_337.sh new file mode 100755 index 00000000000..64e01b95e9a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_337.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=337 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_337.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_338.sh b/test/ntuple_qcd_100_200/batch/sge_338.sh new file mode 100755 index 00000000000..e5c46b104cc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_338.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=338 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_338.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_339.sh b/test/ntuple_qcd_100_200/batch/sge_339.sh new file mode 100755 index 00000000000..a6371ab502b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_339.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=339 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_339.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_34.sh b/test/ntuple_qcd_100_200/batch/sge_34.sh new file mode 100755 index 00000000000..88b6035850a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_340.sh b/test/ntuple_qcd_100_200/batch/sge_340.sh new file mode 100755 index 00000000000..13d12bb8160 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_340.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=340 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_340.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_341.sh b/test/ntuple_qcd_100_200/batch/sge_341.sh new file mode 100755 index 00000000000..aa3da91f623 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_341.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=341 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_341.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_342.sh b/test/ntuple_qcd_100_200/batch/sge_342.sh new file mode 100755 index 00000000000..5813fbe0149 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_342.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=342 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_342.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_343.sh b/test/ntuple_qcd_100_200/batch/sge_343.sh new file mode 100755 index 00000000000..b464723afea --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_343.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=343 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_343.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_344.sh b/test/ntuple_qcd_100_200/batch/sge_344.sh new file mode 100755 index 00000000000..8c8c7fc3667 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_344.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=344 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_344.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_345.sh b/test/ntuple_qcd_100_200/batch/sge_345.sh new file mode 100755 index 00000000000..665f7b4bbb6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_345.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=345 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_345.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_346.sh b/test/ntuple_qcd_100_200/batch/sge_346.sh new file mode 100755 index 00000000000..1ea0a9b037b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_346.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=346 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_346.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_347.sh b/test/ntuple_qcd_100_200/batch/sge_347.sh new file mode 100755 index 00000000000..7d6f8e701ba --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_347.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=347 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_347.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_348.sh b/test/ntuple_qcd_100_200/batch/sge_348.sh new file mode 100755 index 00000000000..b4c3daabfb7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_348.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=348 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_348.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_349.sh b/test/ntuple_qcd_100_200/batch/sge_349.sh new file mode 100755 index 00000000000..e23ee6e8b52 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_349.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=349 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_349.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_35.sh b/test/ntuple_qcd_100_200/batch/sge_35.sh new file mode 100755 index 00000000000..3f8f8a463af --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_350.sh b/test/ntuple_qcd_100_200/batch/sge_350.sh new file mode 100755 index 00000000000..965db4d57e8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_350.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=350 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_350.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_351.sh b/test/ntuple_qcd_100_200/batch/sge_351.sh new file mode 100755 index 00000000000..55fd7f766d3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_351.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=351 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_351.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_352.sh b/test/ntuple_qcd_100_200/batch/sge_352.sh new file mode 100755 index 00000000000..952fb2b965b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_352.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=352 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_352.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_353.sh b/test/ntuple_qcd_100_200/batch/sge_353.sh new file mode 100755 index 00000000000..88e492693ac --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_353.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=353 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_353.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_354.sh b/test/ntuple_qcd_100_200/batch/sge_354.sh new file mode 100755 index 00000000000..c8fa6916a09 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_354.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=354 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_354.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_355.sh b/test/ntuple_qcd_100_200/batch/sge_355.sh new file mode 100755 index 00000000000..53288dbdaa9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_355.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=355 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_355.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_356.sh b/test/ntuple_qcd_100_200/batch/sge_356.sh new file mode 100755 index 00000000000..55131ad0915 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_356.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=356 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_356.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_357.sh b/test/ntuple_qcd_100_200/batch/sge_357.sh new file mode 100755 index 00000000000..ffebb5d7a7e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_357.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=357 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_357.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_358.sh b/test/ntuple_qcd_100_200/batch/sge_358.sh new file mode 100755 index 00000000000..666841a7bae --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_358.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=358 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_358.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_359.sh b/test/ntuple_qcd_100_200/batch/sge_359.sh new file mode 100755 index 00000000000..84eeeab7b7b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_359.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=359 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_359.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_36.sh b/test/ntuple_qcd_100_200/batch/sge_36.sh new file mode 100755 index 00000000000..75b74514247 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_360.sh b/test/ntuple_qcd_100_200/batch/sge_360.sh new file mode 100755 index 00000000000..c3428901217 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_360.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=360 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_360.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_361.sh b/test/ntuple_qcd_100_200/batch/sge_361.sh new file mode 100755 index 00000000000..ef8619818be --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_361.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=361 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_361.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_362.sh b/test/ntuple_qcd_100_200/batch/sge_362.sh new file mode 100755 index 00000000000..9a6d8dc05bc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_362.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=362 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_362.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_363.sh b/test/ntuple_qcd_100_200/batch/sge_363.sh new file mode 100755 index 00000000000..6eb3962d94e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_363.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=363 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_363.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_364.sh b/test/ntuple_qcd_100_200/batch/sge_364.sh new file mode 100755 index 00000000000..ac2913570aa --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_364.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=364 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_364.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_365.sh b/test/ntuple_qcd_100_200/batch/sge_365.sh new file mode 100755 index 00000000000..5bc638685e1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_365.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=365 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_365.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_366.sh b/test/ntuple_qcd_100_200/batch/sge_366.sh new file mode 100755 index 00000000000..ae8c8563059 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_366.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=366 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_366.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_367.sh b/test/ntuple_qcd_100_200/batch/sge_367.sh new file mode 100755 index 00000000000..b4f73cc1ec0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_367.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=367 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_367.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_368.sh b/test/ntuple_qcd_100_200/batch/sge_368.sh new file mode 100755 index 00000000000..f8b3d1460b2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_368.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=368 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_368.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_369.sh b/test/ntuple_qcd_100_200/batch/sge_369.sh new file mode 100755 index 00000000000..fd909177b0d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_369.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=369 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_369.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_37.sh b/test/ntuple_qcd_100_200/batch/sge_37.sh new file mode 100755 index 00000000000..e8cb9bc5b1a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_370.sh b/test/ntuple_qcd_100_200/batch/sge_370.sh new file mode 100755 index 00000000000..f1393ecdc65 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_370.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=370 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_370.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_371.sh b/test/ntuple_qcd_100_200/batch/sge_371.sh new file mode 100755 index 00000000000..9bb027bacb9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_371.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=371 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_371.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_372.sh b/test/ntuple_qcd_100_200/batch/sge_372.sh new file mode 100755 index 00000000000..8c853d1f11b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_372.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=372 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_372.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_373.sh b/test/ntuple_qcd_100_200/batch/sge_373.sh new file mode 100755 index 00000000000..d036be67545 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_373.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=373 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_373.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_374.sh b/test/ntuple_qcd_100_200/batch/sge_374.sh new file mode 100755 index 00000000000..684f2f5e646 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_374.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=374 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_374.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_375.sh b/test/ntuple_qcd_100_200/batch/sge_375.sh new file mode 100755 index 00000000000..3f59610c3cd --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_375.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=375 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_375.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_376.sh b/test/ntuple_qcd_100_200/batch/sge_376.sh new file mode 100755 index 00000000000..d6e2784d60b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_376.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=376 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_376.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_377.sh b/test/ntuple_qcd_100_200/batch/sge_377.sh new file mode 100755 index 00000000000..7ab59df686b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_377.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=377 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_377.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_378.sh b/test/ntuple_qcd_100_200/batch/sge_378.sh new file mode 100755 index 00000000000..46374308ab7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_378.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=378 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_378.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_379.sh b/test/ntuple_qcd_100_200/batch/sge_379.sh new file mode 100755 index 00000000000..bdc25039a27 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_379.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=379 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_379.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_38.sh b/test/ntuple_qcd_100_200/batch/sge_38.sh new file mode 100755 index 00000000000..46514e8b033 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_380.sh b/test/ntuple_qcd_100_200/batch/sge_380.sh new file mode 100755 index 00000000000..458985ad2c1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_380.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=380 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_380.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_381.sh b/test/ntuple_qcd_100_200/batch/sge_381.sh new file mode 100755 index 00000000000..e3a485cca0b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_381.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=381 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_381.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_382.sh b/test/ntuple_qcd_100_200/batch/sge_382.sh new file mode 100755 index 00000000000..ad93f230fe6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_382.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=382 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_382.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_383.sh b/test/ntuple_qcd_100_200/batch/sge_383.sh new file mode 100755 index 00000000000..5948bb8da6e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_383.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=383 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_383.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_384.sh b/test/ntuple_qcd_100_200/batch/sge_384.sh new file mode 100755 index 00000000000..9ded279cb67 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_384.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=384 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_384.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_385.sh b/test/ntuple_qcd_100_200/batch/sge_385.sh new file mode 100755 index 00000000000..2d5607f632f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_385.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=385 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_385.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_386.sh b/test/ntuple_qcd_100_200/batch/sge_386.sh new file mode 100755 index 00000000000..4adcdc1b89d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_386.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=386 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_386.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_387.sh b/test/ntuple_qcd_100_200/batch/sge_387.sh new file mode 100755 index 00000000000..94b9a3e8c8e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_387.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=387 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_387.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_388.sh b/test/ntuple_qcd_100_200/batch/sge_388.sh new file mode 100755 index 00000000000..d7698d37e35 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_388.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=388 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_388.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_389.sh b/test/ntuple_qcd_100_200/batch/sge_389.sh new file mode 100755 index 00000000000..d8c484bb97e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_389.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=389 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_389.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_39.sh b/test/ntuple_qcd_100_200/batch/sge_39.sh new file mode 100755 index 00000000000..ffc641f60d4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_390.sh b/test/ntuple_qcd_100_200/batch/sge_390.sh new file mode 100755 index 00000000000..97475588ab3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_390.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=390 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_390.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_391.sh b/test/ntuple_qcd_100_200/batch/sge_391.sh new file mode 100755 index 00000000000..dfb0248ee5a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_391.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=391 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_391.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_392.sh b/test/ntuple_qcd_100_200/batch/sge_392.sh new file mode 100755 index 00000000000..3ed14a447d0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_392.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=392 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_392.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_393.sh b/test/ntuple_qcd_100_200/batch/sge_393.sh new file mode 100755 index 00000000000..f427684f9b8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_393.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=393 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_393.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_394.sh b/test/ntuple_qcd_100_200/batch/sge_394.sh new file mode 100755 index 00000000000..24e3f69a933 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_394.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=394 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_394.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_395.sh b/test/ntuple_qcd_100_200/batch/sge_395.sh new file mode 100755 index 00000000000..9e9de97f074 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_395.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=395 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_395.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_396.sh b/test/ntuple_qcd_100_200/batch/sge_396.sh new file mode 100755 index 00000000000..83727bdab7e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_396.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=396 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_396.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_397.sh b/test/ntuple_qcd_100_200/batch/sge_397.sh new file mode 100755 index 00000000000..ed42f39bef6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_397.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=397 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_397.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_398.sh b/test/ntuple_qcd_100_200/batch/sge_398.sh new file mode 100755 index 00000000000..15be61eab72 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_398.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=398 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_398.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_399.sh b/test/ntuple_qcd_100_200/batch/sge_399.sh new file mode 100755 index 00000000000..f83c1a8fd3e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_399.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=399 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_399.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_4.sh b/test/ntuple_qcd_100_200/batch/sge_4.sh new file mode 100755 index 00000000000..722acdc4327 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_40.sh b/test/ntuple_qcd_100_200/batch/sge_40.sh new file mode 100755 index 00000000000..c9d8a94c000 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_400.sh b/test/ntuple_qcd_100_200/batch/sge_400.sh new file mode 100755 index 00000000000..7be35543b05 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_400.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=400 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_400.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_401.sh b/test/ntuple_qcd_100_200/batch/sge_401.sh new file mode 100755 index 00000000000..344570154ae --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_401.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=401 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_401.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_402.sh b/test/ntuple_qcd_100_200/batch/sge_402.sh new file mode 100755 index 00000000000..a787543bd3c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_402.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=402 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_402.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_403.sh b/test/ntuple_qcd_100_200/batch/sge_403.sh new file mode 100755 index 00000000000..ea29e69fe63 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_403.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=403 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_403.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_404.sh b/test/ntuple_qcd_100_200/batch/sge_404.sh new file mode 100755 index 00000000000..b1dbf48a710 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_404.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=404 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_404.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_405.sh b/test/ntuple_qcd_100_200/batch/sge_405.sh new file mode 100755 index 00000000000..1547e6c8304 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_405.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=405 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_405.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_406.sh b/test/ntuple_qcd_100_200/batch/sge_406.sh new file mode 100755 index 00000000000..c2cd7fb336d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_406.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=406 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_406.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_407.sh b/test/ntuple_qcd_100_200/batch/sge_407.sh new file mode 100755 index 00000000000..23dbc52d086 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_407.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=407 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_407.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_408.sh b/test/ntuple_qcd_100_200/batch/sge_408.sh new file mode 100755 index 00000000000..f4c92c978b7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_408.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=408 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_408.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_409.sh b/test/ntuple_qcd_100_200/batch/sge_409.sh new file mode 100755 index 00000000000..1c42a74a866 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_409.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=409 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_409.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_41.sh b/test/ntuple_qcd_100_200/batch/sge_41.sh new file mode 100755 index 00000000000..b62b515e7ca --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_410.sh b/test/ntuple_qcd_100_200/batch/sge_410.sh new file mode 100755 index 00000000000..3c82feb9080 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_410.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=410 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_410.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_411.sh b/test/ntuple_qcd_100_200/batch/sge_411.sh new file mode 100755 index 00000000000..db9d06c2076 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_411.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=411 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_411.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_412.sh b/test/ntuple_qcd_100_200/batch/sge_412.sh new file mode 100755 index 00000000000..29ae27f2d89 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_412.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=412 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_412.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_413.sh b/test/ntuple_qcd_100_200/batch/sge_413.sh new file mode 100755 index 00000000000..705c8c6c3e0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_413.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=413 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_413.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_414.sh b/test/ntuple_qcd_100_200/batch/sge_414.sh new file mode 100755 index 00000000000..c5509894714 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_414.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=414 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_414.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_415.sh b/test/ntuple_qcd_100_200/batch/sge_415.sh new file mode 100755 index 00000000000..afee33e3d96 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_415.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=415 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_415.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_416.sh b/test/ntuple_qcd_100_200/batch/sge_416.sh new file mode 100755 index 00000000000..536e8dec0eb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_416.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=416 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_416.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_417.sh b/test/ntuple_qcd_100_200/batch/sge_417.sh new file mode 100755 index 00000000000..5bd57c0d5f1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_417.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=417 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_417.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_418.sh b/test/ntuple_qcd_100_200/batch/sge_418.sh new file mode 100755 index 00000000000..f71b493d13b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_418.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=418 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_418.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_419.sh b/test/ntuple_qcd_100_200/batch/sge_419.sh new file mode 100755 index 00000000000..e5e5c39cf67 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_419.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=419 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_419.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_42.sh b/test/ntuple_qcd_100_200/batch/sge_42.sh new file mode 100755 index 00000000000..fcc9ad15681 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_420.sh b/test/ntuple_qcd_100_200/batch/sge_420.sh new file mode 100755 index 00000000000..c6a5fd2f579 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_420.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=420 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_420.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_421.sh b/test/ntuple_qcd_100_200/batch/sge_421.sh new file mode 100755 index 00000000000..4d7680ccb53 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_421.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=421 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_421.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_422.sh b/test/ntuple_qcd_100_200/batch/sge_422.sh new file mode 100755 index 00000000000..e17e326f273 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_422.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=422 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_422.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_423.sh b/test/ntuple_qcd_100_200/batch/sge_423.sh new file mode 100755 index 00000000000..95185229ed5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_423.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=423 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_423.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_424.sh b/test/ntuple_qcd_100_200/batch/sge_424.sh new file mode 100755 index 00000000000..066f8eb54ae --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_424.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=424 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_424.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_425.sh b/test/ntuple_qcd_100_200/batch/sge_425.sh new file mode 100755 index 00000000000..c9b3e108b10 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_425.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=425 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_425.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_426.sh b/test/ntuple_qcd_100_200/batch/sge_426.sh new file mode 100755 index 00000000000..ad71d0c2c4a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_426.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=426 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_426.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_427.sh b/test/ntuple_qcd_100_200/batch/sge_427.sh new file mode 100755 index 00000000000..c8affca13e1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_427.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=427 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_427.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_428.sh b/test/ntuple_qcd_100_200/batch/sge_428.sh new file mode 100755 index 00000000000..3471318ef39 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_428.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=428 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_428.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_429.sh b/test/ntuple_qcd_100_200/batch/sge_429.sh new file mode 100755 index 00000000000..c969c744aa4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_429.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=429 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_429.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_43.sh b/test/ntuple_qcd_100_200/batch/sge_43.sh new file mode 100755 index 00000000000..fa78b76e702 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_430.sh b/test/ntuple_qcd_100_200/batch/sge_430.sh new file mode 100755 index 00000000000..ebe9512cb17 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_430.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=430 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_430.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_431.sh b/test/ntuple_qcd_100_200/batch/sge_431.sh new file mode 100755 index 00000000000..ae283d09a41 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_431.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=431 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_431.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_432.sh b/test/ntuple_qcd_100_200/batch/sge_432.sh new file mode 100755 index 00000000000..41af62aba2b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_432.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=432 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_432.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_433.sh b/test/ntuple_qcd_100_200/batch/sge_433.sh new file mode 100755 index 00000000000..29f65d6b91a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_433.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=433 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_433.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_434.sh b/test/ntuple_qcd_100_200/batch/sge_434.sh new file mode 100755 index 00000000000..467da785d10 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_434.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=434 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_434.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_435.sh b/test/ntuple_qcd_100_200/batch/sge_435.sh new file mode 100755 index 00000000000..c44acd8f438 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_435.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=435 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_435.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_436.sh b/test/ntuple_qcd_100_200/batch/sge_436.sh new file mode 100755 index 00000000000..66097a3242f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_436.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=436 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_436.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_437.sh b/test/ntuple_qcd_100_200/batch/sge_437.sh new file mode 100755 index 00000000000..c0897cae2e0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_437.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=437 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_437.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_438.sh b/test/ntuple_qcd_100_200/batch/sge_438.sh new file mode 100755 index 00000000000..07bb4849750 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_438.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=438 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_438.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_439.sh b/test/ntuple_qcd_100_200/batch/sge_439.sh new file mode 100755 index 00000000000..785960820ba --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_439.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=439 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_439.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_44.sh b/test/ntuple_qcd_100_200/batch/sge_44.sh new file mode 100755 index 00000000000..b537d88ff19 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_440.sh b/test/ntuple_qcd_100_200/batch/sge_440.sh new file mode 100755 index 00000000000..0624f586f5d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_440.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=440 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_440.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_441.sh b/test/ntuple_qcd_100_200/batch/sge_441.sh new file mode 100755 index 00000000000..aed24b06d28 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_441.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=441 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_441.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_442.sh b/test/ntuple_qcd_100_200/batch/sge_442.sh new file mode 100755 index 00000000000..c76a43902d3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_442.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=442 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_442.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_443.sh b/test/ntuple_qcd_100_200/batch/sge_443.sh new file mode 100755 index 00000000000..d28bef0ac97 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_443.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=443 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_443.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_444.sh b/test/ntuple_qcd_100_200/batch/sge_444.sh new file mode 100755 index 00000000000..60425c30e7e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_444.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=444 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_444.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_445.sh b/test/ntuple_qcd_100_200/batch/sge_445.sh new file mode 100755 index 00000000000..47876290541 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_445.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=445 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_445.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_446.sh b/test/ntuple_qcd_100_200/batch/sge_446.sh new file mode 100755 index 00000000000..ad77b90a074 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_446.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=446 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_446.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_447.sh b/test/ntuple_qcd_100_200/batch/sge_447.sh new file mode 100755 index 00000000000..0268353ef2f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_447.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=447 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_447.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_448.sh b/test/ntuple_qcd_100_200/batch/sge_448.sh new file mode 100755 index 00000000000..7bf2502e98a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_448.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=448 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_448.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_449.sh b/test/ntuple_qcd_100_200/batch/sge_449.sh new file mode 100755 index 00000000000..b1b7b4e8a7b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_449.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=449 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_449.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_45.sh b/test/ntuple_qcd_100_200/batch/sge_45.sh new file mode 100755 index 00000000000..3ce6c52a479 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_450.sh b/test/ntuple_qcd_100_200/batch/sge_450.sh new file mode 100755 index 00000000000..f273109c90d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_450.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=450 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_450.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_451.sh b/test/ntuple_qcd_100_200/batch/sge_451.sh new file mode 100755 index 00000000000..99d88a087ff --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_451.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=451 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_451.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_452.sh b/test/ntuple_qcd_100_200/batch/sge_452.sh new file mode 100755 index 00000000000..c9dc87de289 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_452.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=452 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_452.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_453.sh b/test/ntuple_qcd_100_200/batch/sge_453.sh new file mode 100755 index 00000000000..48df510c0d2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_453.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=453 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_453.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_454.sh b/test/ntuple_qcd_100_200/batch/sge_454.sh new file mode 100755 index 00000000000..3d15c5be731 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_454.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=454 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_454.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_455.sh b/test/ntuple_qcd_100_200/batch/sge_455.sh new file mode 100755 index 00000000000..4526ca40ce0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_455.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=455 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_455.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_456.sh b/test/ntuple_qcd_100_200/batch/sge_456.sh new file mode 100755 index 00000000000..767f5297d6d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_456.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=456 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_456.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_457.sh b/test/ntuple_qcd_100_200/batch/sge_457.sh new file mode 100755 index 00000000000..37a80228103 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_457.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=457 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_457.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_458.sh b/test/ntuple_qcd_100_200/batch/sge_458.sh new file mode 100755 index 00000000000..d225e17a571 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_458.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=458 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_458.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_459.sh b/test/ntuple_qcd_100_200/batch/sge_459.sh new file mode 100755 index 00000000000..6cd1bdc44e9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_459.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=459 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_459.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_46.sh b/test/ntuple_qcd_100_200/batch/sge_46.sh new file mode 100755 index 00000000000..e43a396d00e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_460.sh b/test/ntuple_qcd_100_200/batch/sge_460.sh new file mode 100755 index 00000000000..d5ed456487a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_460.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=460 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_460.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_461.sh b/test/ntuple_qcd_100_200/batch/sge_461.sh new file mode 100755 index 00000000000..a149b03e69d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_461.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=461 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_461.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_462.sh b/test/ntuple_qcd_100_200/batch/sge_462.sh new file mode 100755 index 00000000000..21bed29d24b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_462.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=462 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_462.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_463.sh b/test/ntuple_qcd_100_200/batch/sge_463.sh new file mode 100755 index 00000000000..07dafcceb2d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_463.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=463 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_463.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_464.sh b/test/ntuple_qcd_100_200/batch/sge_464.sh new file mode 100755 index 00000000000..a1c44d51a17 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_464.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=464 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_464.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_465.sh b/test/ntuple_qcd_100_200/batch/sge_465.sh new file mode 100755 index 00000000000..93370ce5436 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_465.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=465 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_465.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_466.sh b/test/ntuple_qcd_100_200/batch/sge_466.sh new file mode 100755 index 00000000000..1c066ac482c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_466.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=466 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_466.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_467.sh b/test/ntuple_qcd_100_200/batch/sge_467.sh new file mode 100755 index 00000000000..14a2e3efb26 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_467.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=467 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_467.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_468.sh b/test/ntuple_qcd_100_200/batch/sge_468.sh new file mode 100755 index 00000000000..20f83503a1c --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_468.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=468 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_468.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_469.sh b/test/ntuple_qcd_100_200/batch/sge_469.sh new file mode 100755 index 00000000000..f3f6d8e540a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_469.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=469 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_469.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_47.sh b/test/ntuple_qcd_100_200/batch/sge_47.sh new file mode 100755 index 00000000000..e14011f75ba --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_470.sh b/test/ntuple_qcd_100_200/batch/sge_470.sh new file mode 100755 index 00000000000..8578abc4d0b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_470.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=470 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_470.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_471.sh b/test/ntuple_qcd_100_200/batch/sge_471.sh new file mode 100755 index 00000000000..a8dfc378bc9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_471.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=471 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_471.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_472.sh b/test/ntuple_qcd_100_200/batch/sge_472.sh new file mode 100755 index 00000000000..e846126a84f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_472.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=472 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_472.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_473.sh b/test/ntuple_qcd_100_200/batch/sge_473.sh new file mode 100755 index 00000000000..2fa436cfc9d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_473.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=473 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_473.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_474.sh b/test/ntuple_qcd_100_200/batch/sge_474.sh new file mode 100755 index 00000000000..7cc30df6ab9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_474.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=474 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_474.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_475.sh b/test/ntuple_qcd_100_200/batch/sge_475.sh new file mode 100755 index 00000000000..dae112724ae --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_475.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=475 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_475.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_476.sh b/test/ntuple_qcd_100_200/batch/sge_476.sh new file mode 100755 index 00000000000..76a116bbab4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_476.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=476 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_476.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_477.sh b/test/ntuple_qcd_100_200/batch/sge_477.sh new file mode 100755 index 00000000000..d160a77e765 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_477.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=477 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_477.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_478.sh b/test/ntuple_qcd_100_200/batch/sge_478.sh new file mode 100755 index 00000000000..4d9b856ca4a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_478.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=478 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_478.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_479.sh b/test/ntuple_qcd_100_200/batch/sge_479.sh new file mode 100755 index 00000000000..4d1a4951ac4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_479.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=479 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_479.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_48.sh b/test/ntuple_qcd_100_200/batch/sge_48.sh new file mode 100755 index 00000000000..2067399b368 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_480.sh b/test/ntuple_qcd_100_200/batch/sge_480.sh new file mode 100755 index 00000000000..05861605742 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_480.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=480 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_480.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_481.sh b/test/ntuple_qcd_100_200/batch/sge_481.sh new file mode 100755 index 00000000000..4341db34a36 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_481.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=481 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_481.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_482.sh b/test/ntuple_qcd_100_200/batch/sge_482.sh new file mode 100755 index 00000000000..30ef927676b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_482.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=482 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_482.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_483.sh b/test/ntuple_qcd_100_200/batch/sge_483.sh new file mode 100755 index 00000000000..8a8451a3065 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_483.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=483 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_483.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_484.sh b/test/ntuple_qcd_100_200/batch/sge_484.sh new file mode 100755 index 00000000000..45119f95551 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_484.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=484 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_484.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_485.sh b/test/ntuple_qcd_100_200/batch/sge_485.sh new file mode 100755 index 00000000000..e3bb9f642d0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_485.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=485 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_485.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_486.sh b/test/ntuple_qcd_100_200/batch/sge_486.sh new file mode 100755 index 00000000000..a7ea04fdbd3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_486.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=486 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_486.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_487.sh b/test/ntuple_qcd_100_200/batch/sge_487.sh new file mode 100755 index 00000000000..61c2189b131 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_487.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=487 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_487.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_488.sh b/test/ntuple_qcd_100_200/batch/sge_488.sh new file mode 100755 index 00000000000..8874a41f2bb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_488.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=488 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_488.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_489.sh b/test/ntuple_qcd_100_200/batch/sge_489.sh new file mode 100755 index 00000000000..54bf183c5c6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_489.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=489 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_489.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_49.sh b/test/ntuple_qcd_100_200/batch/sge_49.sh new file mode 100755 index 00000000000..0550c36ddaf --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_490.sh b/test/ntuple_qcd_100_200/batch/sge_490.sh new file mode 100755 index 00000000000..561dcbf3ccc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_490.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=490 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_490.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_491.sh b/test/ntuple_qcd_100_200/batch/sge_491.sh new file mode 100755 index 00000000000..e7098c06213 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_491.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=491 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_491.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_492.sh b/test/ntuple_qcd_100_200/batch/sge_492.sh new file mode 100755 index 00000000000..a1a113b09eb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_492.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=492 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_492.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_493.sh b/test/ntuple_qcd_100_200/batch/sge_493.sh new file mode 100755 index 00000000000..37ea9d21c7d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_493.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=493 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_493.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_494.sh b/test/ntuple_qcd_100_200/batch/sge_494.sh new file mode 100755 index 00000000000..3541d45633d --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_494.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=494 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_494.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_495.sh b/test/ntuple_qcd_100_200/batch/sge_495.sh new file mode 100755 index 00000000000..0232140f7d6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_495.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=495 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_495.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_496.sh b/test/ntuple_qcd_100_200/batch/sge_496.sh new file mode 100755 index 00000000000..2bdf452e4a5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_496.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=496 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_496.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_497.sh b/test/ntuple_qcd_100_200/batch/sge_497.sh new file mode 100755 index 00000000000..9627cd5dfbe --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_497.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=497 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_497.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_498.sh b/test/ntuple_qcd_100_200/batch/sge_498.sh new file mode 100755 index 00000000000..f7a12942079 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_498.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=498 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_498.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_499.sh b/test/ntuple_qcd_100_200/batch/sge_499.sh new file mode 100755 index 00000000000..4a84802b420 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_499.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=499 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_499.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_5.sh b/test/ntuple_qcd_100_200/batch/sge_5.sh new file mode 100755 index 00000000000..cd258aafa1f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_50.sh b/test/ntuple_qcd_100_200/batch/sge_50.sh new file mode 100755 index 00000000000..8bd7e0d00df --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_51.sh b/test/ntuple_qcd_100_200/batch/sge_51.sh new file mode 100755 index 00000000000..3b9c7db96f9 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_52.sh b/test/ntuple_qcd_100_200/batch/sge_52.sh new file mode 100755 index 00000000000..8deb92847b2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_53.sh b/test/ntuple_qcd_100_200/batch/sge_53.sh new file mode 100755 index 00000000000..bf95ac1ea9b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_54.sh b/test/ntuple_qcd_100_200/batch/sge_54.sh new file mode 100755 index 00000000000..223d05df026 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_55.sh b/test/ntuple_qcd_100_200/batch/sge_55.sh new file mode 100755 index 00000000000..75ac4374e60 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_56.sh b/test/ntuple_qcd_100_200/batch/sge_56.sh new file mode 100755 index 00000000000..ef721c855d7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_57.sh b/test/ntuple_qcd_100_200/batch/sge_57.sh new file mode 100755 index 00000000000..f05afd26188 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_58.sh b/test/ntuple_qcd_100_200/batch/sge_58.sh new file mode 100755 index 00000000000..1d0aacc911b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_59.sh b/test/ntuple_qcd_100_200/batch/sge_59.sh new file mode 100755 index 00000000000..56e331b77ba --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_6.sh b/test/ntuple_qcd_100_200/batch/sge_6.sh new file mode 100755 index 00000000000..612fe7db9d3 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_60.sh b/test/ntuple_qcd_100_200/batch/sge_60.sh new file mode 100755 index 00000000000..c158bfe3ffb --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_61.sh b/test/ntuple_qcd_100_200/batch/sge_61.sh new file mode 100755 index 00000000000..77124adeb5b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_62.sh b/test/ntuple_qcd_100_200/batch/sge_62.sh new file mode 100755 index 00000000000..a19cef24bf1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_63.sh b/test/ntuple_qcd_100_200/batch/sge_63.sh new file mode 100755 index 00000000000..fe883150112 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_64.sh b/test/ntuple_qcd_100_200/batch/sge_64.sh new file mode 100755 index 00000000000..ab614fdc30f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_65.sh b/test/ntuple_qcd_100_200/batch/sge_65.sh new file mode 100755 index 00000000000..330ef3e6120 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_66.sh b/test/ntuple_qcd_100_200/batch/sge_66.sh new file mode 100755 index 00000000000..b7531a6a1a4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_67.sh b/test/ntuple_qcd_100_200/batch/sge_67.sh new file mode 100755 index 00000000000..fe293754424 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_68.sh b/test/ntuple_qcd_100_200/batch/sge_68.sh new file mode 100755 index 00000000000..231e80f19b5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_69.sh b/test/ntuple_qcd_100_200/batch/sge_69.sh new file mode 100755 index 00000000000..e1b93d8eb38 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_7.sh b/test/ntuple_qcd_100_200/batch/sge_7.sh new file mode 100755 index 00000000000..1c7b9b50a28 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_70.sh b/test/ntuple_qcd_100_200/batch/sge_70.sh new file mode 100755 index 00000000000..98bdccb777b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_71.sh b/test/ntuple_qcd_100_200/batch/sge_71.sh new file mode 100755 index 00000000000..5b5555481d4 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_72.sh b/test/ntuple_qcd_100_200/batch/sge_72.sh new file mode 100755 index 00000000000..02f4f671b49 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_73.sh b/test/ntuple_qcd_100_200/batch/sge_73.sh new file mode 100755 index 00000000000..3b979a542b6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_74.sh b/test/ntuple_qcd_100_200/batch/sge_74.sh new file mode 100755 index 00000000000..5938e2f31b2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_75.sh b/test/ntuple_qcd_100_200/batch/sge_75.sh new file mode 100755 index 00000000000..aa47e353d89 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_76.sh b/test/ntuple_qcd_100_200/batch/sge_76.sh new file mode 100755 index 00000000000..0f809e9cba8 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_77.sh b/test/ntuple_qcd_100_200/batch/sge_77.sh new file mode 100755 index 00000000000..9bab9cc0d54 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_78.sh b/test/ntuple_qcd_100_200/batch/sge_78.sh new file mode 100755 index 00000000000..e2e2d1e88b2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_79.sh b/test/ntuple_qcd_100_200/batch/sge_79.sh new file mode 100755 index 00000000000..5614cb19f60 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_8.sh b/test/ntuple_qcd_100_200/batch/sge_8.sh new file mode 100755 index 00000000000..8a2b23a259a --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_80.sh b/test/ntuple_qcd_100_200/batch/sge_80.sh new file mode 100755 index 00000000000..11a43fc97a0 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_81.sh b/test/ntuple_qcd_100_200/batch/sge_81.sh new file mode 100755 index 00000000000..779e259065f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_82.sh b/test/ntuple_qcd_100_200/batch/sge_82.sh new file mode 100755 index 00000000000..5966d82983f --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_83.sh b/test/ntuple_qcd_100_200/batch/sge_83.sh new file mode 100755 index 00000000000..b906028e3d7 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_84.sh b/test/ntuple_qcd_100_200/batch/sge_84.sh new file mode 100755 index 00000000000..fc5b12f0d32 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_85.sh b/test/ntuple_qcd_100_200/batch/sge_85.sh new file mode 100755 index 00000000000..90781e34cb5 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_86.sh b/test/ntuple_qcd_100_200/batch/sge_86.sh new file mode 100755 index 00000000000..fa08268ed5e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_87.sh b/test/ntuple_qcd_100_200/batch/sge_87.sh new file mode 100755 index 00000000000..d8a097bdb15 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_88.sh b/test/ntuple_qcd_100_200/batch/sge_88.sh new file mode 100755 index 00000000000..ea9022fc134 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_89.sh b/test/ntuple_qcd_100_200/batch/sge_89.sh new file mode 100755 index 00000000000..6f11b9aa46b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_9.sh b/test/ntuple_qcd_100_200/batch/sge_9.sh new file mode 100755 index 00000000000..d66846a6ccc --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_90.sh b/test/ntuple_qcd_100_200/batch/sge_90.sh new file mode 100755 index 00000000000..c492c13dc85 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_91.sh b/test/ntuple_qcd_100_200/batch/sge_91.sh new file mode 100755 index 00000000000..977d31aa995 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_92.sh b/test/ntuple_qcd_100_200/batch/sge_92.sh new file mode 100755 index 00000000000..11ee56d032b --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_93.sh b/test/ntuple_qcd_100_200/batch/sge_93.sh new file mode 100755 index 00000000000..f207f7bc034 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_94.sh b/test/ntuple_qcd_100_200/batch/sge_94.sh new file mode 100755 index 00000000000..b891b6a10a1 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_95.sh b/test/ntuple_qcd_100_200/batch/sge_95.sh new file mode 100755 index 00000000000..58c46d80b2e --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_96.sh b/test/ntuple_qcd_100_200/batch/sge_96.sh new file mode 100755 index 00000000000..ec3053504f6 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_97.sh b/test/ntuple_qcd_100_200/batch/sge_97.sh new file mode 100755 index 00000000000..9c69e2068b2 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_98.sh b/test/ntuple_qcd_100_200/batch/sge_98.sh new file mode 100755 index 00000000000..af3b74f1103 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_99.sh b/test/ntuple_qcd_100_200/batch/sge_99.sh new file mode 100755 index 00000000000..13eb30c5459 --- /dev/null +++ b/test/ntuple_qcd_100_200/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batchscript.sh b/test/ntuple_qcd_100_200/batchscript.sh new file mode 100755 index 00000000000..22ce21db38c --- /dev/null +++ b/test/ntuple_qcd_100_200/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_100_200" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/condor.sub b/test/ntuple_qcd_100_200/condor.sub new file mode 100644 index 00000000000..97c8e050939 --- /dev/null +++ b/test/ntuple_qcd_100_200/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 500 + \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/helper b/test/ntuple_qcd_100_200/helper new file mode 120000 index 00000000000..93b6f58ca3b --- /dev/null +++ b/test/ntuple_qcd_100_200/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_100_200/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/output b/test/ntuple_qcd_100_200/output new file mode 120000 index 00000000000..7220445e9ca --- /dev/null +++ b/test/ntuple_qcd_100_200/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/sge_sub.sh b/test/ntuple_qcd_100_200/sge_sub.sh new file mode 100755 index 00000000000..08ab37a7061 --- /dev/null +++ b/test/ntuple_qcd_100_200/sge_sub.sh @@ -0,0 +1,500 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_182.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_183.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_184.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_185.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_186.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_187.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_188.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_189.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_190.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_191.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_192.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_193.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_194.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_195.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_196.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_197.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_198.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_199.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_200.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_201.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_202.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_203.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_204.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_205.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_206.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_207.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_208.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_209.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_210.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_211.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_212.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_213.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_214.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_215.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_216.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_217.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_218.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_219.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_220.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_221.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_222.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_223.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_224.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_225.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_226.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_227.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_228.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_229.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_230.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_231.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_232.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_233.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_234.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_235.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_236.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_237.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_238.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_239.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_240.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_241.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_242.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_243.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_244.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_245.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_246.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_247.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_248.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_249.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_250.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_251.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_252.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_253.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_254.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_255.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_256.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_257.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_258.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_259.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_260.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_261.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_262.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_263.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_264.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_265.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_266.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_267.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_268.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_269.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_270.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_271.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_272.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_273.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_274.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_275.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_276.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_277.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_278.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_279.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_280.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_281.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_282.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_283.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_284.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_285.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_286.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_287.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_288.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_289.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_290.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_291.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_292.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_293.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_294.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_295.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_296.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_297.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_298.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_299.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_300.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_301.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_302.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_303.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_304.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_305.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_306.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_307.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_308.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_309.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_310.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_311.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_312.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_313.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_314.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_315.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_316.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_317.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_318.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_319.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_320.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_321.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_322.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_323.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_324.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_325.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_326.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_327.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_328.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_329.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_330.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_331.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_332.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_333.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_334.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_335.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_336.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_337.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_338.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_339.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_340.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_341.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_342.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_343.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_344.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_345.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_346.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_347.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_348.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_349.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_350.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_351.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_352.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_353.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_354.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_355.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_356.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_357.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_358.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_359.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_360.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_361.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_362.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_363.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_364.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_365.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_366.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_367.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_368.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_369.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_370.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_371.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_372.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_373.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_374.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_375.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_376.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_377.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_378.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_379.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_380.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_381.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_382.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_383.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_384.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_385.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_386.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_387.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_388.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_389.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_390.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_391.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_392.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_393.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_394.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_395.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_396.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_397.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_398.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_399.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_400.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_401.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_402.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_403.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_404.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_405.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_406.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_407.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_408.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_409.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_410.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_411.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_412.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_413.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_414.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_415.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_416.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_417.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_418.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_419.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_420.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_421.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_422.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_423.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_424.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_425.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_426.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_427.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_428.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_429.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_430.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_431.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_432.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_433.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_434.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_435.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_436.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_437.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_438.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_439.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_440.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_441.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_442.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_443.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_444.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_445.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_446.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_447.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_448.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_449.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_450.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_451.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_452.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_453.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_454.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_455.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_456.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_457.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_458.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_459.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_460.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_461.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_462.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_463.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_464.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_465.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_466.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_467.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_468.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_469.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_470.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_471.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_472.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_473.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_474.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_475.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_476.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_477.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_478.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_479.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_480.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_481.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_482.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_483.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_484.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_485.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_486.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_487.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_488.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_489.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_490.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_491.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_492.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_493.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_494.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_495.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_496.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_497.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_498.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_499.sh diff --git a/test/ntuple_qcd_1500_2000/ademoor.cc b/test/ntuple_qcd_1500_2000/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..deaf2b8f091d82a2cfd16a3f14f66f2eb0eaa7e9 GIT binary patch literal 5609 zcmai%bx>UGlE#t239f?<9xQ`fumHg|0YY$h8QdYbTL^9g3=$xO;0}S{?iL)v;BG;d z)cx+ackiv;?W*^We!BbgTj!}$^*bm4gg=4!*Flq#(NN)(l6y+gjLppL9UYzj-zw5m z$Di{rv#7StCa#vQ|0v)Qkw*g`uFB-#appb!y;oM?azJH*|!c+ za=khg3Dms4^+eGhkJK`2n`3>>5|}U#8ear#4BRC$yzvBvfEysEQ#*GC6m;-I521w% zsb!%4`lq8fPQ`(s(;tW#71WVaXL_p(En< zu0Ot|7k^dV}G} zAdV4C7Xok zrhKo$-;#cuwDc=npB(H;QXOx(g&!>1YM}f>L`Q6 zIQV@&T|!CGTGyKAT?~?{)XOO`!2*=!u9ictKfwBLs_Zf#6_);`N!nhM^Z7RZX6{u2 zPIV5`sXBgkOtsWt^~Evu9H!8qbY;Jdphd$3hOClP^Vy8t9y2GpQ_)^Gx1W4>N)&oW zjWwEy+ zor+M0_%{{GmJ;)0MDVTUVWD7;PSF)xQuxZc{#xw|9J`c^EsU69Ezh0o+>yb9GD5A2 zSnyCQ&UugM0xJ5`jH>nTyt$YTK432}8T28WOGU)#UD^v)l3{qJSMc1JYB*c0YF+X& zRL~=_JS!?(%6r70jYHDIB;xJCZSO=zPPL2^)4wxhOR-kg#E$)S%GFeOS}tocF3BC) z^Q~~cS;IQll8|cWt)LV&QHzcXyws;1jG$-?2 z`v^n5P;&J?IMj@Yol0#-rZ3nt1h>lT={ubd+7zPGy3b+3i+bwXIVVbV@dOcxDGrV$ zMk$tnS+eA|F?B&fiw2!8Si+TAjehdySJ}lYqFQ{mIKy1Wv@PLj1e1v)E&PtV+vS`# zq(8WH;)c(hauZ1I6(Ian8sxT%;1WsYVq!RREOFPO+jY4Ot2h>@U`vxkxsn;dA9t`x zwmz5Hh&CT*0&9r{S8|=0J-Krdzz!K$aFFPIu0YFZ-_y>Mk*}{YQ`6%F!1{;rZ-FxV;mi78;M~?5< z_3r|O%g2#tQR>|_CLtVeW~6lNzs|3D*#bgz*91ZU-G;FcTddIjNGa{j8r@99Yf=Qf zU*A#MY3)JlYXh!sGlBcu+ip8;)d#VMn<|kg&ml!Q{uB1N(X(`Yjk2r@4WsbEx@=qM zKyj%{HRerX*xR-jl%ol~NV|D`gF&6XeR=I>}qWV~rRxd#HpeOp-4(7Zld88h&fBSNXSld(fU52S_#nLxac__fsa{Zn> zLP0pmO5)s6PDsM)*>ZWAM#O~tpfe6BG%NnM+*iB{OI^X+3EuFkSK+{_*=~os#&nu692|Ax$5uCKL$&Nm6_FNLWW$Li3~1TQHp)dmYj5@6`Kv@ ztu4L>lXRyH&8ko6ETY#Qj16$~yaHmStlb)^-l3(>tDjidjYv(EUEBXM-W=|8hv$gj z=E7+kM=ih;7#ygnlXhOotYze3BILKvhm&(TXaEq>qArvejOKn}2;mq|(~rBg&zfy( z;X8Z7-PDkhRcn3P2DNk$2kicD& zGT`sT)jl(h6YPkkh50RWvd^Yo2*9Rd{I^(eDe@;obQj(!MzoU^y^k=v*18>4xt%Ar zpUUoyD}P0`nM5V={PdA|!0b)-f)vj|PrmDY+Qb*}@KCRx{L1!J#N!s#`w{%BTf>@K1!CC+{C&({zI^-MUJoy>GzzlDl0fBVy@Kyha9+?OaC*Qn7!|sn zBCL88m5l(O{Ce<6ASc94-2Osc`7C);QGNms*XFmfqk8ng_Zofd5pce#v_2DZFRfnP zdNhz=2$=c3mMvdS;4k|6zlrcq)4wqvvayBBlZs|)?(D#6YK1`Xl+cn@aq`u;j4Gt( zW6ZWfJzVo(=1s>QLMsAH4;+?BS_1z7z&+T110d|rqyHI*6vjb_q~IV#!v6q3axm#1 z4FQS=#-aGLo8q6F3qEXtKdk@FerWk0rU4%&KqFDpSS5!fXZ>hIIpmdWY_^rGIuOg1 zUM_OK>z-gVL%Gn4$yVEOxlHFJ(-+fdQlqgS;)4OGGQ^6J;^fBqhq0AlyJri_?%ZYEYaMd% zhyGCj_64^EUbEV*-EW0*-0aFKSvpx~{<=YTA0OV_?p`?ZtKH(~R+2jS`w1Uj6Zwh| z&H&7RlK{ToUk&RU#6&sH_Q6SL;*x%-fVl6lr+)nPlKyX_{#5_XC{#~pM@Lt)rvi?- zql>A%3+Ml^jFWGqvNe@z2$x4YR`2}*C}gXx1eY9a!gs)`o`6>I_z%mD*8UgEFp{2_ zJ?@FVqyED(dNAmZh6n|M$teE11;xMJ;R)T;$G zzPh^p!q#gJ{;c8dR7*VXYzj4wUbiVD9@z;;GbqMde@I7Hhe1MM^aWJmk~lZ2FmG~T zHpZq9p;5Q#evR&Ja}5vY+Fq2=mTd6ZTjGwlnkWl6vWA|d?5R~+bb9o}-g7~%Qlw&R zS57(WSTEIsAAVPwLD6@GI3g=_pjR!YFcFwyAYRievl_}mL}hj8#T}id(hKRLvFEg_*%i=gY4TnCI}=s5&>1 zwA-5`A|ouH?|kS0Jrbo{)qXhbJHT(-om&P3Bwpe;(9|r9V5L{%^XJ{n!-tA|SDI(M zm0mwL#rbTo`+0}_Y9dn$ScOu(Jz1^*b*NL!l~;&4F%N94|9TzmsAURsKKfGIIY<(> z`$EfFp&EfeZHbRVxDJYtj0In1{G@jPg(y9|7-I^kK22Q~{EXCf(3Z)(qGvk9_uZEL z_$Gz%<6E9l`JkN}%mu1s<=bcdH^%3zGJ4U3vQcKKChz&2{d61X_xFFg4vubt5s^6S zh~KF8ab|$1Z462zvb<51(+&=k22!a;X=x;)8F{zkGHGM@U_tHKB zej*@hdj6h1@y0?E+&#FLBF%OHRX5E@1cQiMhMAriQU5(#fBJ(bJL_LfMNqQ zt<;x-gxb_1I7)M*8ZxhZ`6N+_8oq_8_{VwLF(hy**j_^l%hKWlEsc$)%{YfU0W6sQ z(aS^zs!Z?04<|px*Gd?0ER!kboiHy*>0j{ieH^z^_|n_(AxXSlrsDLo(_&|SW^eA& zk+eh^w!5}OO^Q5Vsr7nUZ^oxy? z3M}E51k0eG#47*siF$%*DkGJlsufk41xDvcaT(WukT8M z9LqIsc?u+twlyj8Tf`&Zq>uxb>flfaiW0w2o}3)VP4hgZ?us|+`|Mwj#+-oWczHT5 zJWrc9%=I{d+1q}VvBFLC8{(Ya+}^j5*|2QYY?&Rd0WQk9b9B}Ao59odT$Nao-7@j( z$hpI9={Y3b>Th}_RdOb=2D{zh&UhcZuSmo5KXIQM>BPOys5T5tAY5|OUL?pwm6`BG zO+r`udQ45<5CWuC+PK6(nxFvz`h_K5VQFK&tNemLf4su%UkfYTos!4bI_odUs&^7Q z8D2*Ngt%+(cMj|qi-o-NKa%L!ioTj9m1(22sqRwd z_Ur{QQIjg3{DjsuS<3N7Dw?y{mo9#H8t>e=5z;m7xgt3$^L8G@L;iI;=GYB=bNjH(4bS~UJGamIr zFOa!VTByFp$JJZf2JpLtKmsb6wOJ3eJjV&uq z5H*-@e2YDS?QM?`%Lz@N>{c>WC|tnxV8pA1ZI?j^R(~<`+QN5(s1&$qjhw;sXq}0f zaoZ+{c3N(%)0x79weIxbKcO4_nBHEAQa5@%@Y>*}0?<<&#@!QK@6{n)q>)28+23wI<^mPmnfAHXY~{0 zpG&bMb;fKC?BR`!UtP#@v+@VsA*4 zAtKFXwfNLpy~{N-+#Rq&%3RgB0r&~ErTp`F>8GDm%|MtT4xjrib3fQ=aBGI?82Sx@TBCb$kAIkQNvvE@}dqW^H{#BeXCHt z-hMGNFco8iD+FFn_o)GUCj7KUpO(Xj+uUE*`!Qm%zCy8$d42Q-cLdn%H7&j=^U`IR zDTgr6#}u?IY~;JAcdnjSx}VicPjG91AgnpQddm?wyk>A2!k1R*DZbhfi(XHdL{?K` zx;!=QRnQ};hmvKee8SSz7RyIX=w)AphsDQvF0y?zA(gjpno6$JSFB%Y-6%|yqM&@V zFc*_H<1e!|n+XQ2F}Tj5!1Ei&MDhIFGb1eH;A`Hmvi+@VkG>pdzOKJ?9^!~^c%c{9 zttec3ny!%2(5c~82X1CbIPeN>%FM2EYWjNliFFgUy-OGkv1^-)l^2jvvLm{o|MU`d W1dcqOVlJ=-8pXka5nBHt#s31Yu0~M+ literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_1500_2000/batch/condor_0.sub b/test/ntuple_qcd_1500_2000/batch/condor_0.sub new file mode 100644 index 00000000000..e59ef29d9ca --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_1.sub b/test/ntuple_qcd_1500_2000/batch/condor_1.sub new file mode 100644 index 00000000000..5668249536d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_10.sub b/test/ntuple_qcd_1500_2000/batch/condor_10.sub new file mode 100644 index 00000000000..53efc966c71 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_100.sub b/test/ntuple_qcd_1500_2000/batch/condor_100.sub new file mode 100644 index 00000000000..1719e8cee8c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_101.sub b/test/ntuple_qcd_1500_2000/batch/condor_101.sub new file mode 100644 index 00000000000..8725313b652 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_102.sub b/test/ntuple_qcd_1500_2000/batch/condor_102.sub new file mode 100644 index 00000000000..de62de2f2b0 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_103.sub b/test/ntuple_qcd_1500_2000/batch/condor_103.sub new file mode 100644 index 00000000000..72266f43872 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_104.sub b/test/ntuple_qcd_1500_2000/batch/condor_104.sub new file mode 100644 index 00000000000..73472fbafc0 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_105.sub b/test/ntuple_qcd_1500_2000/batch/condor_105.sub new file mode 100644 index 00000000000..b82efc647df --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_106.sub b/test/ntuple_qcd_1500_2000/batch/condor_106.sub new file mode 100644 index 00000000000..820fc83f399 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_107.sub b/test/ntuple_qcd_1500_2000/batch/condor_107.sub new file mode 100644 index 00000000000..e09a2a591ed --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_108.sub b/test/ntuple_qcd_1500_2000/batch/condor_108.sub new file mode 100644 index 00000000000..c66d66fd72b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_109.sub b/test/ntuple_qcd_1500_2000/batch/condor_109.sub new file mode 100644 index 00000000000..902978b417b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_11.sub b/test/ntuple_qcd_1500_2000/batch/condor_11.sub new file mode 100644 index 00000000000..a8aa207b76d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_110.sub b/test/ntuple_qcd_1500_2000/batch/condor_110.sub new file mode 100644 index 00000000000..8ca435749fa --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_111.sub b/test/ntuple_qcd_1500_2000/batch/condor_111.sub new file mode 100644 index 00000000000..a5f4aed699c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_112.sub b/test/ntuple_qcd_1500_2000/batch/condor_112.sub new file mode 100644 index 00000000000..75608869b4e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_113.sub b/test/ntuple_qcd_1500_2000/batch/condor_113.sub new file mode 100644 index 00000000000..2ff127ee26f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_114.sub b/test/ntuple_qcd_1500_2000/batch/condor_114.sub new file mode 100644 index 00000000000..386f1e54eba --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_115.sub b/test/ntuple_qcd_1500_2000/batch/condor_115.sub new file mode 100644 index 00000000000..5e6e1a67902 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_116.sub b/test/ntuple_qcd_1500_2000/batch/condor_116.sub new file mode 100644 index 00000000000..3f3edb2ba80 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_117.sub b/test/ntuple_qcd_1500_2000/batch/condor_117.sub new file mode 100644 index 00000000000..f22c4d510c4 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_118.sub b/test/ntuple_qcd_1500_2000/batch/condor_118.sub new file mode 100644 index 00000000000..8df1d57d23b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_119.sub b/test/ntuple_qcd_1500_2000/batch/condor_119.sub new file mode 100644 index 00000000000..0584655dc2d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_12.sub b/test/ntuple_qcd_1500_2000/batch/condor_12.sub new file mode 100644 index 00000000000..a3c566051df --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_120.sub b/test/ntuple_qcd_1500_2000/batch/condor_120.sub new file mode 100644 index 00000000000..94d7edb29b1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_121.sub b/test/ntuple_qcd_1500_2000/batch/condor_121.sub new file mode 100644 index 00000000000..5ff363f7b40 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_122.sub b/test/ntuple_qcd_1500_2000/batch/condor_122.sub new file mode 100644 index 00000000000..565bd1b7d87 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_123.sub b/test/ntuple_qcd_1500_2000/batch/condor_123.sub new file mode 100644 index 00000000000..83b8ff2a5e0 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_124.sub b/test/ntuple_qcd_1500_2000/batch/condor_124.sub new file mode 100644 index 00000000000..ffa434f2551 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_125.sub b/test/ntuple_qcd_1500_2000/batch/condor_125.sub new file mode 100644 index 00000000000..14cc6b97ebf --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_126.sub b/test/ntuple_qcd_1500_2000/batch/condor_126.sub new file mode 100644 index 00000000000..dd8aad2fe52 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_127.sub b/test/ntuple_qcd_1500_2000/batch/condor_127.sub new file mode 100644 index 00000000000..b23347f8480 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_128.sub b/test/ntuple_qcd_1500_2000/batch/condor_128.sub new file mode 100644 index 00000000000..3d556be5783 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_129.sub b/test/ntuple_qcd_1500_2000/batch/condor_129.sub new file mode 100644 index 00000000000..28df7383eb7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_13.sub b/test/ntuple_qcd_1500_2000/batch/condor_13.sub new file mode 100644 index 00000000000..480647a24f4 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_130.sub b/test/ntuple_qcd_1500_2000/batch/condor_130.sub new file mode 100644 index 00000000000..fe87bab25aa --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_131.sub b/test/ntuple_qcd_1500_2000/batch/condor_131.sub new file mode 100644 index 00000000000..5e141bd965b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_132.sub b/test/ntuple_qcd_1500_2000/batch/condor_132.sub new file mode 100644 index 00000000000..097882dda76 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_133.sub b/test/ntuple_qcd_1500_2000/batch/condor_133.sub new file mode 100644 index 00000000000..1c268cec0f8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_134.sub b/test/ntuple_qcd_1500_2000/batch/condor_134.sub new file mode 100644 index 00000000000..65ada786c9f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_135.sub b/test/ntuple_qcd_1500_2000/batch/condor_135.sub new file mode 100644 index 00000000000..6977a06c620 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_136.sub b/test/ntuple_qcd_1500_2000/batch/condor_136.sub new file mode 100644 index 00000000000..d0decd44bfd --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_137.sub b/test/ntuple_qcd_1500_2000/batch/condor_137.sub new file mode 100644 index 00000000000..66bb34c7fdb --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_138.sub b/test/ntuple_qcd_1500_2000/batch/condor_138.sub new file mode 100644 index 00000000000..74742fc5601 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_14.sub b/test/ntuple_qcd_1500_2000/batch/condor_14.sub new file mode 100644 index 00000000000..760aa55ecc1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_15.sub b/test/ntuple_qcd_1500_2000/batch/condor_15.sub new file mode 100644 index 00000000000..84547676d49 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_16.sub b/test/ntuple_qcd_1500_2000/batch/condor_16.sub new file mode 100644 index 00000000000..083182692fe --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_17.sub b/test/ntuple_qcd_1500_2000/batch/condor_17.sub new file mode 100644 index 00000000000..5efbf9c281b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_18.sub b/test/ntuple_qcd_1500_2000/batch/condor_18.sub new file mode 100644 index 00000000000..f8d4d8d2084 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_19.sub b/test/ntuple_qcd_1500_2000/batch/condor_19.sub new file mode 100644 index 00000000000..ccf5cf7b50e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_2.sub b/test/ntuple_qcd_1500_2000/batch/condor_2.sub new file mode 100644 index 00000000000..5e07ebe50ea --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_20.sub b/test/ntuple_qcd_1500_2000/batch/condor_20.sub new file mode 100644 index 00000000000..9f3a9d0d794 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_21.sub b/test/ntuple_qcd_1500_2000/batch/condor_21.sub new file mode 100644 index 00000000000..37011c406cf --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_22.sub b/test/ntuple_qcd_1500_2000/batch/condor_22.sub new file mode 100644 index 00000000000..a919e09d592 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_23.sub b/test/ntuple_qcd_1500_2000/batch/condor_23.sub new file mode 100644 index 00000000000..db92d9d0515 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_24.sub b/test/ntuple_qcd_1500_2000/batch/condor_24.sub new file mode 100644 index 00000000000..a198d6ec818 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_25.sub b/test/ntuple_qcd_1500_2000/batch/condor_25.sub new file mode 100644 index 00000000000..5c03be1e57b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_26.sub b/test/ntuple_qcd_1500_2000/batch/condor_26.sub new file mode 100644 index 00000000000..fab35cee6c1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_27.sub b/test/ntuple_qcd_1500_2000/batch/condor_27.sub new file mode 100644 index 00000000000..b70ec4aa262 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_28.sub b/test/ntuple_qcd_1500_2000/batch/condor_28.sub new file mode 100644 index 00000000000..d1bdf9cf1e4 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_29.sub b/test/ntuple_qcd_1500_2000/batch/condor_29.sub new file mode 100644 index 00000000000..69088adcde6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_3.sub b/test/ntuple_qcd_1500_2000/batch/condor_3.sub new file mode 100644 index 00000000000..9f18c4ec7f1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_30.sub b/test/ntuple_qcd_1500_2000/batch/condor_30.sub new file mode 100644 index 00000000000..ced122a9721 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_31.sub b/test/ntuple_qcd_1500_2000/batch/condor_31.sub new file mode 100644 index 00000000000..7ba10a15664 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_32.sub b/test/ntuple_qcd_1500_2000/batch/condor_32.sub new file mode 100644 index 00000000000..c06f0e3eea1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_33.sub b/test/ntuple_qcd_1500_2000/batch/condor_33.sub new file mode 100644 index 00000000000..0ce7b251dfc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_34.sub b/test/ntuple_qcd_1500_2000/batch/condor_34.sub new file mode 100644 index 00000000000..bb49f10fa1b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_35.sub b/test/ntuple_qcd_1500_2000/batch/condor_35.sub new file mode 100644 index 00000000000..7c2a4bb3f2a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_36.sub b/test/ntuple_qcd_1500_2000/batch/condor_36.sub new file mode 100644 index 00000000000..8c16d628085 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_37.sub b/test/ntuple_qcd_1500_2000/batch/condor_37.sub new file mode 100644 index 00000000000..3bfddbd6dd9 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_38.sub b/test/ntuple_qcd_1500_2000/batch/condor_38.sub new file mode 100644 index 00000000000..4b2abf24b2c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_39.sub b/test/ntuple_qcd_1500_2000/batch/condor_39.sub new file mode 100644 index 00000000000..d4f5664248f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_4.sub b/test/ntuple_qcd_1500_2000/batch/condor_4.sub new file mode 100644 index 00000000000..52be5c549c9 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_40.sub b/test/ntuple_qcd_1500_2000/batch/condor_40.sub new file mode 100644 index 00000000000..9683286c281 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_41.sub b/test/ntuple_qcd_1500_2000/batch/condor_41.sub new file mode 100644 index 00000000000..19d5dd303a8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_42.sub b/test/ntuple_qcd_1500_2000/batch/condor_42.sub new file mode 100644 index 00000000000..7a961903cca --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_43.sub b/test/ntuple_qcd_1500_2000/batch/condor_43.sub new file mode 100644 index 00000000000..fd5d893915c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_44.sub b/test/ntuple_qcd_1500_2000/batch/condor_44.sub new file mode 100644 index 00000000000..da4e3faca2a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_45.sub b/test/ntuple_qcd_1500_2000/batch/condor_45.sub new file mode 100644 index 00000000000..f3ad1b6b0e2 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_46.sub b/test/ntuple_qcd_1500_2000/batch/condor_46.sub new file mode 100644 index 00000000000..61738621aa8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_47.sub b/test/ntuple_qcd_1500_2000/batch/condor_47.sub new file mode 100644 index 00000000000..16fbd0a93e6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_48.sub b/test/ntuple_qcd_1500_2000/batch/condor_48.sub new file mode 100644 index 00000000000..01c1d4750f8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_49.sub b/test/ntuple_qcd_1500_2000/batch/condor_49.sub new file mode 100644 index 00000000000..42d8f7be202 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_5.sub b/test/ntuple_qcd_1500_2000/batch/condor_5.sub new file mode 100644 index 00000000000..368680852cc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_50.sub b/test/ntuple_qcd_1500_2000/batch/condor_50.sub new file mode 100644 index 00000000000..c3ff11f0ad7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_51.sub b/test/ntuple_qcd_1500_2000/batch/condor_51.sub new file mode 100644 index 00000000000..c45e0958b20 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_52.sub b/test/ntuple_qcd_1500_2000/batch/condor_52.sub new file mode 100644 index 00000000000..b0f1bf96e10 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_53.sub b/test/ntuple_qcd_1500_2000/batch/condor_53.sub new file mode 100644 index 00000000000..c67d3098c1e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_54.sub b/test/ntuple_qcd_1500_2000/batch/condor_54.sub new file mode 100644 index 00000000000..87fcc79ff6a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_55.sub b/test/ntuple_qcd_1500_2000/batch/condor_55.sub new file mode 100644 index 00000000000..decb2e271da --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_56.sub b/test/ntuple_qcd_1500_2000/batch/condor_56.sub new file mode 100644 index 00000000000..de4d08cc9de --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_57.sub b/test/ntuple_qcd_1500_2000/batch/condor_57.sub new file mode 100644 index 00000000000..91684a35113 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_58.sub b/test/ntuple_qcd_1500_2000/batch/condor_58.sub new file mode 100644 index 00000000000..4f5a97710df --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_59.sub b/test/ntuple_qcd_1500_2000/batch/condor_59.sub new file mode 100644 index 00000000000..80f5ba92780 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_6.sub b/test/ntuple_qcd_1500_2000/batch/condor_6.sub new file mode 100644 index 00000000000..722d7b9deed --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_60.sub b/test/ntuple_qcd_1500_2000/batch/condor_60.sub new file mode 100644 index 00000000000..152565eec61 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_61.sub b/test/ntuple_qcd_1500_2000/batch/condor_61.sub new file mode 100644 index 00000000000..26608ef0133 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_62.sub b/test/ntuple_qcd_1500_2000/batch/condor_62.sub new file mode 100644 index 00000000000..67a3896f15d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_63.sub b/test/ntuple_qcd_1500_2000/batch/condor_63.sub new file mode 100644 index 00000000000..99b7cd2587f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_64.sub b/test/ntuple_qcd_1500_2000/batch/condor_64.sub new file mode 100644 index 00000000000..b4b164398f6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_65.sub b/test/ntuple_qcd_1500_2000/batch/condor_65.sub new file mode 100644 index 00000000000..5fb5eac91b5 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_66.sub b/test/ntuple_qcd_1500_2000/batch/condor_66.sub new file mode 100644 index 00000000000..841ad5ede23 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_67.sub b/test/ntuple_qcd_1500_2000/batch/condor_67.sub new file mode 100644 index 00000000000..bcc1ff68295 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_68.sub b/test/ntuple_qcd_1500_2000/batch/condor_68.sub new file mode 100644 index 00000000000..af6778d7d35 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_69.sub b/test/ntuple_qcd_1500_2000/batch/condor_69.sub new file mode 100644 index 00000000000..1bda41812f7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_7.sub b/test/ntuple_qcd_1500_2000/batch/condor_7.sub new file mode 100644 index 00000000000..9d370eaed5e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_70.sub b/test/ntuple_qcd_1500_2000/batch/condor_70.sub new file mode 100644 index 00000000000..c3f08c95d09 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_71.sub b/test/ntuple_qcd_1500_2000/batch/condor_71.sub new file mode 100644 index 00000000000..973e602d183 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_72.sub b/test/ntuple_qcd_1500_2000/batch/condor_72.sub new file mode 100644 index 00000000000..f91516d1b6b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_73.sub b/test/ntuple_qcd_1500_2000/batch/condor_73.sub new file mode 100644 index 00000000000..04a3de0987f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_74.sub b/test/ntuple_qcd_1500_2000/batch/condor_74.sub new file mode 100644 index 00000000000..e44f3c85fa5 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_75.sub b/test/ntuple_qcd_1500_2000/batch/condor_75.sub new file mode 100644 index 00000000000..9ecb411a708 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_76.sub b/test/ntuple_qcd_1500_2000/batch/condor_76.sub new file mode 100644 index 00000000000..b74c034a2d9 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_77.sub b/test/ntuple_qcd_1500_2000/batch/condor_77.sub new file mode 100644 index 00000000000..a599cb2e1e3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_78.sub b/test/ntuple_qcd_1500_2000/batch/condor_78.sub new file mode 100644 index 00000000000..7e681e25569 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_79.sub b/test/ntuple_qcd_1500_2000/batch/condor_79.sub new file mode 100644 index 00000000000..75b75d13512 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_8.sub b/test/ntuple_qcd_1500_2000/batch/condor_8.sub new file mode 100644 index 00000000000..bc9b9c239f7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_80.sub b/test/ntuple_qcd_1500_2000/batch/condor_80.sub new file mode 100644 index 00000000000..49a3147118c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_81.sub b/test/ntuple_qcd_1500_2000/batch/condor_81.sub new file mode 100644 index 00000000000..a0c16f6e568 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_82.sub b/test/ntuple_qcd_1500_2000/batch/condor_82.sub new file mode 100644 index 00000000000..30a410374a6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_83.sub b/test/ntuple_qcd_1500_2000/batch/condor_83.sub new file mode 100644 index 00000000000..4091b0a9424 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_84.sub b/test/ntuple_qcd_1500_2000/batch/condor_84.sub new file mode 100644 index 00000000000..f2fbd9fb68a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_85.sub b/test/ntuple_qcd_1500_2000/batch/condor_85.sub new file mode 100644 index 00000000000..ae16879f522 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_86.sub b/test/ntuple_qcd_1500_2000/batch/condor_86.sub new file mode 100644 index 00000000000..2683d6c49e9 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_87.sub b/test/ntuple_qcd_1500_2000/batch/condor_87.sub new file mode 100644 index 00000000000..3c3c762a9c3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_88.sub b/test/ntuple_qcd_1500_2000/batch/condor_88.sub new file mode 100644 index 00000000000..9889595d83c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_89.sub b/test/ntuple_qcd_1500_2000/batch/condor_89.sub new file mode 100644 index 00000000000..367ad13f0c8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_9.sub b/test/ntuple_qcd_1500_2000/batch/condor_9.sub new file mode 100644 index 00000000000..ed0b35988a8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_90.sub b/test/ntuple_qcd_1500_2000/batch/condor_90.sub new file mode 100644 index 00000000000..314602c56e9 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_91.sub b/test/ntuple_qcd_1500_2000/batch/condor_91.sub new file mode 100644 index 00000000000..97e1e8681ed --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_92.sub b/test/ntuple_qcd_1500_2000/batch/condor_92.sub new file mode 100644 index 00000000000..6a1cc169665 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_93.sub b/test/ntuple_qcd_1500_2000/batch/condor_93.sub new file mode 100644 index 00000000000..6a93498c360 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_94.sub b/test/ntuple_qcd_1500_2000/batch/condor_94.sub new file mode 100644 index 00000000000..50be038d7b5 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_95.sub b/test/ntuple_qcd_1500_2000/batch/condor_95.sub new file mode 100644 index 00000000000..2fc42860f0d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_96.sub b/test/ntuple_qcd_1500_2000/batch/condor_96.sub new file mode 100644 index 00000000000..77ddb66d1e0 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_97.sub b/test/ntuple_qcd_1500_2000/batch/condor_97.sub new file mode 100644 index 00000000000..f2fab8f8b75 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_98.sub b/test/ntuple_qcd_1500_2000/batch/condor_98.sub new file mode 100644 index 00000000000..76676bad619 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_99.sub b/test/ntuple_qcd_1500_2000/batch/condor_99.sub new file mode 100644 index 00000000000..61e35c81be3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/nJobs.139 b/test/ntuple_qcd_1500_2000/batch/nJobs.139 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_1500_2000/batch/sge_0.sh b/test/ntuple_qcd_1500_2000/batch/sge_0.sh new file mode 100755 index 00000000000..4c41051997c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_1.sh b/test/ntuple_qcd_1500_2000/batch/sge_1.sh new file mode 100755 index 00000000000..d8888d5a06e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_10.sh b/test/ntuple_qcd_1500_2000/batch/sge_10.sh new file mode 100755 index 00000000000..89685812284 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_100.sh b/test/ntuple_qcd_1500_2000/batch/sge_100.sh new file mode 100755 index 00000000000..17c3f21aa88 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=100 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_101.sh b/test/ntuple_qcd_1500_2000/batch/sge_101.sh new file mode 100755 index 00000000000..8b0287d5404 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=101 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_102.sh b/test/ntuple_qcd_1500_2000/batch/sge_102.sh new file mode 100755 index 00000000000..4ad7bdde1b5 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=102 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_103.sh b/test/ntuple_qcd_1500_2000/batch/sge_103.sh new file mode 100755 index 00000000000..9ff86e3832b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=103 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_104.sh b/test/ntuple_qcd_1500_2000/batch/sge_104.sh new file mode 100755 index 00000000000..98f6b497df3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=104 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_105.sh b/test/ntuple_qcd_1500_2000/batch/sge_105.sh new file mode 100755 index 00000000000..43e49d35f2b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=105 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_106.sh b/test/ntuple_qcd_1500_2000/batch/sge_106.sh new file mode 100755 index 00000000000..c3e0d3be2ee --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=106 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_107.sh b/test/ntuple_qcd_1500_2000/batch/sge_107.sh new file mode 100755 index 00000000000..6793118b18c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=107 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_108.sh b/test/ntuple_qcd_1500_2000/batch/sge_108.sh new file mode 100755 index 00000000000..224ac402052 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=108 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_109.sh b/test/ntuple_qcd_1500_2000/batch/sge_109.sh new file mode 100755 index 00000000000..1586a68c9fc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=109 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_11.sh b/test/ntuple_qcd_1500_2000/batch/sge_11.sh new file mode 100755 index 00000000000..f504b3f034e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_110.sh b/test/ntuple_qcd_1500_2000/batch/sge_110.sh new file mode 100755 index 00000000000..f1932f22514 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=110 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_111.sh b/test/ntuple_qcd_1500_2000/batch/sge_111.sh new file mode 100755 index 00000000000..b83df33fb6a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=111 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_112.sh b/test/ntuple_qcd_1500_2000/batch/sge_112.sh new file mode 100755 index 00000000000..f7577b2b9ee --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=112 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_113.sh b/test/ntuple_qcd_1500_2000/batch/sge_113.sh new file mode 100755 index 00000000000..2e28e0bf69f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=113 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_114.sh b/test/ntuple_qcd_1500_2000/batch/sge_114.sh new file mode 100755 index 00000000000..644d3ff0d14 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=114 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_115.sh b/test/ntuple_qcd_1500_2000/batch/sge_115.sh new file mode 100755 index 00000000000..3381dcf3875 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=115 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_116.sh b/test/ntuple_qcd_1500_2000/batch/sge_116.sh new file mode 100755 index 00000000000..d4442971d34 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=116 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_117.sh b/test/ntuple_qcd_1500_2000/batch/sge_117.sh new file mode 100755 index 00000000000..4c8155762b3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=117 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_118.sh b/test/ntuple_qcd_1500_2000/batch/sge_118.sh new file mode 100755 index 00000000000..5f2f093b9ba --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=118 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_119.sh b/test/ntuple_qcd_1500_2000/batch/sge_119.sh new file mode 100755 index 00000000000..29a57e95575 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=119 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_12.sh b/test/ntuple_qcd_1500_2000/batch/sge_12.sh new file mode 100755 index 00000000000..29b4c98f49f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_120.sh b/test/ntuple_qcd_1500_2000/batch/sge_120.sh new file mode 100755 index 00000000000..2edd5ac50dc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=120 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_121.sh b/test/ntuple_qcd_1500_2000/batch/sge_121.sh new file mode 100755 index 00000000000..ff1c4f6d4ef --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=121 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_122.sh b/test/ntuple_qcd_1500_2000/batch/sge_122.sh new file mode 100755 index 00000000000..bd4fd5cdd3d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=122 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_123.sh b/test/ntuple_qcd_1500_2000/batch/sge_123.sh new file mode 100755 index 00000000000..9652482b432 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=123 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_124.sh b/test/ntuple_qcd_1500_2000/batch/sge_124.sh new file mode 100755 index 00000000000..f821fece9a9 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=124 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_125.sh b/test/ntuple_qcd_1500_2000/batch/sge_125.sh new file mode 100755 index 00000000000..4cebedc65e3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=125 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_126.sh b/test/ntuple_qcd_1500_2000/batch/sge_126.sh new file mode 100755 index 00000000000..d94f16c00e4 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=126 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_127.sh b/test/ntuple_qcd_1500_2000/batch/sge_127.sh new file mode 100755 index 00000000000..fb0cb714b10 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=127 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_128.sh b/test/ntuple_qcd_1500_2000/batch/sge_128.sh new file mode 100755 index 00000000000..6026425604d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=128 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_129.sh b/test/ntuple_qcd_1500_2000/batch/sge_129.sh new file mode 100755 index 00000000000..706964d0edc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=129 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_13.sh b/test/ntuple_qcd_1500_2000/batch/sge_13.sh new file mode 100755 index 00000000000..598dbbee0c2 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_130.sh b/test/ntuple_qcd_1500_2000/batch/sge_130.sh new file mode 100755 index 00000000000..fe3cfa954a1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=130 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_131.sh b/test/ntuple_qcd_1500_2000/batch/sge_131.sh new file mode 100755 index 00000000000..05d55f9ecef --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=131 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_132.sh b/test/ntuple_qcd_1500_2000/batch/sge_132.sh new file mode 100755 index 00000000000..807b6c1d053 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=132 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_133.sh b/test/ntuple_qcd_1500_2000/batch/sge_133.sh new file mode 100755 index 00000000000..6f63a7287ce --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=133 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_134.sh b/test/ntuple_qcd_1500_2000/batch/sge_134.sh new file mode 100755 index 00000000000..f5dfeda021c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=134 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_135.sh b/test/ntuple_qcd_1500_2000/batch/sge_135.sh new file mode 100755 index 00000000000..ef73365df92 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=135 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_136.sh b/test/ntuple_qcd_1500_2000/batch/sge_136.sh new file mode 100755 index 00000000000..a0ad7f586aa --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=136 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_137.sh b/test/ntuple_qcd_1500_2000/batch/sge_137.sh new file mode 100755 index 00000000000..a06cbbd3fa8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=137 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_138.sh b/test/ntuple_qcd_1500_2000/batch/sge_138.sh new file mode 100755 index 00000000000..a37e51a9e90 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=138 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_14.sh b/test/ntuple_qcd_1500_2000/batch/sge_14.sh new file mode 100755 index 00000000000..67133ef6083 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_15.sh b/test/ntuple_qcd_1500_2000/batch/sge_15.sh new file mode 100755 index 00000000000..b0d8a9e65ad --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_16.sh b/test/ntuple_qcd_1500_2000/batch/sge_16.sh new file mode 100755 index 00000000000..f24657e2f0d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_17.sh b/test/ntuple_qcd_1500_2000/batch/sge_17.sh new file mode 100755 index 00000000000..48119b824f7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_18.sh b/test/ntuple_qcd_1500_2000/batch/sge_18.sh new file mode 100755 index 00000000000..9d19a8569ed --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_19.sh b/test/ntuple_qcd_1500_2000/batch/sge_19.sh new file mode 100755 index 00000000000..cb4dc21bcf2 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_2.sh b/test/ntuple_qcd_1500_2000/batch/sge_2.sh new file mode 100755 index 00000000000..f15495b534a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_20.sh b/test/ntuple_qcd_1500_2000/batch/sge_20.sh new file mode 100755 index 00000000000..82931103a10 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_21.sh b/test/ntuple_qcd_1500_2000/batch/sge_21.sh new file mode 100755 index 00000000000..b51829348e8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_22.sh b/test/ntuple_qcd_1500_2000/batch/sge_22.sh new file mode 100755 index 00000000000..dde038f6e0c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_23.sh b/test/ntuple_qcd_1500_2000/batch/sge_23.sh new file mode 100755 index 00000000000..87dff83e62a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_24.sh b/test/ntuple_qcd_1500_2000/batch/sge_24.sh new file mode 100755 index 00000000000..6461f3dcd6a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_25.sh b/test/ntuple_qcd_1500_2000/batch/sge_25.sh new file mode 100755 index 00000000000..cecf2f4d014 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_26.sh b/test/ntuple_qcd_1500_2000/batch/sge_26.sh new file mode 100755 index 00000000000..7ab354bb5a4 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_27.sh b/test/ntuple_qcd_1500_2000/batch/sge_27.sh new file mode 100755 index 00000000000..e096d178cb5 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_28.sh b/test/ntuple_qcd_1500_2000/batch/sge_28.sh new file mode 100755 index 00000000000..597af0f9912 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_29.sh b/test/ntuple_qcd_1500_2000/batch/sge_29.sh new file mode 100755 index 00000000000..6a4f02c046d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_3.sh b/test/ntuple_qcd_1500_2000/batch/sge_3.sh new file mode 100755 index 00000000000..5810913ca4f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_30.sh b/test/ntuple_qcd_1500_2000/batch/sge_30.sh new file mode 100755 index 00000000000..389a0f9bce4 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_31.sh b/test/ntuple_qcd_1500_2000/batch/sge_31.sh new file mode 100755 index 00000000000..3e8c592c49e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_32.sh b/test/ntuple_qcd_1500_2000/batch/sge_32.sh new file mode 100755 index 00000000000..84a06179c41 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_33.sh b/test/ntuple_qcd_1500_2000/batch/sge_33.sh new file mode 100755 index 00000000000..0831a7ea82a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_34.sh b/test/ntuple_qcd_1500_2000/batch/sge_34.sh new file mode 100755 index 00000000000..8fab6b7151a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_35.sh b/test/ntuple_qcd_1500_2000/batch/sge_35.sh new file mode 100755 index 00000000000..5b763d4d045 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_36.sh b/test/ntuple_qcd_1500_2000/batch/sge_36.sh new file mode 100755 index 00000000000..512f9603daf --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_37.sh b/test/ntuple_qcd_1500_2000/batch/sge_37.sh new file mode 100755 index 00000000000..38e6ae9191c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_38.sh b/test/ntuple_qcd_1500_2000/batch/sge_38.sh new file mode 100755 index 00000000000..90badb4eec8 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_39.sh b/test/ntuple_qcd_1500_2000/batch/sge_39.sh new file mode 100755 index 00000000000..66df917a7ab --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_4.sh b/test/ntuple_qcd_1500_2000/batch/sge_4.sh new file mode 100755 index 00000000000..5282e51ce86 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_40.sh b/test/ntuple_qcd_1500_2000/batch/sge_40.sh new file mode 100755 index 00000000000..e4368fc7c1c --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_41.sh b/test/ntuple_qcd_1500_2000/batch/sge_41.sh new file mode 100755 index 00000000000..ef07aa53e8a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_42.sh b/test/ntuple_qcd_1500_2000/batch/sge_42.sh new file mode 100755 index 00000000000..500e6589187 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_43.sh b/test/ntuple_qcd_1500_2000/batch/sge_43.sh new file mode 100755 index 00000000000..1180b078c96 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_44.sh b/test/ntuple_qcd_1500_2000/batch/sge_44.sh new file mode 100755 index 00000000000..9f7f28d6fb6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_45.sh b/test/ntuple_qcd_1500_2000/batch/sge_45.sh new file mode 100755 index 00000000000..21ce6015d9f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_46.sh b/test/ntuple_qcd_1500_2000/batch/sge_46.sh new file mode 100755 index 00000000000..c3c03b04102 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_47.sh b/test/ntuple_qcd_1500_2000/batch/sge_47.sh new file mode 100755 index 00000000000..9f66924dd67 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_48.sh b/test/ntuple_qcd_1500_2000/batch/sge_48.sh new file mode 100755 index 00000000000..fc04e814569 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_49.sh b/test/ntuple_qcd_1500_2000/batch/sge_49.sh new file mode 100755 index 00000000000..ba277c41596 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_5.sh b/test/ntuple_qcd_1500_2000/batch/sge_5.sh new file mode 100755 index 00000000000..bc123725697 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_50.sh b/test/ntuple_qcd_1500_2000/batch/sge_50.sh new file mode 100755 index 00000000000..4f6084ba80d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_51.sh b/test/ntuple_qcd_1500_2000/batch/sge_51.sh new file mode 100755 index 00000000000..d8c46c4d6f3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_52.sh b/test/ntuple_qcd_1500_2000/batch/sge_52.sh new file mode 100755 index 00000000000..a5f5199934a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_53.sh b/test/ntuple_qcd_1500_2000/batch/sge_53.sh new file mode 100755 index 00000000000..00864c56e58 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_54.sh b/test/ntuple_qcd_1500_2000/batch/sge_54.sh new file mode 100755 index 00000000000..f62fe4ca17a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_55.sh b/test/ntuple_qcd_1500_2000/batch/sge_55.sh new file mode 100755 index 00000000000..3d920b67229 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_56.sh b/test/ntuple_qcd_1500_2000/batch/sge_56.sh new file mode 100755 index 00000000000..00a1702d1d6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_57.sh b/test/ntuple_qcd_1500_2000/batch/sge_57.sh new file mode 100755 index 00000000000..5b13f712946 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_58.sh b/test/ntuple_qcd_1500_2000/batch/sge_58.sh new file mode 100755 index 00000000000..f51b0db96d1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_59.sh b/test/ntuple_qcd_1500_2000/batch/sge_59.sh new file mode 100755 index 00000000000..7041dd616ce --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_6.sh b/test/ntuple_qcd_1500_2000/batch/sge_6.sh new file mode 100755 index 00000000000..bc637eed375 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_60.sh b/test/ntuple_qcd_1500_2000/batch/sge_60.sh new file mode 100755 index 00000000000..e6c7c17b55a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_61.sh b/test/ntuple_qcd_1500_2000/batch/sge_61.sh new file mode 100755 index 00000000000..6f647f0da21 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_62.sh b/test/ntuple_qcd_1500_2000/batch/sge_62.sh new file mode 100755 index 00000000000..edcc13003bb --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_63.sh b/test/ntuple_qcd_1500_2000/batch/sge_63.sh new file mode 100755 index 00000000000..7d8aaee8e0b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_64.sh b/test/ntuple_qcd_1500_2000/batch/sge_64.sh new file mode 100755 index 00000000000..d47915814dc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_65.sh b/test/ntuple_qcd_1500_2000/batch/sge_65.sh new file mode 100755 index 00000000000..cf172ab6b01 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_66.sh b/test/ntuple_qcd_1500_2000/batch/sge_66.sh new file mode 100755 index 00000000000..34578b51023 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_67.sh b/test/ntuple_qcd_1500_2000/batch/sge_67.sh new file mode 100755 index 00000000000..06eaa5a06b7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_68.sh b/test/ntuple_qcd_1500_2000/batch/sge_68.sh new file mode 100755 index 00000000000..09a23494012 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_69.sh b/test/ntuple_qcd_1500_2000/batch/sge_69.sh new file mode 100755 index 00000000000..0b1946f056a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_7.sh b/test/ntuple_qcd_1500_2000/batch/sge_7.sh new file mode 100755 index 00000000000..4d5e7e117a3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_70.sh b/test/ntuple_qcd_1500_2000/batch/sge_70.sh new file mode 100755 index 00000000000..97132352180 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_71.sh b/test/ntuple_qcd_1500_2000/batch/sge_71.sh new file mode 100755 index 00000000000..23a5013f0e3 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_72.sh b/test/ntuple_qcd_1500_2000/batch/sge_72.sh new file mode 100755 index 00000000000..8b6270f5b80 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_73.sh b/test/ntuple_qcd_1500_2000/batch/sge_73.sh new file mode 100755 index 00000000000..2fa1967106a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_74.sh b/test/ntuple_qcd_1500_2000/batch/sge_74.sh new file mode 100755 index 00000000000..9de070bc86f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_75.sh b/test/ntuple_qcd_1500_2000/batch/sge_75.sh new file mode 100755 index 00000000000..65f5e2cd61e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_76.sh b/test/ntuple_qcd_1500_2000/batch/sge_76.sh new file mode 100755 index 00000000000..385e3de5b33 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_77.sh b/test/ntuple_qcd_1500_2000/batch/sge_77.sh new file mode 100755 index 00000000000..9cb3d207a07 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=77 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_78.sh b/test/ntuple_qcd_1500_2000/batch/sge_78.sh new file mode 100755 index 00000000000..ae40328ea9f --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=78 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_79.sh b/test/ntuple_qcd_1500_2000/batch/sge_79.sh new file mode 100755 index 00000000000..5f262be1fd5 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=79 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_8.sh b/test/ntuple_qcd_1500_2000/batch/sge_8.sh new file mode 100755 index 00000000000..4aa3749ecb6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_80.sh b/test/ntuple_qcd_1500_2000/batch/sge_80.sh new file mode 100755 index 00000000000..a89dca4c471 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=80 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_81.sh b/test/ntuple_qcd_1500_2000/batch/sge_81.sh new file mode 100755 index 00000000000..ba61f08acfc --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=81 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_82.sh b/test/ntuple_qcd_1500_2000/batch/sge_82.sh new file mode 100755 index 00000000000..449224493eb --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=82 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_83.sh b/test/ntuple_qcd_1500_2000/batch/sge_83.sh new file mode 100755 index 00000000000..8e5fd59afe1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=83 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_84.sh b/test/ntuple_qcd_1500_2000/batch/sge_84.sh new file mode 100755 index 00000000000..ff6aca01f35 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=84 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_85.sh b/test/ntuple_qcd_1500_2000/batch/sge_85.sh new file mode 100755 index 00000000000..983a8020b07 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=85 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_86.sh b/test/ntuple_qcd_1500_2000/batch/sge_86.sh new file mode 100755 index 00000000000..4d645cadf35 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=86 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_87.sh b/test/ntuple_qcd_1500_2000/batch/sge_87.sh new file mode 100755 index 00000000000..3fc86fdc56d --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=87 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_88.sh b/test/ntuple_qcd_1500_2000/batch/sge_88.sh new file mode 100755 index 00000000000..d464f0db7fd --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=88 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_89.sh b/test/ntuple_qcd_1500_2000/batch/sge_89.sh new file mode 100755 index 00000000000..a5c98e71bc7 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=89 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_9.sh b/test/ntuple_qcd_1500_2000/batch/sge_9.sh new file mode 100755 index 00000000000..85da7fe4403 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_90.sh b/test/ntuple_qcd_1500_2000/batch/sge_90.sh new file mode 100755 index 00000000000..8a8d334aeae --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=90 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_91.sh b/test/ntuple_qcd_1500_2000/batch/sge_91.sh new file mode 100755 index 00000000000..aabfb02555a --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=91 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_92.sh b/test/ntuple_qcd_1500_2000/batch/sge_92.sh new file mode 100755 index 00000000000..e44340c26f1 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=92 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_93.sh b/test/ntuple_qcd_1500_2000/batch/sge_93.sh new file mode 100755 index 00000000000..75091e6a376 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=93 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_94.sh b/test/ntuple_qcd_1500_2000/batch/sge_94.sh new file mode 100755 index 00000000000..5039d97fe98 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=94 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_95.sh b/test/ntuple_qcd_1500_2000/batch/sge_95.sh new file mode 100755 index 00000000000..ed44d04a38b --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=95 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_96.sh b/test/ntuple_qcd_1500_2000/batch/sge_96.sh new file mode 100755 index 00000000000..7c642ff78bf --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=96 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_97.sh b/test/ntuple_qcd_1500_2000/batch/sge_97.sh new file mode 100755 index 00000000000..dff9e8a3d35 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=97 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_98.sh b/test/ntuple_qcd_1500_2000/batch/sge_98.sh new file mode 100755 index 00000000000..593b273b830 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=98 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_99.sh b/test/ntuple_qcd_1500_2000/batch/sge_99.sh new file mode 100755 index 00000000000..f77c8e76878 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=99 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batchscript.sh b/test/ntuple_qcd_1500_2000/batchscript.sh new file mode 100755 index 00000000000..ae89945e8f6 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_1500_2000" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/condor.sub b/test/ntuple_qcd_1500_2000/condor.sub new file mode 100644 index 00000000000..2deb2ca25ca --- /dev/null +++ b/test/ntuple_qcd_1500_2000/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 139 + \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/helper b/test/ntuple_qcd_1500_2000/helper new file mode 120000 index 00000000000..b1793bb0f52 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_1500_2000/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/output b/test/ntuple_qcd_1500_2000/output new file mode 120000 index 00000000000..4dc5dba909e --- /dev/null +++ b/test/ntuple_qcd_1500_2000/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/sge_sub.sh b/test/ntuple_qcd_1500_2000/sge_sub.sh new file mode 100755 index 00000000000..124609edee2 --- /dev/null +++ b/test/ntuple_qcd_1500_2000/sge_sub.sh @@ -0,0 +1,139 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_138.sh diff --git a/test/ntuple_qcd_2000_Inf/ademoor.cc b/test/ntuple_qcd_2000_Inf/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..f25a8cc4c4021b3b487e9820ca6a2f631896778d GIT binary patch literal 5609 zcmai$Ra6|>l7?|;+^uo!6CT21PIc&1PBnUaSb%?8l-X8Ai;tYT!T(B zbMBct_pX_#we~~(Rkdrc{l9#uCa{@2R%zP`*%zRJC%tEox%+?+ z2aBf>@M|QF{&f5*qrNrv{dqhK=3(=*4?l+P6PR9mQ$j#ZE@v~l_eMa5y(2Ht#Y@>0 zO2duh<2W9bq2Mz(Vmb^8Xg1>82oGtiXhjaZVy<#c$J2E2RxLE;kvtsE!)Si&TRS0XvAX~cf1 zH6l#j5G{(ol~Oh>``U6N)IpRGJ#ju5uCQkVoI4;=$LxWjAG ziYu54W;6)u!H5BUSLpQj76Wy2$+cfI`u!s4%wFN<9qh_SPdewF(-I;z@;8X7B(kVJt@FBD838r%e)-Nk;YyX;?!-;}1xRCX8kt9YW zO@w~`dbm&-m+uDgiT*7ClYd={;bRAsfS9)?$IN}xIOS7rBNms%Ww+1??JVbesDrAU zibeBD{B^0c7lmCYE|vZP^SF4elCathR#>-sx_*beELZkrLuvv?H2txXYQ_a4j@pB| zP+Qtb;_^-^$g*@AUcb?V4&JB*U zpY{ChS?Xy(8cP!zSuCN!X=?sIf|rcrnKDbxEaua*``$S-oJsb3czhSUR|OgzH`i$; z@cHxTH9&U3!Uzk=j3$of%Ko`^fWYz-WT#4~)fEolNxiuhansP&4%hvxvNt*LOq>Q1 z&{CjKN+JY^5M0l}Ld71RVJNl&`YE{YtPKQCTuH|kM9guNXHR$S%H!uU=UNxB;iJJW z1dbU#zy?!IY7Oswd07sFuoqd329PaeBjOCM97HO~0p4ja{$J*ru9j=sR{~5hMkF?z zqJrg|CxZDnBm+!hfj+#>E@b4-R&i2>_r{zlHfmbfu{&qHEd^)g3TBhie35-M1q-d3 zHVH56YcJyK)H2)9w_uMKN%&#jn@$KU_=3(_+x7>kS6m1()LOO!*ezc@3y+y2gAMr0 zJzhUhe{sN=G)$KxC_O8tI%jnFx}(o>zvci!@wQI2|8U@kN&tL3|5$8Vee%jCM#x*Y z!_HMI+@tRP{>#kX)E!YqrWeDS-GJsf;y9*BNa|y)zJ^YosSV z0)<^nLvZktQI{K*SY>9jztY7uw0KogThI=7l=p5|YEwkZCZ;)^$bxosixeP5jKJRB&rek*K>t%L6=`f#-2aDVA;1QBR@NhnT^HUC+ zuIsO*RQCJ|%-D8sN9r4eNUgsz0|{Za@ne2D{%}N#jZd}VJ91RdaZ~j*%WvZ5E?@cT zX$&Vyqqois!u@(qR?neoVco|L1){$$3_cNvD;C57<;s-9*N5CQj`@i<$xDG&oI!ez_HjgzBk+ewaXnUE_JKL z{FM;)rsEmaczi$7evUm=xKpTCmzh~xti4wK0p6O&dVc$~C&{F7P1k){r{+f&3SaeB zt04P@d)g9tU%D<{BBz^KG`HEn*!O30IV&F)EH^)_NW>^RvpI7oP%hdHl`)ll(+nE( znfRGu1h5CVYis~968!Ckv!0ba(F{4fkr*M-@mA1HH&=iy*PtooqIg?vJWxa^izQk= zzi?6%eQu4jQeLJRF{L!@ic6N8`SDJ%3jfkdU*vX5AiP>8oU(ep*YQ4S<3TT?|I~Cx zm6Lcf7fyK-cDhd*&^)17+sz6eE*Vv0)tG~fxU~`+U2&im`@LIs)|XRhHBz#%><%IA zO&OWjn9^Iqs6U(-;_j27#7bGeHFSRO_}E#+aUDkVRgjqCL3R5G;e%riCoWUA4<7v6ZN8_!;+{3Q=u1IX z422ZlA%?Nj?M@&%IBrQ}5FwzpJ*=f&IF?H|;Jt-}#GAJc2KaHMQP^dRa5Q;3ij-Z0 z_xr+qm!KcF2tveLgGN5W>2lx#g~plKC9A@hR_Gn#Nu72mh}D?em&YM%AyxvK@wQM2 zsJ20i=C|3a3Y`A7^x_27Ht`>YF~{%aJ2iD&;;B7sRtX&QFY^0@&kmV}qe3@Q#9kgp zK@s+*s}7$C6-D_-I-hB%ohNOoC{5wx+1{x+X+$4(*BN4uf%44d3|Wx-=?oe+qA3YS zC^Ne2Ir9{S|Dvz|n+X3j{R{IUn_9a4R?*EZTpfALtq}-+Cv^N6M7{Kr`c&IaqA7rt z(I#EBsu!Qz*?7;^n)4L9-}9Q_o0+djtvLkcY*l#uO>77@KM4(i*lWx3rkM zBhg-`dt1CinU#&OM6Sr`9-4<247{XwzT}s!#h%fLL3X0L#&b&K+nwQZtM8w9gWz>~ zScEM(JY$Ihp%Sxq-%d0Y+7R@Lh)808Hdi7lC9lR~DJ7)IbH8Ut&J>FAUyN?EnGnLX zcB66|jW4U{+&{YR*ra## z7;kwxrZu_7m9d{XE40anc4uS(6RUU!U}U8}+C9FGitxyE-|!zx!RlwQzDX zcW~qRAC?iz=+zAs1W?^4x7?h%5e=w3AyI80^+G$FkRr$r4e0*MG6{_T#WFzRZ)T7C zP2W-fW*H-h{*Q*3O9>(e{`Csrzr5i$x@-I%R{PsNl;7wM{*CV9h3Y=SSfkTMawYGP z>(-Tc&*GiZpxbi&vui}?7oBqG2$Qf`Ej#iY zA(5d%j!KKDBA{!ikpaSD_K1S>yU)D19thsKnnBe9yEGCmtJRmxS5dATwwE)_hKjr# zOFV9b5+#PHg^!KZ+AS}{x)Sd^ABl}!nxGft+wUuDO1@x%3@rC*H7!-yPIj>sw0F*5 zkO7k;1I)e5>#7jml>Jce`bc~k)WC{0TwRa$iM^nvum&8_TM5zj#?PXMNQp+6_=i+5 z)Ba@FI}+A$^IIfO8lr?sE#V&kR%tUjY(%@v0($*J1(6rGN#?)*Y9LXuxAec+vo;jq zV_C%#qKpx0yl;@>jBU~#8qtEMTP0Egh2576-sg_;EjK6s`m*zIzqtOMc7;v8nPbqC z8o~(`sGspI2~qxDvH7N&f;{KY3zkNT@{Kp@Ns#la#xb{vi3IhSf$Dc>f+n-P?B_>b z-OmEjjm^JvJjPq zg}Ir*D_G98?ODr%5Hc1sH+E;VZ8VFKRxTzo%hw=B=k>MA2g8ZiX39J=X6sXUU+qMg zVrNnPzSLsF9)O<@Z%2yWy51|Yv*`wGKMYEJu04CoqWFdVR>ec zkImlYycv6Kd~WeU`a~p3H%GQfF$@{IRSO~yF(WwK!@wjZ%9o;`8lCXdw7)cd`DIP& zcworDXZ=_hN#Gn|R3w;Lcg9yXPNe#JEY`F3Q%uRhX`q9;%>Ge4&D^76Bg&I_CT z-EM92+ggrmibiz!=0HM)R2NrShQgJ5Z6gqEA=s-z)V4sQXE55 z(N=o|bSz^+e5Y3}Xe8FGc5}?ArWP}8f_X>aau7`BPtliu@iReIS%ik6f&}5btmt%K zoDKJ3K#Y{&EUGSt#>o2>?8)KPg`kEc{ zr=(`5EpR;z-n5y5r^%#6cJTT@=5k=dAkl8pd;k{GsMtflsl8y6;+5SKjgYDj%4Zzn z1jAP-h|9?{mY!V0eq9ZO9~1XF9Eb4V$*V~Qw$>@4J4pJAk}Q_R;qQyAn=U+%_ye@~ z;G&$T?kVQ5-jJ3ks7VmsK*9+ROq;T5N->{h`y-DC)JxjJYE3&Cdn6Ji4*0t2xqez3D`nz+NN)!ydc=ixJu=K z;+tj6XBuS98Gz$waIi07U&zhIi(`&j9U5xk0Z%qQ zkJ-Yy&cRa&$C1L3LA+eF5Z`=wd)hJI9XO-SBd+|+X@7=pai(!U;Rm`mRx1P_-0l7J zEjT{ag2`M&?(X%JqrfKj`FJXt1QdmE|1=ZlXa4v+RNFGNi=$#w!dRASEG61vv2wf| z%w{OvCL>l6*dESxjXkeB9r5DhIKS{TdLw{UBs>}l-tE3L@Ur40Pxz485z>!a6Onaw z8zjk+hwk1M0ls)oU+S9nOJNiUUTv@;lcGT(OyaXPJC^5I-hBJZQ!jHC{s76vh!MLs z%@SJ(*_Ct{jst3XkeJx~xNdwhycdz~L*!I+&ZjLm!$y(Cs73trmC$#DTo#Z3X=3ie zr6)l&1;%N~tSz*h!{hVAO^IM4yI`MBVA`I9Q0Ih^g2d;LA`A~rJkZf<`_JpTILhGZ zG6aIDHv~*ASxs+Zj}LVY94Y+MY>I7LKblBZ@gNJiQ89mR2X3_lP)OXEDwMGa_+UJc z(0XIqh12T~N@PD~RZww$l_u-mR0=FUiV_S_Dde3v2q!7tcbi4NYm&{@VL(c3e;YJW zx#6A?jU-bzrnJA)tXq~%f^sDi!^u#dWZYM{I+Zfm_gy4`H^9lAh+3lF?&abX18O8| z1;bMKE*j~geK8Ua6Qq%w&X8@l?PJef4ldH+&STHFx5HF8#3J`G8If#j)5rPSn=Ne1Q@t5^D2R)eD>kStH!y9_bu;-Ox;>Ey z*aZz6z#V*#C0=}#Rzcrb&)M{8{*ESE&Jfc@v`_wFD(nR5H1K(MX?(N<+rmk(=r23#PI`S{^KIV{7at WGb);AYQIW1$duSp#Qge)6#oO|Z#G2$ literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_0.sub b/test/ntuple_qcd_2000_Inf/batch/condor_0.sub new file mode 100644 index 00000000000..07c6f40ad4e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_1.sub b/test/ntuple_qcd_2000_Inf/batch/condor_1.sub new file mode 100644 index 00000000000..dbd80d7e3d8 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_10.sub b/test/ntuple_qcd_2000_Inf/batch/condor_10.sub new file mode 100644 index 00000000000..512af9aeb12 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_11.sub b/test/ntuple_qcd_2000_Inf/batch/condor_11.sub new file mode 100644 index 00000000000..deee6e1309a --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_12.sub b/test/ntuple_qcd_2000_Inf/batch/condor_12.sub new file mode 100644 index 00000000000..2495ed96aca --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_13.sub b/test/ntuple_qcd_2000_Inf/batch/condor_13.sub new file mode 100644 index 00000000000..bc54a0cff06 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_14.sub b/test/ntuple_qcd_2000_Inf/batch/condor_14.sub new file mode 100644 index 00000000000..8d399d3dcbb --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_15.sub b/test/ntuple_qcd_2000_Inf/batch/condor_15.sub new file mode 100644 index 00000000000..fd211fd617c --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_16.sub b/test/ntuple_qcd_2000_Inf/batch/condor_16.sub new file mode 100644 index 00000000000..7545f8c3e6c --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_17.sub b/test/ntuple_qcd_2000_Inf/batch/condor_17.sub new file mode 100644 index 00000000000..f399bbdac20 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_18.sub b/test/ntuple_qcd_2000_Inf/batch/condor_18.sub new file mode 100644 index 00000000000..65f204c5978 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_19.sub b/test/ntuple_qcd_2000_Inf/batch/condor_19.sub new file mode 100644 index 00000000000..8a9ec3690fa --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_2.sub b/test/ntuple_qcd_2000_Inf/batch/condor_2.sub new file mode 100644 index 00000000000..14884c351f4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_20.sub b/test/ntuple_qcd_2000_Inf/batch/condor_20.sub new file mode 100644 index 00000000000..22895e34481 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_21.sub b/test/ntuple_qcd_2000_Inf/batch/condor_21.sub new file mode 100644 index 00000000000..44b43ecad36 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_22.sub b/test/ntuple_qcd_2000_Inf/batch/condor_22.sub new file mode 100644 index 00000000000..4ddac90fa93 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_23.sub b/test/ntuple_qcd_2000_Inf/batch/condor_23.sub new file mode 100644 index 00000000000..a418ca1e305 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_24.sub b/test/ntuple_qcd_2000_Inf/batch/condor_24.sub new file mode 100644 index 00000000000..b171e151e69 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_25.sub b/test/ntuple_qcd_2000_Inf/batch/condor_25.sub new file mode 100644 index 00000000000..8b5fa111758 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_26.sub b/test/ntuple_qcd_2000_Inf/batch/condor_26.sub new file mode 100644 index 00000000000..7a73cd84355 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_27.sub b/test/ntuple_qcd_2000_Inf/batch/condor_27.sub new file mode 100644 index 00000000000..4e4bc57889e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_28.sub b/test/ntuple_qcd_2000_Inf/batch/condor_28.sub new file mode 100644 index 00000000000..ae5b20b3190 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_29.sub b/test/ntuple_qcd_2000_Inf/batch/condor_29.sub new file mode 100644 index 00000000000..766a47c871d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_3.sub b/test/ntuple_qcd_2000_Inf/batch/condor_3.sub new file mode 100644 index 00000000000..a40165839a2 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_30.sub b/test/ntuple_qcd_2000_Inf/batch/condor_30.sub new file mode 100644 index 00000000000..a49b5aceee4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_31.sub b/test/ntuple_qcd_2000_Inf/batch/condor_31.sub new file mode 100644 index 00000000000..aa52689ad15 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_32.sub b/test/ntuple_qcd_2000_Inf/batch/condor_32.sub new file mode 100644 index 00000000000..8676a946368 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_33.sub b/test/ntuple_qcd_2000_Inf/batch/condor_33.sub new file mode 100644 index 00000000000..fdcddc4be58 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_34.sub b/test/ntuple_qcd_2000_Inf/batch/condor_34.sub new file mode 100644 index 00000000000..635c39cda65 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_35.sub b/test/ntuple_qcd_2000_Inf/batch/condor_35.sub new file mode 100644 index 00000000000..5b7672b74bc --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_36.sub b/test/ntuple_qcd_2000_Inf/batch/condor_36.sub new file mode 100644 index 00000000000..6d5735c6c67 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_37.sub b/test/ntuple_qcd_2000_Inf/batch/condor_37.sub new file mode 100644 index 00000000000..02378b58ce9 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_38.sub b/test/ntuple_qcd_2000_Inf/batch/condor_38.sub new file mode 100644 index 00000000000..b66f3f64bd4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_39.sub b/test/ntuple_qcd_2000_Inf/batch/condor_39.sub new file mode 100644 index 00000000000..beec8aff11d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_4.sub b/test/ntuple_qcd_2000_Inf/batch/condor_4.sub new file mode 100644 index 00000000000..70e58ecc9a7 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_40.sub b/test/ntuple_qcd_2000_Inf/batch/condor_40.sub new file mode 100644 index 00000000000..0df962f6ba7 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_41.sub b/test/ntuple_qcd_2000_Inf/batch/condor_41.sub new file mode 100644 index 00000000000..1ffe18c96a4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_42.sub b/test/ntuple_qcd_2000_Inf/batch/condor_42.sub new file mode 100644 index 00000000000..d24fb0d6b1a --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_43.sub b/test/ntuple_qcd_2000_Inf/batch/condor_43.sub new file mode 100644 index 00000000000..9b31553b20f --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_44.sub b/test/ntuple_qcd_2000_Inf/batch/condor_44.sub new file mode 100644 index 00000000000..0d5e7aae31d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_45.sub b/test/ntuple_qcd_2000_Inf/batch/condor_45.sub new file mode 100644 index 00000000000..9f6e49cf998 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_46.sub b/test/ntuple_qcd_2000_Inf/batch/condor_46.sub new file mode 100644 index 00000000000..15b546352f3 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_47.sub b/test/ntuple_qcd_2000_Inf/batch/condor_47.sub new file mode 100644 index 00000000000..4e2fa077e12 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_48.sub b/test/ntuple_qcd_2000_Inf/batch/condor_48.sub new file mode 100644 index 00000000000..d1f1154c1cc --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_49.sub b/test/ntuple_qcd_2000_Inf/batch/condor_49.sub new file mode 100644 index 00000000000..2d4900fb5b6 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_5.sub b/test/ntuple_qcd_2000_Inf/batch/condor_5.sub new file mode 100644 index 00000000000..13d467ac1b1 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_50.sub b/test/ntuple_qcd_2000_Inf/batch/condor_50.sub new file mode 100644 index 00000000000..866b0132e6a --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_51.sub b/test/ntuple_qcd_2000_Inf/batch/condor_51.sub new file mode 100644 index 00000000000..19115e83cc0 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_52.sub b/test/ntuple_qcd_2000_Inf/batch/condor_52.sub new file mode 100644 index 00000000000..4ad324a7fbf --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_53.sub b/test/ntuple_qcd_2000_Inf/batch/condor_53.sub new file mode 100644 index 00000000000..08a2e0386e4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_54.sub b/test/ntuple_qcd_2000_Inf/batch/condor_54.sub new file mode 100644 index 00000000000..40cb6552f4e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_55.sub b/test/ntuple_qcd_2000_Inf/batch/condor_55.sub new file mode 100644 index 00000000000..b598dc70e64 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_56.sub b/test/ntuple_qcd_2000_Inf/batch/condor_56.sub new file mode 100644 index 00000000000..4c524494d34 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_57.sub b/test/ntuple_qcd_2000_Inf/batch/condor_57.sub new file mode 100644 index 00000000000..8793549ffdf --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_58.sub b/test/ntuple_qcd_2000_Inf/batch/condor_58.sub new file mode 100644 index 00000000000..c40e600f953 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_59.sub b/test/ntuple_qcd_2000_Inf/batch/condor_59.sub new file mode 100644 index 00000000000..f46d7cb741a --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_6.sub b/test/ntuple_qcd_2000_Inf/batch/condor_6.sub new file mode 100644 index 00000000000..4aa62eed447 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_60.sub b/test/ntuple_qcd_2000_Inf/batch/condor_60.sub new file mode 100644 index 00000000000..0c2d5044118 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_61.sub b/test/ntuple_qcd_2000_Inf/batch/condor_61.sub new file mode 100644 index 00000000000..8c7bb49a627 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_62.sub b/test/ntuple_qcd_2000_Inf/batch/condor_62.sub new file mode 100644 index 00000000000..ee61d54a145 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_63.sub b/test/ntuple_qcd_2000_Inf/batch/condor_63.sub new file mode 100644 index 00000000000..b5fab403795 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_64.sub b/test/ntuple_qcd_2000_Inf/batch/condor_64.sub new file mode 100644 index 00000000000..084b998a3ad --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_65.sub b/test/ntuple_qcd_2000_Inf/batch/condor_65.sub new file mode 100644 index 00000000000..3c6b09b9bb0 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_66.sub b/test/ntuple_qcd_2000_Inf/batch/condor_66.sub new file mode 100644 index 00000000000..8a1333dd7ea --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_67.sub b/test/ntuple_qcd_2000_Inf/batch/condor_67.sub new file mode 100644 index 00000000000..6655b811d28 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_68.sub b/test/ntuple_qcd_2000_Inf/batch/condor_68.sub new file mode 100644 index 00000000000..9d57f768c97 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_69.sub b/test/ntuple_qcd_2000_Inf/batch/condor_69.sub new file mode 100644 index 00000000000..0ab607461df --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_7.sub b/test/ntuple_qcd_2000_Inf/batch/condor_7.sub new file mode 100644 index 00000000000..a5feba4344d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_70.sub b/test/ntuple_qcd_2000_Inf/batch/condor_70.sub new file mode 100644 index 00000000000..236c056ba75 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_71.sub b/test/ntuple_qcd_2000_Inf/batch/condor_71.sub new file mode 100644 index 00000000000..746aad85dd8 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_72.sub b/test/ntuple_qcd_2000_Inf/batch/condor_72.sub new file mode 100644 index 00000000000..a4deb2c32b4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_73.sub b/test/ntuple_qcd_2000_Inf/batch/condor_73.sub new file mode 100644 index 00000000000..f6422b12e7d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_74.sub b/test/ntuple_qcd_2000_Inf/batch/condor_74.sub new file mode 100644 index 00000000000..a66a2f1b76a --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_75.sub b/test/ntuple_qcd_2000_Inf/batch/condor_75.sub new file mode 100644 index 00000000000..7e85a361788 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_76.sub b/test/ntuple_qcd_2000_Inf/batch/condor_76.sub new file mode 100644 index 00000000000..602466cd458 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_8.sub b/test/ntuple_qcd_2000_Inf/batch/condor_8.sub new file mode 100644 index 00000000000..9eb7428ea2e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_9.sub b/test/ntuple_qcd_2000_Inf/batch/condor_9.sub new file mode 100644 index 00000000000..e3d50d383b4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/nJobs.77 b/test/ntuple_qcd_2000_Inf/batch/nJobs.77 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_0.sh b/test/ntuple_qcd_2000_Inf/batch/sge_0.sh new file mode 100755 index 00000000000..912b47d7f35 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_1.sh b/test/ntuple_qcd_2000_Inf/batch/sge_1.sh new file mode 100755 index 00000000000..eec15a1f6fe --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_10.sh b/test/ntuple_qcd_2000_Inf/batch/sge_10.sh new file mode 100755 index 00000000000..6fb002d4553 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_11.sh b/test/ntuple_qcd_2000_Inf/batch/sge_11.sh new file mode 100755 index 00000000000..dfd5f5402ec --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_12.sh b/test/ntuple_qcd_2000_Inf/batch/sge_12.sh new file mode 100755 index 00000000000..5760a6fd8f6 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_13.sh b/test/ntuple_qcd_2000_Inf/batch/sge_13.sh new file mode 100755 index 00000000000..f5dc47851a1 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_14.sh b/test/ntuple_qcd_2000_Inf/batch/sge_14.sh new file mode 100755 index 00000000000..42ed0747c76 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_15.sh b/test/ntuple_qcd_2000_Inf/batch/sge_15.sh new file mode 100755 index 00000000000..f1cc2046570 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_16.sh b/test/ntuple_qcd_2000_Inf/batch/sge_16.sh new file mode 100755 index 00000000000..bf0ee99dce4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_17.sh b/test/ntuple_qcd_2000_Inf/batch/sge_17.sh new file mode 100755 index 00000000000..2b81754e619 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_18.sh b/test/ntuple_qcd_2000_Inf/batch/sge_18.sh new file mode 100755 index 00000000000..86ce7844100 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_19.sh b/test/ntuple_qcd_2000_Inf/batch/sge_19.sh new file mode 100755 index 00000000000..8de359a4cc8 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_2.sh b/test/ntuple_qcd_2000_Inf/batch/sge_2.sh new file mode 100755 index 00000000000..88474adf843 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_20.sh b/test/ntuple_qcd_2000_Inf/batch/sge_20.sh new file mode 100755 index 00000000000..8c89ae4caf3 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_21.sh b/test/ntuple_qcd_2000_Inf/batch/sge_21.sh new file mode 100755 index 00000000000..2375f706885 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_22.sh b/test/ntuple_qcd_2000_Inf/batch/sge_22.sh new file mode 100755 index 00000000000..e86b0608b40 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_23.sh b/test/ntuple_qcd_2000_Inf/batch/sge_23.sh new file mode 100755 index 00000000000..29d6c1e7dbd --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_24.sh b/test/ntuple_qcd_2000_Inf/batch/sge_24.sh new file mode 100755 index 00000000000..2c6e32c03b6 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_25.sh b/test/ntuple_qcd_2000_Inf/batch/sge_25.sh new file mode 100755 index 00000000000..86dd75b15f5 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_26.sh b/test/ntuple_qcd_2000_Inf/batch/sge_26.sh new file mode 100755 index 00000000000..51f7d01badd --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_27.sh b/test/ntuple_qcd_2000_Inf/batch/sge_27.sh new file mode 100755 index 00000000000..eab2fdaf255 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_28.sh b/test/ntuple_qcd_2000_Inf/batch/sge_28.sh new file mode 100755 index 00000000000..ac0dd8fff10 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_29.sh b/test/ntuple_qcd_2000_Inf/batch/sge_29.sh new file mode 100755 index 00000000000..2a05001453d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_3.sh b/test/ntuple_qcd_2000_Inf/batch/sge_3.sh new file mode 100755 index 00000000000..9de71601670 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_30.sh b/test/ntuple_qcd_2000_Inf/batch/sge_30.sh new file mode 100755 index 00000000000..9e8d04aa971 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_31.sh b/test/ntuple_qcd_2000_Inf/batch/sge_31.sh new file mode 100755 index 00000000000..e6038e0d7ea --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_32.sh b/test/ntuple_qcd_2000_Inf/batch/sge_32.sh new file mode 100755 index 00000000000..9615bc4565a --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_33.sh b/test/ntuple_qcd_2000_Inf/batch/sge_33.sh new file mode 100755 index 00000000000..920f4514641 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_34.sh b/test/ntuple_qcd_2000_Inf/batch/sge_34.sh new file mode 100755 index 00000000000..e624e8033d1 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_35.sh b/test/ntuple_qcd_2000_Inf/batch/sge_35.sh new file mode 100755 index 00000000000..ef7c01e47a3 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_36.sh b/test/ntuple_qcd_2000_Inf/batch/sge_36.sh new file mode 100755 index 00000000000..1a721f05041 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_37.sh b/test/ntuple_qcd_2000_Inf/batch/sge_37.sh new file mode 100755 index 00000000000..83c77eb9c62 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_38.sh b/test/ntuple_qcd_2000_Inf/batch/sge_38.sh new file mode 100755 index 00000000000..5cae5ad4164 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_39.sh b/test/ntuple_qcd_2000_Inf/batch/sge_39.sh new file mode 100755 index 00000000000..df2e0077d1e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_4.sh b/test/ntuple_qcd_2000_Inf/batch/sge_4.sh new file mode 100755 index 00000000000..65f3edfa21f --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_40.sh b/test/ntuple_qcd_2000_Inf/batch/sge_40.sh new file mode 100755 index 00000000000..07ecfb81f93 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_41.sh b/test/ntuple_qcd_2000_Inf/batch/sge_41.sh new file mode 100755 index 00000000000..cafea02f0b3 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_42.sh b/test/ntuple_qcd_2000_Inf/batch/sge_42.sh new file mode 100755 index 00000000000..200a0c68a76 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_43.sh b/test/ntuple_qcd_2000_Inf/batch/sge_43.sh new file mode 100755 index 00000000000..70ae1561ac3 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_44.sh b/test/ntuple_qcd_2000_Inf/batch/sge_44.sh new file mode 100755 index 00000000000..3a1722b458b --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_45.sh b/test/ntuple_qcd_2000_Inf/batch/sge_45.sh new file mode 100755 index 00000000000..7c4d07856ed --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_46.sh b/test/ntuple_qcd_2000_Inf/batch/sge_46.sh new file mode 100755 index 00000000000..244d387a1c4 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_47.sh b/test/ntuple_qcd_2000_Inf/batch/sge_47.sh new file mode 100755 index 00000000000..572d186889b --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_48.sh b/test/ntuple_qcd_2000_Inf/batch/sge_48.sh new file mode 100755 index 00000000000..acf33c43b4f --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_49.sh b/test/ntuple_qcd_2000_Inf/batch/sge_49.sh new file mode 100755 index 00000000000..6ae55175796 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_5.sh b/test/ntuple_qcd_2000_Inf/batch/sge_5.sh new file mode 100755 index 00000000000..e1e9cfbb482 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_50.sh b/test/ntuple_qcd_2000_Inf/batch/sge_50.sh new file mode 100755 index 00000000000..02778e4ccac --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_51.sh b/test/ntuple_qcd_2000_Inf/batch/sge_51.sh new file mode 100755 index 00000000000..f11268376e2 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_52.sh b/test/ntuple_qcd_2000_Inf/batch/sge_52.sh new file mode 100755 index 00000000000..294c66e3c89 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_53.sh b/test/ntuple_qcd_2000_Inf/batch/sge_53.sh new file mode 100755 index 00000000000..70f6ece3bd2 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_54.sh b/test/ntuple_qcd_2000_Inf/batch/sge_54.sh new file mode 100755 index 00000000000..c1e9015bbc8 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_55.sh b/test/ntuple_qcd_2000_Inf/batch/sge_55.sh new file mode 100755 index 00000000000..0309d967146 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_56.sh b/test/ntuple_qcd_2000_Inf/batch/sge_56.sh new file mode 100755 index 00000000000..bc48737a02e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_57.sh b/test/ntuple_qcd_2000_Inf/batch/sge_57.sh new file mode 100755 index 00000000000..8cab198400b --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_58.sh b/test/ntuple_qcd_2000_Inf/batch/sge_58.sh new file mode 100755 index 00000000000..4a6d342ad7c --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_59.sh b/test/ntuple_qcd_2000_Inf/batch/sge_59.sh new file mode 100755 index 00000000000..cf064c8873f --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_6.sh b/test/ntuple_qcd_2000_Inf/batch/sge_6.sh new file mode 100755 index 00000000000..ede9692a61b --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_60.sh b/test/ntuple_qcd_2000_Inf/batch/sge_60.sh new file mode 100755 index 00000000000..cd96542b650 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_61.sh b/test/ntuple_qcd_2000_Inf/batch/sge_61.sh new file mode 100755 index 00000000000..ab7641924c1 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_62.sh b/test/ntuple_qcd_2000_Inf/batch/sge_62.sh new file mode 100755 index 00000000000..00597810ba9 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_63.sh b/test/ntuple_qcd_2000_Inf/batch/sge_63.sh new file mode 100755 index 00000000000..f029f93ebde --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_64.sh b/test/ntuple_qcd_2000_Inf/batch/sge_64.sh new file mode 100755 index 00000000000..86625419c74 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_65.sh b/test/ntuple_qcd_2000_Inf/batch/sge_65.sh new file mode 100755 index 00000000000..42f76962340 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_66.sh b/test/ntuple_qcd_2000_Inf/batch/sge_66.sh new file mode 100755 index 00000000000..382526b1a27 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_67.sh b/test/ntuple_qcd_2000_Inf/batch/sge_67.sh new file mode 100755 index 00000000000..6e35c09af59 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_68.sh b/test/ntuple_qcd_2000_Inf/batch/sge_68.sh new file mode 100755 index 00000000000..d6a80d3b787 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_69.sh b/test/ntuple_qcd_2000_Inf/batch/sge_69.sh new file mode 100755 index 00000000000..676cf5a7173 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_7.sh b/test/ntuple_qcd_2000_Inf/batch/sge_7.sh new file mode 100755 index 00000000000..97ccaeda06b --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_70.sh b/test/ntuple_qcd_2000_Inf/batch/sge_70.sh new file mode 100755 index 00000000000..ba402d9637d --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_71.sh b/test/ntuple_qcd_2000_Inf/batch/sge_71.sh new file mode 100755 index 00000000000..8710d9db865 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_72.sh b/test/ntuple_qcd_2000_Inf/batch/sge_72.sh new file mode 100755 index 00000000000..6a65f2b62a5 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_73.sh b/test/ntuple_qcd_2000_Inf/batch/sge_73.sh new file mode 100755 index 00000000000..2c3a6f9d546 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_74.sh b/test/ntuple_qcd_2000_Inf/batch/sge_74.sh new file mode 100755 index 00000000000..f09ddd361e7 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_75.sh b/test/ntuple_qcd_2000_Inf/batch/sge_75.sh new file mode 100755 index 00000000000..1eb268bfbb6 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_76.sh b/test/ntuple_qcd_2000_Inf/batch/sge_76.sh new file mode 100755 index 00000000000..d47e41de2a1 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_8.sh b/test/ntuple_qcd_2000_Inf/batch/sge_8.sh new file mode 100755 index 00000000000..e47604bf332 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_9.sh b/test/ntuple_qcd_2000_Inf/batch/sge_9.sh new file mode 100755 index 00000000000..8c723ed3576 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batchscript.sh b/test/ntuple_qcd_2000_Inf/batchscript.sh new file mode 100755 index 00000000000..89cd3fb9eb9 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_2000_Inf" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/condor.sub b/test/ntuple_qcd_2000_Inf/condor.sub new file mode 100644 index 00000000000..4fa363f7559 --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 77 + \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/helper b/test/ntuple_qcd_2000_Inf/helper new file mode 120000 index 00000000000..73f6bcfdfed --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_2000_Inf/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/output b/test/ntuple_qcd_2000_Inf/output new file mode 120000 index 00000000000..d08de4acf7e --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/sge_sub.sh b/test/ntuple_qcd_2000_Inf/sge_sub.sh new file mode 100755 index 00000000000..04edb291adf --- /dev/null +++ b/test/ntuple_qcd_2000_Inf/sge_sub.sh @@ -0,0 +1,77 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_76.sh diff --git a/test/ntuple_qcd_200_300/ademoor.cc b/test/ntuple_qcd_200_300/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..21cb9ba2965d3f4ed76f569054983ab020623dfb GIT binary patch literal 5609 zcmai$Wl$X4l7^ANZLr`l1b3G}f&|y#2~Kc#hr!(~Xa);D3=-VkT?U5`f+kq75Om4b zcfY-RZ|&W#IzRgD?$f8v`{zLcAp8l$zYdy|jD{+wl>AeQ_TJpW!O6+>|E(fDb^JO1 zG>dBIYU*y~{?8)GQv&?*ti}XUep8=zCoRi!8ZXz>Y$wRn>_E`eLVnQH7L0(P_Vual z@4#?-AA;e;9fDz(kBo$fQh-76j~#`S+~j{Wqyj>2e2Tx;{ayVOg7M;MO5jfiLBXHV z!VnB5KnMoiwzng65&lTwJ|qF{mucXiPg(1fpi%E_+f}*|D>p8APxQ88xDImT7$ZNV z3rnKr_irMKO+8V|X=sc0J5OT7JZj+z{5E=*Ot0xp9>(45ayGwzXGHP*;MnWM%B9o> zx#8A_lLSts(U7wN#B3M@qs54KD>Agbstq~lilN3e8&AWyz^FZb91-~GvvfVjlLrb6VEUXNoo;Olo-{BhMttD*0SL@bjb%Y9gB?&sN zM-S=&7{lVdJF-Nt0ZgqAF+g4wcu~oR9T{a__P7p?BkGK6o&$PkG^{3U1Odd4LE)&T zKyEsjys}qg8b&Oa z+T%i`jj=C)t6GKF z4GwZ7xX?l7P)VX<3W_6nZTz}fsD4$9I> z7A>bqzse=O$n3&#DfNFaOo`Sh2&r6SMf9p>>vzgXvFBYjW+t=7(w-Iw(rQMIKFaof<=4%hvxy8lDUnJ9Hw zKx>g)Ik6x{l)%?~EEMdi`RAop6#jDVdz-^S(^r!5MNtc^m3ebL`!c`+h63vnW*{o; zg8$@sAZ#Slq|Wfpmxu8v7<+}$Xc*Z-Dk{O?%0alA6vI0U#`oJy!_{(A=Zc>mMu)_V zQ&O~+|A@bsfMkG4#6O7F)q{+jVU-|ecxTL(Zlj`&9lv+R(^_;^DQ7w($s0ZRxoEjf z!zNkQzV0HaUgcvu+79gDA`KYfz3qg+2o!ME-nIXcdBu+Kno8St7`wIGv-pG|I>dml z(nIr}s=@(%#xPqNzx=F}@|@10drzP7ZqtDq;BB30ANa!`1)t*KJhAkB?WvkgoS^r+ zPCHkzNRRrvyNdaP*;~S#k6zC=?S?hZ5vMRsLd*3m=Nx>(2J}S)L(a!6Nd3R27NcG& zyZas;Ye&V;XLKRcefnX{-JxJ$=zK9|TZ9hsT*5ji8Eow0oGsG_3L_Fz9Gyx`QLK@F zlq0i?YYYilHR^H05~=>!0#>;A1u6aVN=LvBcY@~>)E=2hFqb^pF6i`qx02JAWPnFE zVdC65FX`F6qKhDv2ASO|cbTM0De(bQJaONu$91JGt2h?zrycEQD%DH~0eEAra!q+m zCZIyxS*$f?JjpF$_OzZk0K3cRilf93iz0}@VX&XU`Lxpvo+K`6!-+>g5{8G9y5z4I zF;_oSN3Q7EO_8(f-hnhY5hnIk&6HaZvz-sK;w12x1{+AZTwb$M!mn@G>k)YK}y%5X8Eg+9Ux5qt56uA-#FgI4l8^lTI%g~y?zejH3HLkrWy|frjhAtX&dkmn$>b|`qfmP2l1A{P z&-7uA5r#d6yZROddNSB*YA{TW`5{*=BOEwa=&u1psfWt$VU4MUfP1 zi3=zB7ZTPu8a+bk>s_D{f>8OTlczALqFf| zDYFsH6bz7GNBsQ$ETCmtzOI*PV61FHg-LxOY}~Dl$mog{rPSYi%~@Yssm(~i#0uO0T@Z%+(+9^{JODW|$)neD%l%>77i!NsE>*{kJi3hz;P`03 z#Q3D^1UaSIVZ-SNt!z4nB??%M52f1is&KLFblJzh$ECRR*HRL?k1XOW&9ejdl&7N>N>;C3;cj*E%;-syEBT4)c(q zgv!@c+bL8MEN72Qqvo2B6)C=>!9w@@%-JgO$Z(%^K@|t8nWnG`mOLI8O};WKm#G66 zP@Ef|5bawU&U$&Hm4~hx)?X2X-2y~p_sYA+2!W3IY`FA!K6nF5H=jJg@(0%9B^5=v zab#k6N9e{*H+w;7;t8wjBM1R?9TBY^LhW3Zts1E?|}vh;le zzwbhWm)zfO5Cn;KMvQ!fvZcj~8*w zAU7_>pWPJy*!(GYhdX%dZ}vkg42A=OXQxWri>?w>gLF04!W_VZ940Puj@rbc`6gJd zgdg}YU@;zj77=xkME<7YB7!n-U#2R;cj@yPEMcn;*0;y3&n%kN>Ch$QuOB{AerPnp zr(7;$vrmv7S=w|I>p&juW-2CM<&~q0ebswn0F-j?d_7bBTh~~u5hDCU3mRRY?PH82 zJ}r~K&YGB~gxW^t>Fv$J!EZ~}+=k?z9%nBGAdw>q>%n_5k-v(06Nr*n)ocxs+Ht=C zHtfMG4YHs=gn0lx{Emccun;I(B>E@A=SUlWebRq6>QD7wj6(Hxb#ihye=6WwIJucQ zxN-h3%Umm<>I}n!nA7f5l+y{ZD)~PnPC8!`>NYas7iM;HF8*a%(*I!@M#>YjCp^)2 z%)ePi$4&c3Lo6WYCZ+i66%_ySh9`7ae;QW#+djY(x{E)dyQo8WJeFlSg?hhS2IW^r?91AG&Xlh9p$73@K> zwf1GUc10$XNFu<@?M6qsNA*Y56!@#_JSAJHOOR_n8zEdpaHzIpz{HZEW7O^C4Al0?c~K8 zG^O7v&4Fldm1Z=Zu(mu%+f^mWd`5KpuIe;&T6IIeTnn!cz&%C@}E+EgM1 zOX0RMd;9)%vs2=5HwhSUX_tK|VWj4LdXp&6+M`Js+V7W1RW9zQ+ zc&b`ky%*)H7M?svW7G`OZs4^D6(c?7`%;3CT~5xscs0V;+n{;;16#^l_^ezjt##*k zk!xXEpVqzn7OO=Din~|X`%o*_kQ!^6i z8c7DVz5{pTtnZJ*2z~IOlbX9;g1r05b>i8wTs;x~g;B5MYq{noaM`r3ph|qE-J{R0 z%xe+4dZwh$pNvag?Qm^ejTgt)_hO}N#ny2!ewJ4y@`WT0-t62pdrw!mxv+Noetb|} z&?ChaM*0vNf~if8v3E!Jf`Q46Zy29WghiI8Z)r;-WsZbT&p;p3SH`R#{8<_;MLgK6Vth-w0`X`5lwAIr$`xCuT1%bZ=Vy+l7PC zfR<4;1O1HgJ+J*?ev`sHy~v z8ppM)#Hk76lq&N2YD_A}@pde5-mfT{;G#eWm_v;ucsS zk#0a6GV`n%@tE>Dv=nK&Sa2CO{Yh?Tt$4YCc+UJLDBeGB-XSKvd(p}A(5)OK} zN47U3Du;Q^mpQ%2MmCk~aJ+!R@#F~_Qk#(AC96xMbtkD0qHf!*S`s{01n$FKzoeSc z)_+^)1Y=v^p1mEet*$JXrVQw;WK3*3(v#k%}X{RMExFip#KYS;#O&B*^>1}DeH=Kgi8Os0-xelIJ=H@ylc z?-KSWZF(3n@wQ@*DE;Zb1=)wzd4oo&pJ%7?G4#k)ASJ2DD(s|f|R z)v7J_%8o)MsV|P>C$pyG|vlOo8L5*=vGC6`S`!%J$aa7~+Pl(f@N(C4K zqFq0rsp6oucp&-Di076~NZrh~Wg_>&f>m}0sSQmwGtKE;ypd7F?OZuYTl1DWL>8-^;K!-#&DWKBX$FF*})sPLPFh28fZwT%o0 z9UR1v=T|I8rz<}73U5H0+Ps46zx@e%jX4LZuTgLmau(6OU(*}pL}_qVc-)`fw-pCM zo=IbN_YY>r8^{SA5yZ8x4J*}{f^057peU|sFq4!i3OF*KTi#_MS(^084u{*9xDHsO zRdCHmxrB==@|;4o-Vjag702&>jUdt~0YhVx56Dry;^W0uWu3mCh-{5a(;i3lP$#(L zD6H_?n)!IGPWm~oe0&G0>W|*%F!x!N|@}T3UcEQUIkNP_9ACw~U7S{Z}OESkV!9A#Q+C7Sn&m35e zN+{42InbPQO6K2qN%Gk1g`(wDd~{`fDH3Q4aY;&j^YcJ5(`;v-{L75aOZoIAo+8v( zo8)lH>mU(%-vK`HG3i3Ks@=L zKn?S(s48=K`F&^JY$3ED%^xmfE#5<#dM1Yrucc$aKG1FUWD-*fiPZN(Jk)R{iE`&K zWK7eg6p-};UuimW9Xs)9bDR#N3&a%tBBcXC-PeD|CqvNi0LKdaLApD~;=oiQ6?a+H zIdI-N))F-xf0Fvh8}`98^F@^)&>EYCrb{haU}#=b6Z)R(G!XDMmFXNF3U@Jsi?X zj&#j@r^V)@)wN-Ee~4;`(5>6g{@ckQ>NnPQ`kWYpxUUs&yIP?}jXNi`>S-|?5E|ft8%skD#sgr1fkN-Vr z3}wd)m7Is|mSKZ9>1wr5bV{Hb&RLi6N=w~SN+MgfkoPgk3Eg@hI_FzYdO^9ClBFog Tw1IYtBIWA5#1;AlgB` literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_200_300/batch/condor_0.sub b/test/ntuple_qcd_200_300/batch/condor_0.sub new file mode 100644 index 00000000000..e12a00dea0e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_1.sub b/test/ntuple_qcd_200_300/batch/condor_1.sub new file mode 100644 index 00000000000..03345270cad --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_10.sub b/test/ntuple_qcd_200_300/batch/condor_10.sub new file mode 100644 index 00000000000..759b8a3ab82 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_100.sub b/test/ntuple_qcd_200_300/batch/condor_100.sub new file mode 100644 index 00000000000..8a506a86704 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_101.sub b/test/ntuple_qcd_200_300/batch/condor_101.sub new file mode 100644 index 00000000000..c6252e47dc8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_102.sub b/test/ntuple_qcd_200_300/batch/condor_102.sub new file mode 100644 index 00000000000..0c3f9763e5d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_103.sub b/test/ntuple_qcd_200_300/batch/condor_103.sub new file mode 100644 index 00000000000..61b3d25f3dc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_104.sub b/test/ntuple_qcd_200_300/batch/condor_104.sub new file mode 100644 index 00000000000..21a93cfb8c2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_105.sub b/test/ntuple_qcd_200_300/batch/condor_105.sub new file mode 100644 index 00000000000..3d580676bde --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_106.sub b/test/ntuple_qcd_200_300/batch/condor_106.sub new file mode 100644 index 00000000000..2bd6155090e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_107.sub b/test/ntuple_qcd_200_300/batch/condor_107.sub new file mode 100644 index 00000000000..e47fb8a0adf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_108.sub b/test/ntuple_qcd_200_300/batch/condor_108.sub new file mode 100644 index 00000000000..4001f8226a8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_109.sub b/test/ntuple_qcd_200_300/batch/condor_109.sub new file mode 100644 index 00000000000..21b77c899fb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_11.sub b/test/ntuple_qcd_200_300/batch/condor_11.sub new file mode 100644 index 00000000000..33ffbc7751a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_110.sub b/test/ntuple_qcd_200_300/batch/condor_110.sub new file mode 100644 index 00000000000..3bc647be2f1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_111.sub b/test/ntuple_qcd_200_300/batch/condor_111.sub new file mode 100644 index 00000000000..bd2863b86ca --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_112.sub b/test/ntuple_qcd_200_300/batch/condor_112.sub new file mode 100644 index 00000000000..e73843733f9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_113.sub b/test/ntuple_qcd_200_300/batch/condor_113.sub new file mode 100644 index 00000000000..408ec1739de --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_114.sub b/test/ntuple_qcd_200_300/batch/condor_114.sub new file mode 100644 index 00000000000..904c4ac0aa0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_115.sub b/test/ntuple_qcd_200_300/batch/condor_115.sub new file mode 100644 index 00000000000..8ba9e534f29 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_116.sub b/test/ntuple_qcd_200_300/batch/condor_116.sub new file mode 100644 index 00000000000..59340a77c21 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_117.sub b/test/ntuple_qcd_200_300/batch/condor_117.sub new file mode 100644 index 00000000000..993f1e89a39 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_118.sub b/test/ntuple_qcd_200_300/batch/condor_118.sub new file mode 100644 index 00000000000..81754a8c78f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_119.sub b/test/ntuple_qcd_200_300/batch/condor_119.sub new file mode 100644 index 00000000000..4c285b2d8a0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_12.sub b/test/ntuple_qcd_200_300/batch/condor_12.sub new file mode 100644 index 00000000000..cbd238e6922 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_120.sub b/test/ntuple_qcd_200_300/batch/condor_120.sub new file mode 100644 index 00000000000..0de16a08f7e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_121.sub b/test/ntuple_qcd_200_300/batch/condor_121.sub new file mode 100644 index 00000000000..28790bab769 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_122.sub b/test/ntuple_qcd_200_300/batch/condor_122.sub new file mode 100644 index 00000000000..467fff80413 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_123.sub b/test/ntuple_qcd_200_300/batch/condor_123.sub new file mode 100644 index 00000000000..89a78a3b63f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_124.sub b/test/ntuple_qcd_200_300/batch/condor_124.sub new file mode 100644 index 00000000000..fea8129373f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_125.sub b/test/ntuple_qcd_200_300/batch/condor_125.sub new file mode 100644 index 00000000000..d02e91a35c5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_126.sub b/test/ntuple_qcd_200_300/batch/condor_126.sub new file mode 100644 index 00000000000..9d2e1964f1d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_127.sub b/test/ntuple_qcd_200_300/batch/condor_127.sub new file mode 100644 index 00000000000..b05c37f9812 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_128.sub b/test/ntuple_qcd_200_300/batch/condor_128.sub new file mode 100644 index 00000000000..1d051551c09 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_129.sub b/test/ntuple_qcd_200_300/batch/condor_129.sub new file mode 100644 index 00000000000..53fe727d3e4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_13.sub b/test/ntuple_qcd_200_300/batch/condor_13.sub new file mode 100644 index 00000000000..8eb5629c3d3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_130.sub b/test/ntuple_qcd_200_300/batch/condor_130.sub new file mode 100644 index 00000000000..d2aa992f0eb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_131.sub b/test/ntuple_qcd_200_300/batch/condor_131.sub new file mode 100644 index 00000000000..708d80f31a3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_132.sub b/test/ntuple_qcd_200_300/batch/condor_132.sub new file mode 100644 index 00000000000..48589715dd0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_133.sub b/test/ntuple_qcd_200_300/batch/condor_133.sub new file mode 100644 index 00000000000..efa76bba742 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_134.sub b/test/ntuple_qcd_200_300/batch/condor_134.sub new file mode 100644 index 00000000000..e0fd722c6d5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_135.sub b/test/ntuple_qcd_200_300/batch/condor_135.sub new file mode 100644 index 00000000000..2d77203c808 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_136.sub b/test/ntuple_qcd_200_300/batch/condor_136.sub new file mode 100644 index 00000000000..281becaa7df --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_137.sub b/test/ntuple_qcd_200_300/batch/condor_137.sub new file mode 100644 index 00000000000..85cbed21ddb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_138.sub b/test/ntuple_qcd_200_300/batch/condor_138.sub new file mode 100644 index 00000000000..998b903b7af --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_139.sub b/test/ntuple_qcd_200_300/batch/condor_139.sub new file mode 100644 index 00000000000..ce2ee8c8ca1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_139.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.139.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_139.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.139.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_14.sub b/test/ntuple_qcd_200_300/batch/condor_14.sub new file mode 100644 index 00000000000..ebd9d9cf7f1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_140.sub b/test/ntuple_qcd_200_300/batch/condor_140.sub new file mode 100644 index 00000000000..81528fd3985 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_140.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.140.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_140.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.140.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_141.sub b/test/ntuple_qcd_200_300/batch/condor_141.sub new file mode 100644 index 00000000000..ca858ad4c79 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_141.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.141.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_141.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.141.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_142.sub b/test/ntuple_qcd_200_300/batch/condor_142.sub new file mode 100644 index 00000000000..47e9fbae57f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_142.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.142.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_142.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.142.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_143.sub b/test/ntuple_qcd_200_300/batch/condor_143.sub new file mode 100644 index 00000000000..9f746c4f260 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_143.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.143.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_143.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.143.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_144.sub b/test/ntuple_qcd_200_300/batch/condor_144.sub new file mode 100644 index 00000000000..93003ad4389 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_144.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.144.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_144.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.144.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_145.sub b/test/ntuple_qcd_200_300/batch/condor_145.sub new file mode 100644 index 00000000000..bf1edf061e3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_145.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.145.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_145.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.145.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_146.sub b/test/ntuple_qcd_200_300/batch/condor_146.sub new file mode 100644 index 00000000000..540b123dae5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_146.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.146.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_146.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.146.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_147.sub b/test/ntuple_qcd_200_300/batch/condor_147.sub new file mode 100644 index 00000000000..f8a7517125d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_147.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.147.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_147.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.147.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_148.sub b/test/ntuple_qcd_200_300/batch/condor_148.sub new file mode 100644 index 00000000000..41f58ec3fac --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_148.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.148.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_148.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.148.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_149.sub b/test/ntuple_qcd_200_300/batch/condor_149.sub new file mode 100644 index 00000000000..49eb71fcc31 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_149.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.149.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_149.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.149.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_15.sub b/test/ntuple_qcd_200_300/batch/condor_15.sub new file mode 100644 index 00000000000..549b3c2ab80 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_150.sub b/test/ntuple_qcd_200_300/batch/condor_150.sub new file mode 100644 index 00000000000..b12041c5776 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_150.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.150.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_150.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.150.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_151.sub b/test/ntuple_qcd_200_300/batch/condor_151.sub new file mode 100644 index 00000000000..448ba28e3ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_151.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.151.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_151.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.151.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_152.sub b/test/ntuple_qcd_200_300/batch/condor_152.sub new file mode 100644 index 00000000000..aa5b79dadf6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_152.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.152.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_152.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.152.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_153.sub b/test/ntuple_qcd_200_300/batch/condor_153.sub new file mode 100644 index 00000000000..6e7bf1eca9c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_153.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.153.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_153.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.153.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_154.sub b/test/ntuple_qcd_200_300/batch/condor_154.sub new file mode 100644 index 00000000000..9d005cc8173 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_154.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.154.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_154.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.154.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_155.sub b/test/ntuple_qcd_200_300/batch/condor_155.sub new file mode 100644 index 00000000000..4888f57a893 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_155.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.155.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_155.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.155.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_156.sub b/test/ntuple_qcd_200_300/batch/condor_156.sub new file mode 100644 index 00000000000..b5e54fed3f9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_156.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.156.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_156.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.156.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_157.sub b/test/ntuple_qcd_200_300/batch/condor_157.sub new file mode 100644 index 00000000000..782442a5ce6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_157.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.157.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_157.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.157.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_158.sub b/test/ntuple_qcd_200_300/batch/condor_158.sub new file mode 100644 index 00000000000..681e2d35ddc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_158.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.158.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_158.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.158.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_159.sub b/test/ntuple_qcd_200_300/batch/condor_159.sub new file mode 100644 index 00000000000..88a49067797 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_159.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.159.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_159.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.159.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_16.sub b/test/ntuple_qcd_200_300/batch/condor_16.sub new file mode 100644 index 00000000000..25800c2702f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_160.sub b/test/ntuple_qcd_200_300/batch/condor_160.sub new file mode 100644 index 00000000000..ff71f79e047 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_160.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.160.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_160.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.160.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_161.sub b/test/ntuple_qcd_200_300/batch/condor_161.sub new file mode 100644 index 00000000000..3d37647f138 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_161.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.161.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_161.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.161.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_162.sub b/test/ntuple_qcd_200_300/batch/condor_162.sub new file mode 100644 index 00000000000..b1f602aadd6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_162.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.162.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_162.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.162.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_163.sub b/test/ntuple_qcd_200_300/batch/condor_163.sub new file mode 100644 index 00000000000..f9c69a0d7a2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_163.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.163.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_163.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.163.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_164.sub b/test/ntuple_qcd_200_300/batch/condor_164.sub new file mode 100644 index 00000000000..759ead88c46 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_164.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.164.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_164.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.164.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_165.sub b/test/ntuple_qcd_200_300/batch/condor_165.sub new file mode 100644 index 00000000000..79f3b48bc05 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_165.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.165.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_165.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.165.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_166.sub b/test/ntuple_qcd_200_300/batch/condor_166.sub new file mode 100644 index 00000000000..13061a7c829 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_166.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.166.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_166.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.166.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_167.sub b/test/ntuple_qcd_200_300/batch/condor_167.sub new file mode 100644 index 00000000000..9d510463e4f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_167.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.167.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_167.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.167.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_168.sub b/test/ntuple_qcd_200_300/batch/condor_168.sub new file mode 100644 index 00000000000..56f15c345eb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_168.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.168.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_168.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.168.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_169.sub b/test/ntuple_qcd_200_300/batch/condor_169.sub new file mode 100644 index 00000000000..e13139a9647 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_169.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.169.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_169.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.169.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_17.sub b/test/ntuple_qcd_200_300/batch/condor_17.sub new file mode 100644 index 00000000000..7f2162d5109 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_170.sub b/test/ntuple_qcd_200_300/batch/condor_170.sub new file mode 100644 index 00000000000..8237fba9e30 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_170.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.170.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_170.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.170.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_171.sub b/test/ntuple_qcd_200_300/batch/condor_171.sub new file mode 100644 index 00000000000..1dd5144f95e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_171.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.171.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_171.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.171.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_172.sub b/test/ntuple_qcd_200_300/batch/condor_172.sub new file mode 100644 index 00000000000..d23014db66a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_172.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.172.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_172.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.172.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_173.sub b/test/ntuple_qcd_200_300/batch/condor_173.sub new file mode 100644 index 00000000000..cb3346e3ea4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_173.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.173.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_173.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.173.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_174.sub b/test/ntuple_qcd_200_300/batch/condor_174.sub new file mode 100644 index 00000000000..ae65239be9a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_174.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.174.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_174.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.174.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_175.sub b/test/ntuple_qcd_200_300/batch/condor_175.sub new file mode 100644 index 00000000000..af69923a5c5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_175.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.175.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_175.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.175.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_176.sub b/test/ntuple_qcd_200_300/batch/condor_176.sub new file mode 100644 index 00000000000..f216159cf55 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_176.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.176.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_176.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.176.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_177.sub b/test/ntuple_qcd_200_300/batch/condor_177.sub new file mode 100644 index 00000000000..6cb2a2043a3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_177.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.177.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_177.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.177.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_178.sub b/test/ntuple_qcd_200_300/batch/condor_178.sub new file mode 100644 index 00000000000..ae0ef65af01 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_178.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.178.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_178.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.178.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_179.sub b/test/ntuple_qcd_200_300/batch/condor_179.sub new file mode 100644 index 00000000000..db5a261e638 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_179.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.179.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_179.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.179.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_18.sub b/test/ntuple_qcd_200_300/batch/condor_18.sub new file mode 100644 index 00000000000..f1f2665f107 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_180.sub b/test/ntuple_qcd_200_300/batch/condor_180.sub new file mode 100644 index 00000000000..51253e6640b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_180.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.180.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_180.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.180.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_181.sub b/test/ntuple_qcd_200_300/batch/condor_181.sub new file mode 100644 index 00000000000..8d67c6cb753 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_181.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.181.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_181.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.181.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_182.sub b/test/ntuple_qcd_200_300/batch/condor_182.sub new file mode 100644 index 00000000000..44142a0590b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_182.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.182.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_182.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.182.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_183.sub b/test/ntuple_qcd_200_300/batch/condor_183.sub new file mode 100644 index 00000000000..3d0cab72ed0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_183.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.183.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_183.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.183.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_184.sub b/test/ntuple_qcd_200_300/batch/condor_184.sub new file mode 100644 index 00000000000..862ba445d5f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_184.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.184.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_184.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.184.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_185.sub b/test/ntuple_qcd_200_300/batch/condor_185.sub new file mode 100644 index 00000000000..d77924375c4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_185.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.185.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_185.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.185.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_186.sub b/test/ntuple_qcd_200_300/batch/condor_186.sub new file mode 100644 index 00000000000..902028167d3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_186.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.186.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_186.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.186.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_187.sub b/test/ntuple_qcd_200_300/batch/condor_187.sub new file mode 100644 index 00000000000..c4bcde219f3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_187.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.187.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_187.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.187.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_188.sub b/test/ntuple_qcd_200_300/batch/condor_188.sub new file mode 100644 index 00000000000..ebb62d98fb2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_188.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.188.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_188.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.188.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_189.sub b/test/ntuple_qcd_200_300/batch/condor_189.sub new file mode 100644 index 00000000000..e82e772b571 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_189.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.189.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_189.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.189.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_19.sub b/test/ntuple_qcd_200_300/batch/condor_19.sub new file mode 100644 index 00000000000..50dd99bf018 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_190.sub b/test/ntuple_qcd_200_300/batch/condor_190.sub new file mode 100644 index 00000000000..943b9b2a28c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_190.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.190.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_190.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.190.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_191.sub b/test/ntuple_qcd_200_300/batch/condor_191.sub new file mode 100644 index 00000000000..e918755357a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_191.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.191.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_191.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.191.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_192.sub b/test/ntuple_qcd_200_300/batch/condor_192.sub new file mode 100644 index 00000000000..2ca04f506f7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_192.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.192.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_192.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.192.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_193.sub b/test/ntuple_qcd_200_300/batch/condor_193.sub new file mode 100644 index 00000000000..7c1a122424f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_193.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.193.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_193.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.193.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_194.sub b/test/ntuple_qcd_200_300/batch/condor_194.sub new file mode 100644 index 00000000000..74643560cbe --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_194.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.194.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_194.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.194.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_195.sub b/test/ntuple_qcd_200_300/batch/condor_195.sub new file mode 100644 index 00000000000..9fc433c7419 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_195.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.195.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_195.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.195.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_196.sub b/test/ntuple_qcd_200_300/batch/condor_196.sub new file mode 100644 index 00000000000..9f2a0f3645e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_196.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.196.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_196.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.196.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_197.sub b/test/ntuple_qcd_200_300/batch/condor_197.sub new file mode 100644 index 00000000000..321afb40fc0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_197.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.197.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_197.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.197.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_198.sub b/test/ntuple_qcd_200_300/batch/condor_198.sub new file mode 100644 index 00000000000..17c5b31654a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_198.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.198.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_198.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.198.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_199.sub b/test/ntuple_qcd_200_300/batch/condor_199.sub new file mode 100644 index 00000000000..dc78ba82997 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_199.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.199.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_199.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.199.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_2.sub b/test/ntuple_qcd_200_300/batch/condor_2.sub new file mode 100644 index 00000000000..43c658bd087 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_20.sub b/test/ntuple_qcd_200_300/batch/condor_20.sub new file mode 100644 index 00000000000..23dfc9a1809 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_200.sub b/test/ntuple_qcd_200_300/batch/condor_200.sub new file mode 100644 index 00000000000..08212996ca2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_200.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.200.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_200.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.200.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_201.sub b/test/ntuple_qcd_200_300/batch/condor_201.sub new file mode 100644 index 00000000000..13a09366568 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_201.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.201.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_201.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.201.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_202.sub b/test/ntuple_qcd_200_300/batch/condor_202.sub new file mode 100644 index 00000000000..f375ee17059 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_202.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.202.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_202.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.202.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_203.sub b/test/ntuple_qcd_200_300/batch/condor_203.sub new file mode 100644 index 00000000000..f23c08b86ee --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_203.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.203.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_203.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.203.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_204.sub b/test/ntuple_qcd_200_300/batch/condor_204.sub new file mode 100644 index 00000000000..25454cfbcb8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_204.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.204.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_204.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.204.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_205.sub b/test/ntuple_qcd_200_300/batch/condor_205.sub new file mode 100644 index 00000000000..2cb5a3e2165 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_205.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.205.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_205.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.205.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_206.sub b/test/ntuple_qcd_200_300/batch/condor_206.sub new file mode 100644 index 00000000000..405f0bd9469 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_206.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.206.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_206.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.206.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_207.sub b/test/ntuple_qcd_200_300/batch/condor_207.sub new file mode 100644 index 00000000000..f350a1064a7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_207.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.207.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_207.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.207.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_208.sub b/test/ntuple_qcd_200_300/batch/condor_208.sub new file mode 100644 index 00000000000..1e5a62894b2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_208.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.208.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_208.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.208.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_209.sub b/test/ntuple_qcd_200_300/batch/condor_209.sub new file mode 100644 index 00000000000..8811ce69fe1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_209.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.209.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_209.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.209.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_21.sub b/test/ntuple_qcd_200_300/batch/condor_21.sub new file mode 100644 index 00000000000..a8140000cb2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_210.sub b/test/ntuple_qcd_200_300/batch/condor_210.sub new file mode 100644 index 00000000000..411bd1df5f7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_210.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.210.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_210.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.210.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_211.sub b/test/ntuple_qcd_200_300/batch/condor_211.sub new file mode 100644 index 00000000000..33b6bb6a073 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_211.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.211.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_211.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.211.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_212.sub b/test/ntuple_qcd_200_300/batch/condor_212.sub new file mode 100644 index 00000000000..b5a67a2c575 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_212.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.212.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_212.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.212.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_213.sub b/test/ntuple_qcd_200_300/batch/condor_213.sub new file mode 100644 index 00000000000..f8d22234e51 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_213.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.213.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_213.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.213.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_214.sub b/test/ntuple_qcd_200_300/batch/condor_214.sub new file mode 100644 index 00000000000..31a524d50c7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_214.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.214.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_214.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.214.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_215.sub b/test/ntuple_qcd_200_300/batch/condor_215.sub new file mode 100644 index 00000000000..5fb7fb703fe --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_215.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.215.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_215.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.215.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_216.sub b/test/ntuple_qcd_200_300/batch/condor_216.sub new file mode 100644 index 00000000000..51835e1fda4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_216.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.216.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_216.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.216.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_217.sub b/test/ntuple_qcd_200_300/batch/condor_217.sub new file mode 100644 index 00000000000..2a9a9d39275 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_217.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.217.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_217.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.217.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_218.sub b/test/ntuple_qcd_200_300/batch/condor_218.sub new file mode 100644 index 00000000000..89cb5125f56 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_218.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.218.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_218.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.218.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_219.sub b/test/ntuple_qcd_200_300/batch/condor_219.sub new file mode 100644 index 00000000000..c0254d29f23 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_219.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.219.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_219.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.219.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_22.sub b/test/ntuple_qcd_200_300/batch/condor_22.sub new file mode 100644 index 00000000000..8a25916a448 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_220.sub b/test/ntuple_qcd_200_300/batch/condor_220.sub new file mode 100644 index 00000000000..12139e3afd6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_220.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.220.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_220.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.220.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_221.sub b/test/ntuple_qcd_200_300/batch/condor_221.sub new file mode 100644 index 00000000000..a6a96571ff4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_221.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.221.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_221.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.221.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_222.sub b/test/ntuple_qcd_200_300/batch/condor_222.sub new file mode 100644 index 00000000000..c94f31379e2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_222.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.222.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_222.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.222.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_223.sub b/test/ntuple_qcd_200_300/batch/condor_223.sub new file mode 100644 index 00000000000..bd1262e3800 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_223.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.223.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_223.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.223.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_224.sub b/test/ntuple_qcd_200_300/batch/condor_224.sub new file mode 100644 index 00000000000..1734461e448 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_224.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.224.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_224.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.224.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_225.sub b/test/ntuple_qcd_200_300/batch/condor_225.sub new file mode 100644 index 00000000000..0fb8c9f01ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_225.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.225.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_225.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.225.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_226.sub b/test/ntuple_qcd_200_300/batch/condor_226.sub new file mode 100644 index 00000000000..ae19f1b0a12 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_226.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.226.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_226.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.226.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_227.sub b/test/ntuple_qcd_200_300/batch/condor_227.sub new file mode 100644 index 00000000000..333cf9bcd4c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_227.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.227.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_227.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.227.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_228.sub b/test/ntuple_qcd_200_300/batch/condor_228.sub new file mode 100644 index 00000000000..0752839079e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_228.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.228.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_228.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.228.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_229.sub b/test/ntuple_qcd_200_300/batch/condor_229.sub new file mode 100644 index 00000000000..19d73bb5aa2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_229.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.229.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_229.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.229.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_23.sub b/test/ntuple_qcd_200_300/batch/condor_23.sub new file mode 100644 index 00000000000..3bb0729fe8b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_230.sub b/test/ntuple_qcd_200_300/batch/condor_230.sub new file mode 100644 index 00000000000..2958f042a4d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_230.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.230.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_230.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.230.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_231.sub b/test/ntuple_qcd_200_300/batch/condor_231.sub new file mode 100644 index 00000000000..6ad94a66026 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_231.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.231.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_231.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.231.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_232.sub b/test/ntuple_qcd_200_300/batch/condor_232.sub new file mode 100644 index 00000000000..11d00e9ca1d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_232.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.232.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_232.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.232.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_233.sub b/test/ntuple_qcd_200_300/batch/condor_233.sub new file mode 100644 index 00000000000..06d1bbf0045 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_233.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.233.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_233.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.233.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_234.sub b/test/ntuple_qcd_200_300/batch/condor_234.sub new file mode 100644 index 00000000000..2520bdbbe41 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_234.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.234.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_234.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.234.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_235.sub b/test/ntuple_qcd_200_300/batch/condor_235.sub new file mode 100644 index 00000000000..6cca1e1d176 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_235.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.235.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_235.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.235.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_236.sub b/test/ntuple_qcd_200_300/batch/condor_236.sub new file mode 100644 index 00000000000..9c160aa9557 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_236.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.236.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_236.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.236.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_237.sub b/test/ntuple_qcd_200_300/batch/condor_237.sub new file mode 100644 index 00000000000..9ad3a4bb660 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_237.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.237.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_237.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.237.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_238.sub b/test/ntuple_qcd_200_300/batch/condor_238.sub new file mode 100644 index 00000000000..e4ba96eceb7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_238.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.238.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_238.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.238.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_239.sub b/test/ntuple_qcd_200_300/batch/condor_239.sub new file mode 100644 index 00000000000..e409c82bf37 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_239.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.239.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_239.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.239.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_24.sub b/test/ntuple_qcd_200_300/batch/condor_24.sub new file mode 100644 index 00000000000..a9709e68062 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_240.sub b/test/ntuple_qcd_200_300/batch/condor_240.sub new file mode 100644 index 00000000000..98dbe99ac16 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_240.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.240.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_240.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.240.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_241.sub b/test/ntuple_qcd_200_300/batch/condor_241.sub new file mode 100644 index 00000000000..4ac1d38c357 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_241.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.241.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_241.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.241.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_242.sub b/test/ntuple_qcd_200_300/batch/condor_242.sub new file mode 100644 index 00000000000..5c58e1a1255 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_242.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.242.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_242.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.242.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_243.sub b/test/ntuple_qcd_200_300/batch/condor_243.sub new file mode 100644 index 00000000000..aa8164f741c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_243.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.243.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_243.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.243.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_244.sub b/test/ntuple_qcd_200_300/batch/condor_244.sub new file mode 100644 index 00000000000..b0a0d9e6d82 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_244.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.244.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_244.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.244.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_245.sub b/test/ntuple_qcd_200_300/batch/condor_245.sub new file mode 100644 index 00000000000..236e0fd64b8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_245.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.245.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_245.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.245.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_246.sub b/test/ntuple_qcd_200_300/batch/condor_246.sub new file mode 100644 index 00000000000..a8e927c359c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_246.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.246.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_246.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.246.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_247.sub b/test/ntuple_qcd_200_300/batch/condor_247.sub new file mode 100644 index 00000000000..4b592d425ff --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_247.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.247.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_247.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.247.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_248.sub b/test/ntuple_qcd_200_300/batch/condor_248.sub new file mode 100644 index 00000000000..20868f9faa3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_248.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.248.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_248.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.248.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_249.sub b/test/ntuple_qcd_200_300/batch/condor_249.sub new file mode 100644 index 00000000000..ccabfb05bf5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_249.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.249.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_249.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.249.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_25.sub b/test/ntuple_qcd_200_300/batch/condor_25.sub new file mode 100644 index 00000000000..4b971abef2c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_250.sub b/test/ntuple_qcd_200_300/batch/condor_250.sub new file mode 100644 index 00000000000..974ec6892ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_250.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.250.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_250.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.250.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_251.sub b/test/ntuple_qcd_200_300/batch/condor_251.sub new file mode 100644 index 00000000000..d25cbd9d5c0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_251.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.251.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_251.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.251.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_252.sub b/test/ntuple_qcd_200_300/batch/condor_252.sub new file mode 100644 index 00000000000..1c03f619f4c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_252.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.252.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_252.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.252.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_253.sub b/test/ntuple_qcd_200_300/batch/condor_253.sub new file mode 100644 index 00000000000..54501d1c1de --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_253.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.253.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_253.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.253.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_254.sub b/test/ntuple_qcd_200_300/batch/condor_254.sub new file mode 100644 index 00000000000..510ea2fdb3e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_254.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.254.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_254.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.254.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_255.sub b/test/ntuple_qcd_200_300/batch/condor_255.sub new file mode 100644 index 00000000000..cc03499de7d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_255.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.255.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_255.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.255.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_256.sub b/test/ntuple_qcd_200_300/batch/condor_256.sub new file mode 100644 index 00000000000..7abc6474227 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_256.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.256.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_256.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.256.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_257.sub b/test/ntuple_qcd_200_300/batch/condor_257.sub new file mode 100644 index 00000000000..468ed24d5d5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_257.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.257.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_257.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.257.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_258.sub b/test/ntuple_qcd_200_300/batch/condor_258.sub new file mode 100644 index 00000000000..19be9b596b1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_258.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.258.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_258.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.258.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_259.sub b/test/ntuple_qcd_200_300/batch/condor_259.sub new file mode 100644 index 00000000000..b0fc13e12cc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_259.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.259.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_259.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.259.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_26.sub b/test/ntuple_qcd_200_300/batch/condor_26.sub new file mode 100644 index 00000000000..de17df94d5b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_260.sub b/test/ntuple_qcd_200_300/batch/condor_260.sub new file mode 100644 index 00000000000..83b2fe49b61 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_260.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.260.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_260.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.260.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_261.sub b/test/ntuple_qcd_200_300/batch/condor_261.sub new file mode 100644 index 00000000000..b17a9e7c025 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_261.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.261.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_261.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.261.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_262.sub b/test/ntuple_qcd_200_300/batch/condor_262.sub new file mode 100644 index 00000000000..2f65e05a9bf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_262.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.262.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_262.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.262.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_263.sub b/test/ntuple_qcd_200_300/batch/condor_263.sub new file mode 100644 index 00000000000..ecc9da84fa1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_263.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.263.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_263.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.263.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_264.sub b/test/ntuple_qcd_200_300/batch/condor_264.sub new file mode 100644 index 00000000000..006b409dd68 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_264.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.264.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_264.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.264.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_265.sub b/test/ntuple_qcd_200_300/batch/condor_265.sub new file mode 100644 index 00000000000..e054922eeac --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_265.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.265.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_265.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.265.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_266.sub b/test/ntuple_qcd_200_300/batch/condor_266.sub new file mode 100644 index 00000000000..c467e033f3f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_266.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.266.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_266.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.266.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_267.sub b/test/ntuple_qcd_200_300/batch/condor_267.sub new file mode 100644 index 00000000000..f4b74f0987e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_267.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.267.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_267.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.267.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_268.sub b/test/ntuple_qcd_200_300/batch/condor_268.sub new file mode 100644 index 00000000000..4856b4a69b4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_268.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.268.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_268.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.268.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_269.sub b/test/ntuple_qcd_200_300/batch/condor_269.sub new file mode 100644 index 00000000000..508e678fae7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_269.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.269.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_269.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.269.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_27.sub b/test/ntuple_qcd_200_300/batch/condor_27.sub new file mode 100644 index 00000000000..3c4b6a0b056 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_270.sub b/test/ntuple_qcd_200_300/batch/condor_270.sub new file mode 100644 index 00000000000..212393b4613 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_270.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.270.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_270.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.270.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_271.sub b/test/ntuple_qcd_200_300/batch/condor_271.sub new file mode 100644 index 00000000000..670ed60c3b5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_271.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.271.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_271.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.271.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_272.sub b/test/ntuple_qcd_200_300/batch/condor_272.sub new file mode 100644 index 00000000000..4c217e76013 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_272.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.272.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_272.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.272.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_273.sub b/test/ntuple_qcd_200_300/batch/condor_273.sub new file mode 100644 index 00000000000..ed93ecd6fa2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_273.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.273.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_273.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.273.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_274.sub b/test/ntuple_qcd_200_300/batch/condor_274.sub new file mode 100644 index 00000000000..3923a4adacf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_274.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.274.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_274.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.274.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_275.sub b/test/ntuple_qcd_200_300/batch/condor_275.sub new file mode 100644 index 00000000000..fed7dcd55f2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_275.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.275.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_275.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.275.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_276.sub b/test/ntuple_qcd_200_300/batch/condor_276.sub new file mode 100644 index 00000000000..9695427432c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_276.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.276.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_276.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.276.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_277.sub b/test/ntuple_qcd_200_300/batch/condor_277.sub new file mode 100644 index 00000000000..0b84f5fc3be --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_277.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.277.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_277.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.277.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_278.sub b/test/ntuple_qcd_200_300/batch/condor_278.sub new file mode 100644 index 00000000000..bb086892d10 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_278.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.278.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_278.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.278.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_279.sub b/test/ntuple_qcd_200_300/batch/condor_279.sub new file mode 100644 index 00000000000..df2ad543619 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_279.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.279.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_279.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.279.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_28.sub b/test/ntuple_qcd_200_300/batch/condor_28.sub new file mode 100644 index 00000000000..50c70a43b59 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_280.sub b/test/ntuple_qcd_200_300/batch/condor_280.sub new file mode 100644 index 00000000000..75bcd497e61 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_280.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.280.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_280.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.280.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_281.sub b/test/ntuple_qcd_200_300/batch/condor_281.sub new file mode 100644 index 00000000000..10f3975e22f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_281.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.281.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_281.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.281.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_282.sub b/test/ntuple_qcd_200_300/batch/condor_282.sub new file mode 100644 index 00000000000..f7522c46428 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_282.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.282.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_282.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.282.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_283.sub b/test/ntuple_qcd_200_300/batch/condor_283.sub new file mode 100644 index 00000000000..8cf8ae116ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_283.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.283.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_283.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.283.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_284.sub b/test/ntuple_qcd_200_300/batch/condor_284.sub new file mode 100644 index 00000000000..af99febcdf4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_284.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.284.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_284.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.284.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_285.sub b/test/ntuple_qcd_200_300/batch/condor_285.sub new file mode 100644 index 00000000000..ce4c771561e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_285.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.285.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_285.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.285.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_286.sub b/test/ntuple_qcd_200_300/batch/condor_286.sub new file mode 100644 index 00000000000..cc22fe9b120 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_286.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.286.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_286.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.286.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_287.sub b/test/ntuple_qcd_200_300/batch/condor_287.sub new file mode 100644 index 00000000000..c01953b4c70 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_287.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.287.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_287.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.287.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_288.sub b/test/ntuple_qcd_200_300/batch/condor_288.sub new file mode 100644 index 00000000000..1869c73076f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_288.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.288.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_288.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.288.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_289.sub b/test/ntuple_qcd_200_300/batch/condor_289.sub new file mode 100644 index 00000000000..2a7923f8a3c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_289.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.289.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_289.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.289.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_29.sub b/test/ntuple_qcd_200_300/batch/condor_29.sub new file mode 100644 index 00000000000..7a2aea3b168 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_290.sub b/test/ntuple_qcd_200_300/batch/condor_290.sub new file mode 100644 index 00000000000..6fea49aface --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_290.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.290.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_290.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.290.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_291.sub b/test/ntuple_qcd_200_300/batch/condor_291.sub new file mode 100644 index 00000000000..54dad865d16 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_291.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.291.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_291.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.291.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_292.sub b/test/ntuple_qcd_200_300/batch/condor_292.sub new file mode 100644 index 00000000000..0ca96efdd5a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_292.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.292.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_292.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.292.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_293.sub b/test/ntuple_qcd_200_300/batch/condor_293.sub new file mode 100644 index 00000000000..cd1d742e7df --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_293.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.293.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_293.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.293.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_294.sub b/test/ntuple_qcd_200_300/batch/condor_294.sub new file mode 100644 index 00000000000..8d183698180 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_294.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.294.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_294.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.294.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_295.sub b/test/ntuple_qcd_200_300/batch/condor_295.sub new file mode 100644 index 00000000000..850dfe43b27 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_295.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.295.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_295.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.295.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_296.sub b/test/ntuple_qcd_200_300/batch/condor_296.sub new file mode 100644 index 00000000000..f2702a26483 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_296.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.296.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_296.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.296.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_297.sub b/test/ntuple_qcd_200_300/batch/condor_297.sub new file mode 100644 index 00000000000..548087e1f3c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_297.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.297.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_297.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.297.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_298.sub b/test/ntuple_qcd_200_300/batch/condor_298.sub new file mode 100644 index 00000000000..7bc39aee749 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_298.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.298.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_298.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.298.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_299.sub b/test/ntuple_qcd_200_300/batch/condor_299.sub new file mode 100644 index 00000000000..0c9d450bf12 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_299.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.299.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_299.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.299.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_3.sub b/test/ntuple_qcd_200_300/batch/condor_3.sub new file mode 100644 index 00000000000..588c0b80e51 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_30.sub b/test/ntuple_qcd_200_300/batch/condor_30.sub new file mode 100644 index 00000000000..e348a2febf3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_300.sub b/test/ntuple_qcd_200_300/batch/condor_300.sub new file mode 100644 index 00000000000..6c2df34325a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_300.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.300.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_300.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.300.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_301.sub b/test/ntuple_qcd_200_300/batch/condor_301.sub new file mode 100644 index 00000000000..c109ea4cb7b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_301.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.301.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_301.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.301.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_302.sub b/test/ntuple_qcd_200_300/batch/condor_302.sub new file mode 100644 index 00000000000..f232cd5ba2a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_302.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.302.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_302.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.302.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_303.sub b/test/ntuple_qcd_200_300/batch/condor_303.sub new file mode 100644 index 00000000000..a8eaa94e4a0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_303.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.303.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_303.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.303.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_304.sub b/test/ntuple_qcd_200_300/batch/condor_304.sub new file mode 100644 index 00000000000..87287fa32ad --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_304.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.304.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_304.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.304.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_305.sub b/test/ntuple_qcd_200_300/batch/condor_305.sub new file mode 100644 index 00000000000..8c1964d9866 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_305.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.305.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_305.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.305.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_306.sub b/test/ntuple_qcd_200_300/batch/condor_306.sub new file mode 100644 index 00000000000..70a85ba0207 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_306.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.306.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_306.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.306.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_307.sub b/test/ntuple_qcd_200_300/batch/condor_307.sub new file mode 100644 index 00000000000..94ec3bb6081 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_307.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.307.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_307.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.307.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_308.sub b/test/ntuple_qcd_200_300/batch/condor_308.sub new file mode 100644 index 00000000000..42174830a4e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_308.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.308.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_308.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.308.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_309.sub b/test/ntuple_qcd_200_300/batch/condor_309.sub new file mode 100644 index 00000000000..3be3f7f24bf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_309.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.309.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_309.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.309.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_31.sub b/test/ntuple_qcd_200_300/batch/condor_31.sub new file mode 100644 index 00000000000..b4ca95c275d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_310.sub b/test/ntuple_qcd_200_300/batch/condor_310.sub new file mode 100644 index 00000000000..a33964dd5a8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_310.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.310.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_310.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.310.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_311.sub b/test/ntuple_qcd_200_300/batch/condor_311.sub new file mode 100644 index 00000000000..f2ba841391b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_311.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.311.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_311.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.311.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_312.sub b/test/ntuple_qcd_200_300/batch/condor_312.sub new file mode 100644 index 00000000000..09c88b886e6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_312.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.312.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_312.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.312.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_313.sub b/test/ntuple_qcd_200_300/batch/condor_313.sub new file mode 100644 index 00000000000..dd173881dc6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_313.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.313.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_313.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.313.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_314.sub b/test/ntuple_qcd_200_300/batch/condor_314.sub new file mode 100644 index 00000000000..3fd2ca244d8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_314.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.314.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_314.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.314.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_315.sub b/test/ntuple_qcd_200_300/batch/condor_315.sub new file mode 100644 index 00000000000..010de1115f3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_315.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.315.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_315.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.315.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_316.sub b/test/ntuple_qcd_200_300/batch/condor_316.sub new file mode 100644 index 00000000000..34bba96bce9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_316.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.316.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_316.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.316.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_317.sub b/test/ntuple_qcd_200_300/batch/condor_317.sub new file mode 100644 index 00000000000..bb724119d36 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_317.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.317.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_317.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.317.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_318.sub b/test/ntuple_qcd_200_300/batch/condor_318.sub new file mode 100644 index 00000000000..245abca9e34 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_318.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.318.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_318.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.318.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_319.sub b/test/ntuple_qcd_200_300/batch/condor_319.sub new file mode 100644 index 00000000000..42a68d09a90 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_319.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.319.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_319.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.319.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_32.sub b/test/ntuple_qcd_200_300/batch/condor_32.sub new file mode 100644 index 00000000000..98b0a12ef04 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_320.sub b/test/ntuple_qcd_200_300/batch/condor_320.sub new file mode 100644 index 00000000000..e3cab9c5d1c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_320.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.320.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_320.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.320.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_321.sub b/test/ntuple_qcd_200_300/batch/condor_321.sub new file mode 100644 index 00000000000..9534fb3afd5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_321.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.321.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_321.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.321.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_322.sub b/test/ntuple_qcd_200_300/batch/condor_322.sub new file mode 100644 index 00000000000..9eec480a6c0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_322.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.322.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_322.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.322.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_323.sub b/test/ntuple_qcd_200_300/batch/condor_323.sub new file mode 100644 index 00000000000..c0fd0ab6da9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_323.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.323.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_323.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.323.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_324.sub b/test/ntuple_qcd_200_300/batch/condor_324.sub new file mode 100644 index 00000000000..047728696c8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_324.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.324.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_324.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.324.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_325.sub b/test/ntuple_qcd_200_300/batch/condor_325.sub new file mode 100644 index 00000000000..93a48f16abf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_325.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.325.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_325.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.325.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_326.sub b/test/ntuple_qcd_200_300/batch/condor_326.sub new file mode 100644 index 00000000000..6fbad7c28cc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_326.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.326.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_326.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.326.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_327.sub b/test/ntuple_qcd_200_300/batch/condor_327.sub new file mode 100644 index 00000000000..20e5a41ad71 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_327.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.327.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_327.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.327.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_328.sub b/test/ntuple_qcd_200_300/batch/condor_328.sub new file mode 100644 index 00000000000..5b30159bf62 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_328.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.328.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_328.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.328.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_329.sub b/test/ntuple_qcd_200_300/batch/condor_329.sub new file mode 100644 index 00000000000..b6a26de5f23 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_329.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.329.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_329.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.329.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_33.sub b/test/ntuple_qcd_200_300/batch/condor_33.sub new file mode 100644 index 00000000000..5bdb7ed1d24 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_330.sub b/test/ntuple_qcd_200_300/batch/condor_330.sub new file mode 100644 index 00000000000..94db89bc822 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_330.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.330.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_330.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.330.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_331.sub b/test/ntuple_qcd_200_300/batch/condor_331.sub new file mode 100644 index 00000000000..4f80f7a9c59 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_331.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.331.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_331.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.331.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_332.sub b/test/ntuple_qcd_200_300/batch/condor_332.sub new file mode 100644 index 00000000000..21d24405b72 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_332.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.332.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_332.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.332.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_333.sub b/test/ntuple_qcd_200_300/batch/condor_333.sub new file mode 100644 index 00000000000..4e32906965f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_333.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.333.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_333.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.333.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_334.sub b/test/ntuple_qcd_200_300/batch/condor_334.sub new file mode 100644 index 00000000000..022cf66ed31 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_334.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.334.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_334.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.334.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_335.sub b/test/ntuple_qcd_200_300/batch/condor_335.sub new file mode 100644 index 00000000000..c9a8556dfd9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_335.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.335.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_335.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.335.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_336.sub b/test/ntuple_qcd_200_300/batch/condor_336.sub new file mode 100644 index 00000000000..702d57ea04e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_336.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.336.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_336.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.336.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_337.sub b/test/ntuple_qcd_200_300/batch/condor_337.sub new file mode 100644 index 00000000000..da9a168104d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_337.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.337.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_337.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.337.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_338.sub b/test/ntuple_qcd_200_300/batch/condor_338.sub new file mode 100644 index 00000000000..c9ccc701cbc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_338.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.338.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_338.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.338.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_339.sub b/test/ntuple_qcd_200_300/batch/condor_339.sub new file mode 100644 index 00000000000..123d0f6d178 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_339.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.339.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_339.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.339.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_34.sub b/test/ntuple_qcd_200_300/batch/condor_34.sub new file mode 100644 index 00000000000..2466ec3193a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_340.sub b/test/ntuple_qcd_200_300/batch/condor_340.sub new file mode 100644 index 00000000000..0a29d8c4a2c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_340.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.340.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_340.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.340.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_341.sub b/test/ntuple_qcd_200_300/batch/condor_341.sub new file mode 100644 index 00000000000..d798846d185 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_341.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.341.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_341.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.341.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_342.sub b/test/ntuple_qcd_200_300/batch/condor_342.sub new file mode 100644 index 00000000000..261aad2f329 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_342.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.342.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_342.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.342.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_343.sub b/test/ntuple_qcd_200_300/batch/condor_343.sub new file mode 100644 index 00000000000..b3170e41b62 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_343.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.343.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_343.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.343.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_344.sub b/test/ntuple_qcd_200_300/batch/condor_344.sub new file mode 100644 index 00000000000..97842e9146a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_344.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.344.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_344.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.344.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_345.sub b/test/ntuple_qcd_200_300/batch/condor_345.sub new file mode 100644 index 00000000000..baff86369eb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_345.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.345.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_345.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.345.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_346.sub b/test/ntuple_qcd_200_300/batch/condor_346.sub new file mode 100644 index 00000000000..f0268480dbf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_346.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.346.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_346.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.346.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_347.sub b/test/ntuple_qcd_200_300/batch/condor_347.sub new file mode 100644 index 00000000000..03658728709 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_347.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.347.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_347.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.347.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_348.sub b/test/ntuple_qcd_200_300/batch/condor_348.sub new file mode 100644 index 00000000000..7a98beb0a44 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_348.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.348.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_348.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.348.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_349.sub b/test/ntuple_qcd_200_300/batch/condor_349.sub new file mode 100644 index 00000000000..8cc806833ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_349.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.349.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_349.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.349.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_35.sub b/test/ntuple_qcd_200_300/batch/condor_35.sub new file mode 100644 index 00000000000..727e4769300 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_350.sub b/test/ntuple_qcd_200_300/batch/condor_350.sub new file mode 100644 index 00000000000..522107990b8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_350.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.350.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_350.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.350.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_351.sub b/test/ntuple_qcd_200_300/batch/condor_351.sub new file mode 100644 index 00000000000..8c8ea7d5c73 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_351.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.351.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_351.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.351.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_352.sub b/test/ntuple_qcd_200_300/batch/condor_352.sub new file mode 100644 index 00000000000..fcf29c6d265 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_352.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.352.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_352.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.352.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_353.sub b/test/ntuple_qcd_200_300/batch/condor_353.sub new file mode 100644 index 00000000000..c0b12382bf4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_353.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.353.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_353.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.353.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_354.sub b/test/ntuple_qcd_200_300/batch/condor_354.sub new file mode 100644 index 00000000000..501dcd90509 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_354.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.354.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_354.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.354.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_355.sub b/test/ntuple_qcd_200_300/batch/condor_355.sub new file mode 100644 index 00000000000..d78a668e0b7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_355.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.355.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_355.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.355.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_356.sub b/test/ntuple_qcd_200_300/batch/condor_356.sub new file mode 100644 index 00000000000..1f6624e1a04 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_356.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.356.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_356.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.356.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_357.sub b/test/ntuple_qcd_200_300/batch/condor_357.sub new file mode 100644 index 00000000000..6c7cbdf6d59 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_357.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.357.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_357.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.357.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_358.sub b/test/ntuple_qcd_200_300/batch/condor_358.sub new file mode 100644 index 00000000000..429a21b3310 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_358.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.358.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_358.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.358.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_359.sub b/test/ntuple_qcd_200_300/batch/condor_359.sub new file mode 100644 index 00000000000..36033b1202c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_359.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.359.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_359.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.359.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_36.sub b/test/ntuple_qcd_200_300/batch/condor_36.sub new file mode 100644 index 00000000000..ae65c08bad5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_360.sub b/test/ntuple_qcd_200_300/batch/condor_360.sub new file mode 100644 index 00000000000..3d4d0f0be41 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_360.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.360.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_360.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.360.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_361.sub b/test/ntuple_qcd_200_300/batch/condor_361.sub new file mode 100644 index 00000000000..57a71f4ea2e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_361.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.361.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_361.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.361.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_362.sub b/test/ntuple_qcd_200_300/batch/condor_362.sub new file mode 100644 index 00000000000..126d39cccb5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_362.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.362.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_362.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.362.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_363.sub b/test/ntuple_qcd_200_300/batch/condor_363.sub new file mode 100644 index 00000000000..828e17c4992 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_363.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.363.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_363.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.363.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_364.sub b/test/ntuple_qcd_200_300/batch/condor_364.sub new file mode 100644 index 00000000000..a10a8b1462c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_364.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.364.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_364.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.364.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_365.sub b/test/ntuple_qcd_200_300/batch/condor_365.sub new file mode 100644 index 00000000000..cb94e28729f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_365.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.365.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_365.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.365.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_366.sub b/test/ntuple_qcd_200_300/batch/condor_366.sub new file mode 100644 index 00000000000..7840b191f5b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_366.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.366.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_366.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.366.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_367.sub b/test/ntuple_qcd_200_300/batch/condor_367.sub new file mode 100644 index 00000000000..f5828ed715f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_367.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.367.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_367.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.367.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_368.sub b/test/ntuple_qcd_200_300/batch/condor_368.sub new file mode 100644 index 00000000000..f06e0fd3eec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_368.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.368.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_368.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.368.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_369.sub b/test/ntuple_qcd_200_300/batch/condor_369.sub new file mode 100644 index 00000000000..29b874832d8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_369.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.369.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_369.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.369.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_37.sub b/test/ntuple_qcd_200_300/batch/condor_37.sub new file mode 100644 index 00000000000..6e90f72f9b9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_370.sub b/test/ntuple_qcd_200_300/batch/condor_370.sub new file mode 100644 index 00000000000..99384e6181a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_370.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.370.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_370.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.370.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_371.sub b/test/ntuple_qcd_200_300/batch/condor_371.sub new file mode 100644 index 00000000000..3c8aea6f8f3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_371.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.371.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_371.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.371.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_372.sub b/test/ntuple_qcd_200_300/batch/condor_372.sub new file mode 100644 index 00000000000..439d55ce684 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_372.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.372.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_372.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.372.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_373.sub b/test/ntuple_qcd_200_300/batch/condor_373.sub new file mode 100644 index 00000000000..7f87fa2e9bd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_373.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.373.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_373.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.373.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_374.sub b/test/ntuple_qcd_200_300/batch/condor_374.sub new file mode 100644 index 00000000000..6c98ce1c4b6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_374.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.374.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_374.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.374.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_375.sub b/test/ntuple_qcd_200_300/batch/condor_375.sub new file mode 100644 index 00000000000..8a3fab11918 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_375.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.375.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_375.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.375.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_376.sub b/test/ntuple_qcd_200_300/batch/condor_376.sub new file mode 100644 index 00000000000..ad4e5ddecea --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_376.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.376.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_376.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.376.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_377.sub b/test/ntuple_qcd_200_300/batch/condor_377.sub new file mode 100644 index 00000000000..81f8c16c383 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_377.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.377.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_377.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.377.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_378.sub b/test/ntuple_qcd_200_300/batch/condor_378.sub new file mode 100644 index 00000000000..11724f1ba0a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_378.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.378.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_378.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.378.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_379.sub b/test/ntuple_qcd_200_300/batch/condor_379.sub new file mode 100644 index 00000000000..6c8baf74b0b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_379.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.379.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_379.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.379.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_38.sub b/test/ntuple_qcd_200_300/batch/condor_38.sub new file mode 100644 index 00000000000..07c265f72a2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_380.sub b/test/ntuple_qcd_200_300/batch/condor_380.sub new file mode 100644 index 00000000000..f4222e63b03 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_380.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.380.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_380.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.380.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_381.sub b/test/ntuple_qcd_200_300/batch/condor_381.sub new file mode 100644 index 00000000000..4966eab0e84 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_381.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.381.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_381.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.381.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_382.sub b/test/ntuple_qcd_200_300/batch/condor_382.sub new file mode 100644 index 00000000000..b074277e140 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_382.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.382.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_382.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.382.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_383.sub b/test/ntuple_qcd_200_300/batch/condor_383.sub new file mode 100644 index 00000000000..693206dc60f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_383.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.383.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_383.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.383.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_384.sub b/test/ntuple_qcd_200_300/batch/condor_384.sub new file mode 100644 index 00000000000..b43e54afec5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_384.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.384.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_384.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.384.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_385.sub b/test/ntuple_qcd_200_300/batch/condor_385.sub new file mode 100644 index 00000000000..0cb295aced8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_385.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.385.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_385.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.385.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_386.sub b/test/ntuple_qcd_200_300/batch/condor_386.sub new file mode 100644 index 00000000000..25bbc090060 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_386.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.386.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_386.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.386.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_387.sub b/test/ntuple_qcd_200_300/batch/condor_387.sub new file mode 100644 index 00000000000..94df23b19b0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_387.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.387.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_387.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.387.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_388.sub b/test/ntuple_qcd_200_300/batch/condor_388.sub new file mode 100644 index 00000000000..d65fec41348 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_388.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.388.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_388.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.388.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_389.sub b/test/ntuple_qcd_200_300/batch/condor_389.sub new file mode 100644 index 00000000000..1f80f8aa24c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_389.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.389.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_389.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.389.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_39.sub b/test/ntuple_qcd_200_300/batch/condor_39.sub new file mode 100644 index 00000000000..d7d07c658c1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_390.sub b/test/ntuple_qcd_200_300/batch/condor_390.sub new file mode 100644 index 00000000000..139acaf5a46 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_390.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.390.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_390.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.390.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_391.sub b/test/ntuple_qcd_200_300/batch/condor_391.sub new file mode 100644 index 00000000000..19703db08bd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_391.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.391.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_391.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.391.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_392.sub b/test/ntuple_qcd_200_300/batch/condor_392.sub new file mode 100644 index 00000000000..bb711a3d228 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_392.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.392.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_392.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.392.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_393.sub b/test/ntuple_qcd_200_300/batch/condor_393.sub new file mode 100644 index 00000000000..2a10b04e60c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_393.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.393.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_393.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.393.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_394.sub b/test/ntuple_qcd_200_300/batch/condor_394.sub new file mode 100644 index 00000000000..24654b644c9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_394.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.394.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_394.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.394.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_395.sub b/test/ntuple_qcd_200_300/batch/condor_395.sub new file mode 100644 index 00000000000..1d910406a02 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_395.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.395.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_395.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.395.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_396.sub b/test/ntuple_qcd_200_300/batch/condor_396.sub new file mode 100644 index 00000000000..838725d7d97 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_396.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.396.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_396.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.396.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_397.sub b/test/ntuple_qcd_200_300/batch/condor_397.sub new file mode 100644 index 00000000000..1ede5d46b83 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_397.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.397.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_397.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.397.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_398.sub b/test/ntuple_qcd_200_300/batch/condor_398.sub new file mode 100644 index 00000000000..b372926bcb7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_398.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.398.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_398.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.398.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_399.sub b/test/ntuple_qcd_200_300/batch/condor_399.sub new file mode 100644 index 00000000000..066c9661a36 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_399.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.399.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_399.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.399.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_4.sub b/test/ntuple_qcd_200_300/batch/condor_4.sub new file mode 100644 index 00000000000..c8d78323988 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_40.sub b/test/ntuple_qcd_200_300/batch/condor_40.sub new file mode 100644 index 00000000000..f61563bba68 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_400.sub b/test/ntuple_qcd_200_300/batch/condor_400.sub new file mode 100644 index 00000000000..b655f0ddb73 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_400.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.400.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_400.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.400.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_401.sub b/test/ntuple_qcd_200_300/batch/condor_401.sub new file mode 100644 index 00000000000..663bd468b72 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_401.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.401.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_401.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.401.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_402.sub b/test/ntuple_qcd_200_300/batch/condor_402.sub new file mode 100644 index 00000000000..dcfe3d2b07f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_402.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.402.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_402.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.402.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_403.sub b/test/ntuple_qcd_200_300/batch/condor_403.sub new file mode 100644 index 00000000000..e19abd57099 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_403.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.403.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_403.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.403.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_404.sub b/test/ntuple_qcd_200_300/batch/condor_404.sub new file mode 100644 index 00000000000..bd3f1e490c2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_404.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.404.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_404.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.404.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_405.sub b/test/ntuple_qcd_200_300/batch/condor_405.sub new file mode 100644 index 00000000000..f43db1612ed --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_405.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.405.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_405.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.405.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_406.sub b/test/ntuple_qcd_200_300/batch/condor_406.sub new file mode 100644 index 00000000000..39c93e14362 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_406.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.406.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_406.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.406.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_407.sub b/test/ntuple_qcd_200_300/batch/condor_407.sub new file mode 100644 index 00000000000..e7478d2370f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_407.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.407.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_407.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.407.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_408.sub b/test/ntuple_qcd_200_300/batch/condor_408.sub new file mode 100644 index 00000000000..081fa807939 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_408.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.408.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_408.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.408.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_409.sub b/test/ntuple_qcd_200_300/batch/condor_409.sub new file mode 100644 index 00000000000..26f61887a45 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_409.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.409.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_409.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.409.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_41.sub b/test/ntuple_qcd_200_300/batch/condor_41.sub new file mode 100644 index 00000000000..5ef4d0e25d7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_410.sub b/test/ntuple_qcd_200_300/batch/condor_410.sub new file mode 100644 index 00000000000..aac427b82bf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_410.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.410.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_410.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.410.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_411.sub b/test/ntuple_qcd_200_300/batch/condor_411.sub new file mode 100644 index 00000000000..5163535dbe6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_411.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.411.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_411.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.411.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_412.sub b/test/ntuple_qcd_200_300/batch/condor_412.sub new file mode 100644 index 00000000000..37d5a61e1a0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_412.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.412.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_412.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.412.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_413.sub b/test/ntuple_qcd_200_300/batch/condor_413.sub new file mode 100644 index 00000000000..a80a387938e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_413.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.413.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_413.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.413.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_414.sub b/test/ntuple_qcd_200_300/batch/condor_414.sub new file mode 100644 index 00000000000..0d1a873d5f1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_414.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.414.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_414.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.414.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_415.sub b/test/ntuple_qcd_200_300/batch/condor_415.sub new file mode 100644 index 00000000000..543098cb858 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_415.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.415.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_415.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.415.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_416.sub b/test/ntuple_qcd_200_300/batch/condor_416.sub new file mode 100644 index 00000000000..2221082dc90 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_416.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.416.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_416.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.416.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_417.sub b/test/ntuple_qcd_200_300/batch/condor_417.sub new file mode 100644 index 00000000000..1d3ccf21240 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_417.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.417.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_417.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.417.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_418.sub b/test/ntuple_qcd_200_300/batch/condor_418.sub new file mode 100644 index 00000000000..e476d0801ae --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_418.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.418.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_418.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.418.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_419.sub b/test/ntuple_qcd_200_300/batch/condor_419.sub new file mode 100644 index 00000000000..03743d8c287 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_419.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.419.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_419.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.419.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_42.sub b/test/ntuple_qcd_200_300/batch/condor_42.sub new file mode 100644 index 00000000000..610bddce704 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_420.sub b/test/ntuple_qcd_200_300/batch/condor_420.sub new file mode 100644 index 00000000000..920a75d02ee --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_420.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.420.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_420.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.420.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_421.sub b/test/ntuple_qcd_200_300/batch/condor_421.sub new file mode 100644 index 00000000000..c38f43347e7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_421.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.421.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_421.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.421.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_422.sub b/test/ntuple_qcd_200_300/batch/condor_422.sub new file mode 100644 index 00000000000..0b6cdb74a3b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_422.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.422.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_422.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.422.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_423.sub b/test/ntuple_qcd_200_300/batch/condor_423.sub new file mode 100644 index 00000000000..fe252725dce --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_423.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.423.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_423.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.423.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_424.sub b/test/ntuple_qcd_200_300/batch/condor_424.sub new file mode 100644 index 00000000000..2017577e5bd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_424.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.424.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_424.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.424.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_425.sub b/test/ntuple_qcd_200_300/batch/condor_425.sub new file mode 100644 index 00000000000..3f2f152b5aa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_425.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.425.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_425.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.425.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_426.sub b/test/ntuple_qcd_200_300/batch/condor_426.sub new file mode 100644 index 00000000000..0416e67e3b9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_426.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.426.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_426.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.426.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_427.sub b/test/ntuple_qcd_200_300/batch/condor_427.sub new file mode 100644 index 00000000000..7f11af16662 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_427.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.427.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_427.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.427.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_428.sub b/test/ntuple_qcd_200_300/batch/condor_428.sub new file mode 100644 index 00000000000..6a6a1125615 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_428.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.428.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_428.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.428.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_429.sub b/test/ntuple_qcd_200_300/batch/condor_429.sub new file mode 100644 index 00000000000..0774cd07aee --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_429.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.429.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_429.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.429.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_43.sub b/test/ntuple_qcd_200_300/batch/condor_43.sub new file mode 100644 index 00000000000..f5382ee8621 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_430.sub b/test/ntuple_qcd_200_300/batch/condor_430.sub new file mode 100644 index 00000000000..958ffaf39c9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_430.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.430.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_430.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.430.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_431.sub b/test/ntuple_qcd_200_300/batch/condor_431.sub new file mode 100644 index 00000000000..2c2049fa466 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_431.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.431.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_431.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.431.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_432.sub b/test/ntuple_qcd_200_300/batch/condor_432.sub new file mode 100644 index 00000000000..ffb8a3cfd9f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_432.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.432.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_432.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.432.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_433.sub b/test/ntuple_qcd_200_300/batch/condor_433.sub new file mode 100644 index 00000000000..30113f5cc68 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_433.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.433.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_433.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.433.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_434.sub b/test/ntuple_qcd_200_300/batch/condor_434.sub new file mode 100644 index 00000000000..64528c7a115 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_434.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.434.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_434.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.434.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_435.sub b/test/ntuple_qcd_200_300/batch/condor_435.sub new file mode 100644 index 00000000000..185a7ccaf4e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_435.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.435.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_435.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.435.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_436.sub b/test/ntuple_qcd_200_300/batch/condor_436.sub new file mode 100644 index 00000000000..3fdc8685430 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_436.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.436.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_436.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.436.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_437.sub b/test/ntuple_qcd_200_300/batch/condor_437.sub new file mode 100644 index 00000000000..0f14c36ca11 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_437.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.437.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_437.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.437.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_438.sub b/test/ntuple_qcd_200_300/batch/condor_438.sub new file mode 100644 index 00000000000..d59463fb479 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_438.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.438.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_438.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.438.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_439.sub b/test/ntuple_qcd_200_300/batch/condor_439.sub new file mode 100644 index 00000000000..f305eabe234 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_439.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.439.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_439.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.439.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_44.sub b/test/ntuple_qcd_200_300/batch/condor_44.sub new file mode 100644 index 00000000000..8ae3448e719 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_440.sub b/test/ntuple_qcd_200_300/batch/condor_440.sub new file mode 100644 index 00000000000..46b1af71fd5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_440.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.440.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_440.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.440.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_441.sub b/test/ntuple_qcd_200_300/batch/condor_441.sub new file mode 100644 index 00000000000..24d52c98147 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_441.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.441.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_441.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.441.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_442.sub b/test/ntuple_qcd_200_300/batch/condor_442.sub new file mode 100644 index 00000000000..ceeb1162a30 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_442.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.442.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_442.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.442.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_443.sub b/test/ntuple_qcd_200_300/batch/condor_443.sub new file mode 100644 index 00000000000..42a013b683c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_443.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.443.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_443.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.443.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_444.sub b/test/ntuple_qcd_200_300/batch/condor_444.sub new file mode 100644 index 00000000000..13c15e6f0dc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_444.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.444.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_444.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.444.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_445.sub b/test/ntuple_qcd_200_300/batch/condor_445.sub new file mode 100644 index 00000000000..98c66d30ed2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_445.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.445.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_445.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.445.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_446.sub b/test/ntuple_qcd_200_300/batch/condor_446.sub new file mode 100644 index 00000000000..675b1295c30 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_446.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.446.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_446.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.446.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_447.sub b/test/ntuple_qcd_200_300/batch/condor_447.sub new file mode 100644 index 00000000000..9a8dda648a2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_447.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.447.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_447.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.447.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_448.sub b/test/ntuple_qcd_200_300/batch/condor_448.sub new file mode 100644 index 00000000000..4f9eb0b8135 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_448.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.448.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_448.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.448.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_449.sub b/test/ntuple_qcd_200_300/batch/condor_449.sub new file mode 100644 index 00000000000..e52c83817f7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_449.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.449.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_449.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.449.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_45.sub b/test/ntuple_qcd_200_300/batch/condor_45.sub new file mode 100644 index 00000000000..24878933c64 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_450.sub b/test/ntuple_qcd_200_300/batch/condor_450.sub new file mode 100644 index 00000000000..f8ce346f406 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_450.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.450.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_450.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.450.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_451.sub b/test/ntuple_qcd_200_300/batch/condor_451.sub new file mode 100644 index 00000000000..edf64913dfa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_451.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.451.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_451.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.451.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_452.sub b/test/ntuple_qcd_200_300/batch/condor_452.sub new file mode 100644 index 00000000000..ffaa0fee8a6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_452.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.452.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_452.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.452.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_453.sub b/test/ntuple_qcd_200_300/batch/condor_453.sub new file mode 100644 index 00000000000..df81ffebf55 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_453.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.453.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_453.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.453.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_454.sub b/test/ntuple_qcd_200_300/batch/condor_454.sub new file mode 100644 index 00000000000..c4d7fb93510 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_454.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.454.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_454.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.454.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_455.sub b/test/ntuple_qcd_200_300/batch/condor_455.sub new file mode 100644 index 00000000000..3f036da0345 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_455.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.455.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_455.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.455.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_456.sub b/test/ntuple_qcd_200_300/batch/condor_456.sub new file mode 100644 index 00000000000..26a8f70d79f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_456.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.456.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_456.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.456.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_457.sub b/test/ntuple_qcd_200_300/batch/condor_457.sub new file mode 100644 index 00000000000..1e99f215ef5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_457.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.457.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_457.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.457.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_458.sub b/test/ntuple_qcd_200_300/batch/condor_458.sub new file mode 100644 index 00000000000..5ce84a94396 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_458.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.458.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_458.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.458.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_459.sub b/test/ntuple_qcd_200_300/batch/condor_459.sub new file mode 100644 index 00000000000..acfa9e20086 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_459.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.459.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_459.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.459.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_46.sub b/test/ntuple_qcd_200_300/batch/condor_46.sub new file mode 100644 index 00000000000..102ccf4a694 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_460.sub b/test/ntuple_qcd_200_300/batch/condor_460.sub new file mode 100644 index 00000000000..87ea187c081 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_460.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.460.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_460.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.460.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_461.sub b/test/ntuple_qcd_200_300/batch/condor_461.sub new file mode 100644 index 00000000000..c6668510a46 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_461.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.461.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_461.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.461.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_462.sub b/test/ntuple_qcd_200_300/batch/condor_462.sub new file mode 100644 index 00000000000..e19b3bede18 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_462.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.462.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_462.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.462.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_463.sub b/test/ntuple_qcd_200_300/batch/condor_463.sub new file mode 100644 index 00000000000..2b1f8a9a3d7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_463.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.463.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_463.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.463.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_464.sub b/test/ntuple_qcd_200_300/batch/condor_464.sub new file mode 100644 index 00000000000..d783afad840 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_464.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.464.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_464.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.464.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_465.sub b/test/ntuple_qcd_200_300/batch/condor_465.sub new file mode 100644 index 00000000000..5cffccbc9db --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_465.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.465.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_465.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.465.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_466.sub b/test/ntuple_qcd_200_300/batch/condor_466.sub new file mode 100644 index 00000000000..17eaa0c528f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_466.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.466.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_466.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.466.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_467.sub b/test/ntuple_qcd_200_300/batch/condor_467.sub new file mode 100644 index 00000000000..22f30afff96 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_467.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.467.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_467.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.467.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_468.sub b/test/ntuple_qcd_200_300/batch/condor_468.sub new file mode 100644 index 00000000000..361209f1dc2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_468.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.468.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_468.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.468.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_469.sub b/test/ntuple_qcd_200_300/batch/condor_469.sub new file mode 100644 index 00000000000..db1235c72ce --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_469.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.469.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_469.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.469.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_47.sub b/test/ntuple_qcd_200_300/batch/condor_47.sub new file mode 100644 index 00000000000..7bbce0b19bf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_470.sub b/test/ntuple_qcd_200_300/batch/condor_470.sub new file mode 100644 index 00000000000..faf9743ec74 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_470.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.470.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_470.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.470.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_471.sub b/test/ntuple_qcd_200_300/batch/condor_471.sub new file mode 100644 index 00000000000..342d79cd229 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_471.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.471.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_471.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.471.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_472.sub b/test/ntuple_qcd_200_300/batch/condor_472.sub new file mode 100644 index 00000000000..c4b6ad0d1f9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_472.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.472.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_472.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.472.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_473.sub b/test/ntuple_qcd_200_300/batch/condor_473.sub new file mode 100644 index 00000000000..16151cfc2df --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_473.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.473.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_473.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.473.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_474.sub b/test/ntuple_qcd_200_300/batch/condor_474.sub new file mode 100644 index 00000000000..97b25786cac --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_474.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.474.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_474.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.474.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_475.sub b/test/ntuple_qcd_200_300/batch/condor_475.sub new file mode 100644 index 00000000000..68540aa38f2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_475.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.475.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_475.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.475.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_476.sub b/test/ntuple_qcd_200_300/batch/condor_476.sub new file mode 100644 index 00000000000..19067d9a705 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_476.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.476.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_476.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.476.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_477.sub b/test/ntuple_qcd_200_300/batch/condor_477.sub new file mode 100644 index 00000000000..9db9c269659 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_477.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.477.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_477.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.477.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_478.sub b/test/ntuple_qcd_200_300/batch/condor_478.sub new file mode 100644 index 00000000000..c9a8b5f745b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_478.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.478.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_478.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.478.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_479.sub b/test/ntuple_qcd_200_300/batch/condor_479.sub new file mode 100644 index 00000000000..b88f54fd7cf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_479.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.479.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_479.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.479.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_48.sub b/test/ntuple_qcd_200_300/batch/condor_48.sub new file mode 100644 index 00000000000..c6f208c9780 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_480.sub b/test/ntuple_qcd_200_300/batch/condor_480.sub new file mode 100644 index 00000000000..afb05f8d912 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_480.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.480.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_480.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.480.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_481.sub b/test/ntuple_qcd_200_300/batch/condor_481.sub new file mode 100644 index 00000000000..32c31424467 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_481.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.481.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_481.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.481.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_482.sub b/test/ntuple_qcd_200_300/batch/condor_482.sub new file mode 100644 index 00000000000..269bd3a027f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_482.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.482.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_482.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.482.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_483.sub b/test/ntuple_qcd_200_300/batch/condor_483.sub new file mode 100644 index 00000000000..0f726a9cafd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_483.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.483.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_483.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.483.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_484.sub b/test/ntuple_qcd_200_300/batch/condor_484.sub new file mode 100644 index 00000000000..aa5e3bc08f6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_484.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.484.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_484.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.484.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_485.sub b/test/ntuple_qcd_200_300/batch/condor_485.sub new file mode 100644 index 00000000000..f9a9090143a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_485.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.485.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_485.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.485.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_486.sub b/test/ntuple_qcd_200_300/batch/condor_486.sub new file mode 100644 index 00000000000..195ce11ff5c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_486.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.486.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_486.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.486.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_487.sub b/test/ntuple_qcd_200_300/batch/condor_487.sub new file mode 100644 index 00000000000..41fcb2ad527 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_487.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.487.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_487.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.487.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_488.sub b/test/ntuple_qcd_200_300/batch/condor_488.sub new file mode 100644 index 00000000000..2f72f3a48f6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_488.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.488.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_488.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.488.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_489.sub b/test/ntuple_qcd_200_300/batch/condor_489.sub new file mode 100644 index 00000000000..72bafa97578 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_489.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.489.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_489.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.489.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_49.sub b/test/ntuple_qcd_200_300/batch/condor_49.sub new file mode 100644 index 00000000000..ce22e3cf23c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_490.sub b/test/ntuple_qcd_200_300/batch/condor_490.sub new file mode 100644 index 00000000000..ea9583ab4b8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_490.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.490.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_490.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.490.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_491.sub b/test/ntuple_qcd_200_300/batch/condor_491.sub new file mode 100644 index 00000000000..01420de5aa3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_491.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.491.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_491.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.491.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_492.sub b/test/ntuple_qcd_200_300/batch/condor_492.sub new file mode 100644 index 00000000000..8118b7c46e6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_492.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.492.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_492.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.492.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_493.sub b/test/ntuple_qcd_200_300/batch/condor_493.sub new file mode 100644 index 00000000000..491d0b850e2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_493.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.493.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_493.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.493.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_494.sub b/test/ntuple_qcd_200_300/batch/condor_494.sub new file mode 100644 index 00000000000..58d88cb16f9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_494.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.494.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_494.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.494.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_495.sub b/test/ntuple_qcd_200_300/batch/condor_495.sub new file mode 100644 index 00000000000..24735b7f08c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_495.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.495.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_495.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.495.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_496.sub b/test/ntuple_qcd_200_300/batch/condor_496.sub new file mode 100644 index 00000000000..0e7ac0ad2f8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_496.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.496.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_496.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.496.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_497.sub b/test/ntuple_qcd_200_300/batch/condor_497.sub new file mode 100644 index 00000000000..c39642f6e89 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_497.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.497.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_497.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.497.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_498.sub b/test/ntuple_qcd_200_300/batch/condor_498.sub new file mode 100644 index 00000000000..3d5d52d9a3d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_498.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.498.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_498.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.498.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_499.sub b/test/ntuple_qcd_200_300/batch/condor_499.sub new file mode 100644 index 00000000000..8efcdaeb0f3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_499.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.499.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_499.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.499.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_5.sub b/test/ntuple_qcd_200_300/batch/condor_5.sub new file mode 100644 index 00000000000..2fa7c7e010f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_50.sub b/test/ntuple_qcd_200_300/batch/condor_50.sub new file mode 100644 index 00000000000..66d302ee1f8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_51.sub b/test/ntuple_qcd_200_300/batch/condor_51.sub new file mode 100644 index 00000000000..01786f83a32 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_52.sub b/test/ntuple_qcd_200_300/batch/condor_52.sub new file mode 100644 index 00000000000..5d717030f04 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_53.sub b/test/ntuple_qcd_200_300/batch/condor_53.sub new file mode 100644 index 00000000000..0a2d86d16a6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_54.sub b/test/ntuple_qcd_200_300/batch/condor_54.sub new file mode 100644 index 00000000000..7aa77f26e7a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_55.sub b/test/ntuple_qcd_200_300/batch/condor_55.sub new file mode 100644 index 00000000000..67ed77a6197 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_56.sub b/test/ntuple_qcd_200_300/batch/condor_56.sub new file mode 100644 index 00000000000..b1f0284eba0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_57.sub b/test/ntuple_qcd_200_300/batch/condor_57.sub new file mode 100644 index 00000000000..bf1d27d306e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_58.sub b/test/ntuple_qcd_200_300/batch/condor_58.sub new file mode 100644 index 00000000000..72bae0241ed --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_59.sub b/test/ntuple_qcd_200_300/batch/condor_59.sub new file mode 100644 index 00000000000..009d81e5cfc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_6.sub b/test/ntuple_qcd_200_300/batch/condor_6.sub new file mode 100644 index 00000000000..bdb80c164c3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_60.sub b/test/ntuple_qcd_200_300/batch/condor_60.sub new file mode 100644 index 00000000000..ee80efb851f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_61.sub b/test/ntuple_qcd_200_300/batch/condor_61.sub new file mode 100644 index 00000000000..ce76d73342a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_62.sub b/test/ntuple_qcd_200_300/batch/condor_62.sub new file mode 100644 index 00000000000..59ecedd3610 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_63.sub b/test/ntuple_qcd_200_300/batch/condor_63.sub new file mode 100644 index 00000000000..96e6b5bcc2b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_64.sub b/test/ntuple_qcd_200_300/batch/condor_64.sub new file mode 100644 index 00000000000..d833c9d07c3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_65.sub b/test/ntuple_qcd_200_300/batch/condor_65.sub new file mode 100644 index 00000000000..b4d52096e29 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_66.sub b/test/ntuple_qcd_200_300/batch/condor_66.sub new file mode 100644 index 00000000000..13a401aa831 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_67.sub b/test/ntuple_qcd_200_300/batch/condor_67.sub new file mode 100644 index 00000000000..76876851ec5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_68.sub b/test/ntuple_qcd_200_300/batch/condor_68.sub new file mode 100644 index 00000000000..76c7055c63e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_69.sub b/test/ntuple_qcd_200_300/batch/condor_69.sub new file mode 100644 index 00000000000..e7745df8bba --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_7.sub b/test/ntuple_qcd_200_300/batch/condor_7.sub new file mode 100644 index 00000000000..be0fabcb360 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_70.sub b/test/ntuple_qcd_200_300/batch/condor_70.sub new file mode 100644 index 00000000000..9417974999b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_71.sub b/test/ntuple_qcd_200_300/batch/condor_71.sub new file mode 100644 index 00000000000..5114a54bf6d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_72.sub b/test/ntuple_qcd_200_300/batch/condor_72.sub new file mode 100644 index 00000000000..b670c29e9c1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_73.sub b/test/ntuple_qcd_200_300/batch/condor_73.sub new file mode 100644 index 00000000000..03f608c3368 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_74.sub b/test/ntuple_qcd_200_300/batch/condor_74.sub new file mode 100644 index 00000000000..ccf131ff0b8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_75.sub b/test/ntuple_qcd_200_300/batch/condor_75.sub new file mode 100644 index 00000000000..04067d9d821 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_76.sub b/test/ntuple_qcd_200_300/batch/condor_76.sub new file mode 100644 index 00000000000..9969cb95c94 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_77.sub b/test/ntuple_qcd_200_300/batch/condor_77.sub new file mode 100644 index 00000000000..5a93ee41269 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_78.sub b/test/ntuple_qcd_200_300/batch/condor_78.sub new file mode 100644 index 00000000000..a629b353119 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_79.sub b/test/ntuple_qcd_200_300/batch/condor_79.sub new file mode 100644 index 00000000000..e6780b43ecb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_8.sub b/test/ntuple_qcd_200_300/batch/condor_8.sub new file mode 100644 index 00000000000..5045fa42dff --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_80.sub b/test/ntuple_qcd_200_300/batch/condor_80.sub new file mode 100644 index 00000000000..5ea90cb7ec2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_81.sub b/test/ntuple_qcd_200_300/batch/condor_81.sub new file mode 100644 index 00000000000..88828a98a50 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_82.sub b/test/ntuple_qcd_200_300/batch/condor_82.sub new file mode 100644 index 00000000000..adb30bca58f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_83.sub b/test/ntuple_qcd_200_300/batch/condor_83.sub new file mode 100644 index 00000000000..1e4bc68bc0d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_84.sub b/test/ntuple_qcd_200_300/batch/condor_84.sub new file mode 100644 index 00000000000..b45c20dd86e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_85.sub b/test/ntuple_qcd_200_300/batch/condor_85.sub new file mode 100644 index 00000000000..36a25e351c2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_86.sub b/test/ntuple_qcd_200_300/batch/condor_86.sub new file mode 100644 index 00000000000..1a90b78e200 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_87.sub b/test/ntuple_qcd_200_300/batch/condor_87.sub new file mode 100644 index 00000000000..0c4cc0cb2cd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_88.sub b/test/ntuple_qcd_200_300/batch/condor_88.sub new file mode 100644 index 00000000000..167a08a0ec9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_89.sub b/test/ntuple_qcd_200_300/batch/condor_89.sub new file mode 100644 index 00000000000..2877b8234a9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_9.sub b/test/ntuple_qcd_200_300/batch/condor_9.sub new file mode 100644 index 00000000000..4e8b6c20cae --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_90.sub b/test/ntuple_qcd_200_300/batch/condor_90.sub new file mode 100644 index 00000000000..7a79a9867c8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_91.sub b/test/ntuple_qcd_200_300/batch/condor_91.sub new file mode 100644 index 00000000000..b72e4c1f88d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_92.sub b/test/ntuple_qcd_200_300/batch/condor_92.sub new file mode 100644 index 00000000000..f49ab15cfa3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_93.sub b/test/ntuple_qcd_200_300/batch/condor_93.sub new file mode 100644 index 00000000000..a8e5e5294bb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_94.sub b/test/ntuple_qcd_200_300/batch/condor_94.sub new file mode 100644 index 00000000000..083d2f5abe6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_95.sub b/test/ntuple_qcd_200_300/batch/condor_95.sub new file mode 100644 index 00000000000..1933c3a944c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_96.sub b/test/ntuple_qcd_200_300/batch/condor_96.sub new file mode 100644 index 00000000000..d6211e242d5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_97.sub b/test/ntuple_qcd_200_300/batch/condor_97.sub new file mode 100644 index 00000000000..90616c99f31 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_98.sub b/test/ntuple_qcd_200_300/batch/condor_98.sub new file mode 100644 index 00000000000..2a667ca41d7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_99.sub b/test/ntuple_qcd_200_300/batch/condor_99.sub new file mode 100644 index 00000000000..ca2420564c9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/nJobs.500 b/test/ntuple_qcd_200_300/batch/nJobs.500 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_200_300/batch/sge_0.sh b/test/ntuple_qcd_200_300/batch/sge_0.sh new file mode 100755 index 00000000000..d933632217f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_1.sh b/test/ntuple_qcd_200_300/batch/sge_1.sh new file mode 100755 index 00000000000..7b313511f91 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_10.sh b/test/ntuple_qcd_200_300/batch/sge_10.sh new file mode 100755 index 00000000000..d091a25bdf9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_100.sh b/test/ntuple_qcd_200_300/batch/sge_100.sh new file mode 100755 index 00000000000..36754d0fb5d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_101.sh b/test/ntuple_qcd_200_300/batch/sge_101.sh new file mode 100755 index 00000000000..df282fe2b08 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_102.sh b/test/ntuple_qcd_200_300/batch/sge_102.sh new file mode 100755 index 00000000000..efa8e12d879 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_103.sh b/test/ntuple_qcd_200_300/batch/sge_103.sh new file mode 100755 index 00000000000..52ca3696a76 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_104.sh b/test/ntuple_qcd_200_300/batch/sge_104.sh new file mode 100755 index 00000000000..038bf4427ed --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_105.sh b/test/ntuple_qcd_200_300/batch/sge_105.sh new file mode 100755 index 00000000000..7c98fbb06fb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_106.sh b/test/ntuple_qcd_200_300/batch/sge_106.sh new file mode 100755 index 00000000000..96ed87da17d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_107.sh b/test/ntuple_qcd_200_300/batch/sge_107.sh new file mode 100755 index 00000000000..c381a7e828c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_108.sh b/test/ntuple_qcd_200_300/batch/sge_108.sh new file mode 100755 index 00000000000..e5e043bb042 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_109.sh b/test/ntuple_qcd_200_300/batch/sge_109.sh new file mode 100755 index 00000000000..9fc77835d79 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_11.sh b/test/ntuple_qcd_200_300/batch/sge_11.sh new file mode 100755 index 00000000000..de2fec02aa2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_110.sh b/test/ntuple_qcd_200_300/batch/sge_110.sh new file mode 100755 index 00000000000..abb23184fe4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_111.sh b/test/ntuple_qcd_200_300/batch/sge_111.sh new file mode 100755 index 00000000000..295292f5185 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_112.sh b/test/ntuple_qcd_200_300/batch/sge_112.sh new file mode 100755 index 00000000000..c3d9a196181 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_113.sh b/test/ntuple_qcd_200_300/batch/sge_113.sh new file mode 100755 index 00000000000..0873507cef2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_114.sh b/test/ntuple_qcd_200_300/batch/sge_114.sh new file mode 100755 index 00000000000..6576244e9a7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_115.sh b/test/ntuple_qcd_200_300/batch/sge_115.sh new file mode 100755 index 00000000000..e46815d1276 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_116.sh b/test/ntuple_qcd_200_300/batch/sge_116.sh new file mode 100755 index 00000000000..c7e3f7f9409 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_117.sh b/test/ntuple_qcd_200_300/batch/sge_117.sh new file mode 100755 index 00000000000..c4e26080893 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_118.sh b/test/ntuple_qcd_200_300/batch/sge_118.sh new file mode 100755 index 00000000000..a6ef0ae532f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_119.sh b/test/ntuple_qcd_200_300/batch/sge_119.sh new file mode 100755 index 00000000000..f5f5c9d68ed --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_12.sh b/test/ntuple_qcd_200_300/batch/sge_12.sh new file mode 100755 index 00000000000..a6cc5a210c8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_120.sh b/test/ntuple_qcd_200_300/batch/sge_120.sh new file mode 100755 index 00000000000..95cbc6708b6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_121.sh b/test/ntuple_qcd_200_300/batch/sge_121.sh new file mode 100755 index 00000000000..4dc4cbeaedc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_122.sh b/test/ntuple_qcd_200_300/batch/sge_122.sh new file mode 100755 index 00000000000..864e5614df9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_123.sh b/test/ntuple_qcd_200_300/batch/sge_123.sh new file mode 100755 index 00000000000..150b4b38470 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_124.sh b/test/ntuple_qcd_200_300/batch/sge_124.sh new file mode 100755 index 00000000000..c8c946f7c76 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_125.sh b/test/ntuple_qcd_200_300/batch/sge_125.sh new file mode 100755 index 00000000000..b5287a706d6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_126.sh b/test/ntuple_qcd_200_300/batch/sge_126.sh new file mode 100755 index 00000000000..2532b5bff12 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_127.sh b/test/ntuple_qcd_200_300/batch/sge_127.sh new file mode 100755 index 00000000000..28cda64d2d9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_128.sh b/test/ntuple_qcd_200_300/batch/sge_128.sh new file mode 100755 index 00000000000..8a4ebb96a36 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_129.sh b/test/ntuple_qcd_200_300/batch/sge_129.sh new file mode 100755 index 00000000000..2378440de6f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_13.sh b/test/ntuple_qcd_200_300/batch/sge_13.sh new file mode 100755 index 00000000000..8e2463e77ae --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_130.sh b/test/ntuple_qcd_200_300/batch/sge_130.sh new file mode 100755 index 00000000000..7f67b20572f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_131.sh b/test/ntuple_qcd_200_300/batch/sge_131.sh new file mode 100755 index 00000000000..30310e94aa0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_132.sh b/test/ntuple_qcd_200_300/batch/sge_132.sh new file mode 100755 index 00000000000..69223488bc0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_133.sh b/test/ntuple_qcd_200_300/batch/sge_133.sh new file mode 100755 index 00000000000..5c7025ed718 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_134.sh b/test/ntuple_qcd_200_300/batch/sge_134.sh new file mode 100755 index 00000000000..6b3c6ad2717 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_135.sh b/test/ntuple_qcd_200_300/batch/sge_135.sh new file mode 100755 index 00000000000..46b2bdd1149 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_136.sh b/test/ntuple_qcd_200_300/batch/sge_136.sh new file mode 100755 index 00000000000..eccadef91a1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_137.sh b/test/ntuple_qcd_200_300/batch/sge_137.sh new file mode 100755 index 00000000000..b675649a332 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_138.sh b/test/ntuple_qcd_200_300/batch/sge_138.sh new file mode 100755 index 00000000000..0ff1f79914f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_139.sh b/test/ntuple_qcd_200_300/batch/sge_139.sh new file mode 100755 index 00000000000..7e8c9e5ceb0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_139.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=139 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_139.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_14.sh b/test/ntuple_qcd_200_300/batch/sge_14.sh new file mode 100755 index 00000000000..93266e25375 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_140.sh b/test/ntuple_qcd_200_300/batch/sge_140.sh new file mode 100755 index 00000000000..f32444c0f87 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_140.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=140 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_140.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_141.sh b/test/ntuple_qcd_200_300/batch/sge_141.sh new file mode 100755 index 00000000000..6e88bded488 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_141.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=141 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_141.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_142.sh b/test/ntuple_qcd_200_300/batch/sge_142.sh new file mode 100755 index 00000000000..47dca2001dd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_142.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=142 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_142.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_143.sh b/test/ntuple_qcd_200_300/batch/sge_143.sh new file mode 100755 index 00000000000..9aadaef6098 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_143.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=143 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_143.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_144.sh b/test/ntuple_qcd_200_300/batch/sge_144.sh new file mode 100755 index 00000000000..0db2022fc7c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_144.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=144 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_144.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_145.sh b/test/ntuple_qcd_200_300/batch/sge_145.sh new file mode 100755 index 00000000000..eda8027fd25 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_145.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=145 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_145.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_146.sh b/test/ntuple_qcd_200_300/batch/sge_146.sh new file mode 100755 index 00000000000..c290fbcff00 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_146.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=146 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_146.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_147.sh b/test/ntuple_qcd_200_300/batch/sge_147.sh new file mode 100755 index 00000000000..c259b3916da --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_147.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=147 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_147.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_148.sh b/test/ntuple_qcd_200_300/batch/sge_148.sh new file mode 100755 index 00000000000..4d92e27755f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_148.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=148 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_148.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_149.sh b/test/ntuple_qcd_200_300/batch/sge_149.sh new file mode 100755 index 00000000000..b8673af165e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_149.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=149 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_149.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_15.sh b/test/ntuple_qcd_200_300/batch/sge_15.sh new file mode 100755 index 00000000000..1c405a2151b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_150.sh b/test/ntuple_qcd_200_300/batch/sge_150.sh new file mode 100755 index 00000000000..3e60fed706c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_150.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=150 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_150.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_151.sh b/test/ntuple_qcd_200_300/batch/sge_151.sh new file mode 100755 index 00000000000..c57aed635e2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_151.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=151 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_151.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_152.sh b/test/ntuple_qcd_200_300/batch/sge_152.sh new file mode 100755 index 00000000000..ca099117854 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_152.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=152 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_152.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_153.sh b/test/ntuple_qcd_200_300/batch/sge_153.sh new file mode 100755 index 00000000000..cdec3b24aaa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_153.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=153 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_153.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_154.sh b/test/ntuple_qcd_200_300/batch/sge_154.sh new file mode 100755 index 00000000000..dc5375cd629 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_154.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=154 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_154.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_155.sh b/test/ntuple_qcd_200_300/batch/sge_155.sh new file mode 100755 index 00000000000..f0b4fb35855 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_155.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=155 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_155.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_156.sh b/test/ntuple_qcd_200_300/batch/sge_156.sh new file mode 100755 index 00000000000..ca69bd26a26 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_156.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=156 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_156.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_157.sh b/test/ntuple_qcd_200_300/batch/sge_157.sh new file mode 100755 index 00000000000..20c7e4b9e0c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_157.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=157 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_157.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_158.sh b/test/ntuple_qcd_200_300/batch/sge_158.sh new file mode 100755 index 00000000000..98dce5bf493 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_158.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=158 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_158.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_159.sh b/test/ntuple_qcd_200_300/batch/sge_159.sh new file mode 100755 index 00000000000..38f640101d9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_159.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=159 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_159.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_16.sh b/test/ntuple_qcd_200_300/batch/sge_16.sh new file mode 100755 index 00000000000..f53dd922e49 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_160.sh b/test/ntuple_qcd_200_300/batch/sge_160.sh new file mode 100755 index 00000000000..d6e32d3c234 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_160.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=160 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_160.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_161.sh b/test/ntuple_qcd_200_300/batch/sge_161.sh new file mode 100755 index 00000000000..e77abb0bbfe --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_161.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=161 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_161.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_162.sh b/test/ntuple_qcd_200_300/batch/sge_162.sh new file mode 100755 index 00000000000..95cee478814 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_162.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=162 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_162.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_163.sh b/test/ntuple_qcd_200_300/batch/sge_163.sh new file mode 100755 index 00000000000..992f834f33c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_163.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=163 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_163.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_164.sh b/test/ntuple_qcd_200_300/batch/sge_164.sh new file mode 100755 index 00000000000..b570f9b2dc8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_164.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=164 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_164.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_165.sh b/test/ntuple_qcd_200_300/batch/sge_165.sh new file mode 100755 index 00000000000..4ab3a1f0019 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_165.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=165 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_165.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_166.sh b/test/ntuple_qcd_200_300/batch/sge_166.sh new file mode 100755 index 00000000000..bba93893c0e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_166.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=166 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_166.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_167.sh b/test/ntuple_qcd_200_300/batch/sge_167.sh new file mode 100755 index 00000000000..cc1bdbcaf5c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_167.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=167 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_167.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_168.sh b/test/ntuple_qcd_200_300/batch/sge_168.sh new file mode 100755 index 00000000000..90e1ab50226 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_168.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=168 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_168.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_169.sh b/test/ntuple_qcd_200_300/batch/sge_169.sh new file mode 100755 index 00000000000..17cd1c9ea28 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_169.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=169 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_169.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_17.sh b/test/ntuple_qcd_200_300/batch/sge_17.sh new file mode 100755 index 00000000000..b78e5adb3fd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_170.sh b/test/ntuple_qcd_200_300/batch/sge_170.sh new file mode 100755 index 00000000000..e9335e19bc9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_170.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=170 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_170.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_171.sh b/test/ntuple_qcd_200_300/batch/sge_171.sh new file mode 100755 index 00000000000..4691203f037 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_171.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=171 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_171.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_172.sh b/test/ntuple_qcd_200_300/batch/sge_172.sh new file mode 100755 index 00000000000..58cf58d89ac --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_172.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=172 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_172.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_173.sh b/test/ntuple_qcd_200_300/batch/sge_173.sh new file mode 100755 index 00000000000..cfc7e323f6a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_173.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=173 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_173.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_174.sh b/test/ntuple_qcd_200_300/batch/sge_174.sh new file mode 100755 index 00000000000..9c36667c8db --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_174.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=174 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_174.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_175.sh b/test/ntuple_qcd_200_300/batch/sge_175.sh new file mode 100755 index 00000000000..5928aeb4477 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_175.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=175 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_175.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_176.sh b/test/ntuple_qcd_200_300/batch/sge_176.sh new file mode 100755 index 00000000000..fa169b27737 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_176.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=176 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_176.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_177.sh b/test/ntuple_qcd_200_300/batch/sge_177.sh new file mode 100755 index 00000000000..7dbaf3b7f22 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_177.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=177 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_177.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_178.sh b/test/ntuple_qcd_200_300/batch/sge_178.sh new file mode 100755 index 00000000000..2b809f26946 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_178.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=178 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_178.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_179.sh b/test/ntuple_qcd_200_300/batch/sge_179.sh new file mode 100755 index 00000000000..f2c46a5a2fc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_179.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=179 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_179.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_18.sh b/test/ntuple_qcd_200_300/batch/sge_18.sh new file mode 100755 index 00000000000..66abddacf67 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_180.sh b/test/ntuple_qcd_200_300/batch/sge_180.sh new file mode 100755 index 00000000000..226c073a360 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_180.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=180 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_180.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_181.sh b/test/ntuple_qcd_200_300/batch/sge_181.sh new file mode 100755 index 00000000000..878226e94e8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_181.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=181 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_181.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_182.sh b/test/ntuple_qcd_200_300/batch/sge_182.sh new file mode 100755 index 00000000000..579b4ce09f6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_182.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=182 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_182.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_183.sh b/test/ntuple_qcd_200_300/batch/sge_183.sh new file mode 100755 index 00000000000..59d70d2881d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_183.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=183 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_183.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_184.sh b/test/ntuple_qcd_200_300/batch/sge_184.sh new file mode 100755 index 00000000000..e1b00a2eaff --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_184.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=184 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_184.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_185.sh b/test/ntuple_qcd_200_300/batch/sge_185.sh new file mode 100755 index 00000000000..f31627e99e5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_185.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=185 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_185.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_186.sh b/test/ntuple_qcd_200_300/batch/sge_186.sh new file mode 100755 index 00000000000..4689b864bef --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_186.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=186 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_186.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_187.sh b/test/ntuple_qcd_200_300/batch/sge_187.sh new file mode 100755 index 00000000000..63948b489e7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_187.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=187 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_187.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_188.sh b/test/ntuple_qcd_200_300/batch/sge_188.sh new file mode 100755 index 00000000000..d71d493c633 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_188.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=188 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_188.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_189.sh b/test/ntuple_qcd_200_300/batch/sge_189.sh new file mode 100755 index 00000000000..1912baf4a14 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_189.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=189 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_189.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_19.sh b/test/ntuple_qcd_200_300/batch/sge_19.sh new file mode 100755 index 00000000000..814af0eab7c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_190.sh b/test/ntuple_qcd_200_300/batch/sge_190.sh new file mode 100755 index 00000000000..ea13f588e92 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_190.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=190 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_190.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_191.sh b/test/ntuple_qcd_200_300/batch/sge_191.sh new file mode 100755 index 00000000000..7b64203419b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_191.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=191 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_191.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_192.sh b/test/ntuple_qcd_200_300/batch/sge_192.sh new file mode 100755 index 00000000000..e3c26a1b4e3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_192.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=192 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_192.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_193.sh b/test/ntuple_qcd_200_300/batch/sge_193.sh new file mode 100755 index 00000000000..101bc66e386 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_193.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=193 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_193.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_194.sh b/test/ntuple_qcd_200_300/batch/sge_194.sh new file mode 100755 index 00000000000..e704ea2762e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_194.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=194 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_194.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_195.sh b/test/ntuple_qcd_200_300/batch/sge_195.sh new file mode 100755 index 00000000000..de2970c5fdd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_195.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=195 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_195.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_196.sh b/test/ntuple_qcd_200_300/batch/sge_196.sh new file mode 100755 index 00000000000..30c8f58d52f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_196.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=196 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_196.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_197.sh b/test/ntuple_qcd_200_300/batch/sge_197.sh new file mode 100755 index 00000000000..bd032a9b1da --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_197.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=197 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_197.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_198.sh b/test/ntuple_qcd_200_300/batch/sge_198.sh new file mode 100755 index 00000000000..59df56cbd26 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_198.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=198 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_198.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_199.sh b/test/ntuple_qcd_200_300/batch/sge_199.sh new file mode 100755 index 00000000000..250d4ac80c1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_199.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=199 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_199.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_2.sh b/test/ntuple_qcd_200_300/batch/sge_2.sh new file mode 100755 index 00000000000..454a22ade1b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_20.sh b/test/ntuple_qcd_200_300/batch/sge_20.sh new file mode 100755 index 00000000000..efbfa6a5234 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_200.sh b/test/ntuple_qcd_200_300/batch/sge_200.sh new file mode 100755 index 00000000000..6e033ac0487 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_200.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=200 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_200.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_201.sh b/test/ntuple_qcd_200_300/batch/sge_201.sh new file mode 100755 index 00000000000..df7ee1da533 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_201.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=201 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_201.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_202.sh b/test/ntuple_qcd_200_300/batch/sge_202.sh new file mode 100755 index 00000000000..1b1aca85ece --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_202.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=202 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_202.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_203.sh b/test/ntuple_qcd_200_300/batch/sge_203.sh new file mode 100755 index 00000000000..93f34d8857c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_203.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=203 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_203.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_204.sh b/test/ntuple_qcd_200_300/batch/sge_204.sh new file mode 100755 index 00000000000..887c0bbfad4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_204.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=204 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_204.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_205.sh b/test/ntuple_qcd_200_300/batch/sge_205.sh new file mode 100755 index 00000000000..c5b5dd48889 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_205.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=205 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_205.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_206.sh b/test/ntuple_qcd_200_300/batch/sge_206.sh new file mode 100755 index 00000000000..c23234dba9d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_206.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=206 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_206.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_207.sh b/test/ntuple_qcd_200_300/batch/sge_207.sh new file mode 100755 index 00000000000..8b1cda6a103 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_207.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=207 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_207.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_208.sh b/test/ntuple_qcd_200_300/batch/sge_208.sh new file mode 100755 index 00000000000..348e289c81b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_208.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=208 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_208.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_209.sh b/test/ntuple_qcd_200_300/batch/sge_209.sh new file mode 100755 index 00000000000..6a9e6084fc5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_209.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=209 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_209.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_21.sh b/test/ntuple_qcd_200_300/batch/sge_21.sh new file mode 100755 index 00000000000..267e6147e5e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_210.sh b/test/ntuple_qcd_200_300/batch/sge_210.sh new file mode 100755 index 00000000000..4115b5b905f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_210.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=210 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_210.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_211.sh b/test/ntuple_qcd_200_300/batch/sge_211.sh new file mode 100755 index 00000000000..dde3b2118fa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_211.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=211 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_211.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_212.sh b/test/ntuple_qcd_200_300/batch/sge_212.sh new file mode 100755 index 00000000000..914e6a03640 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_212.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=212 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_212.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_213.sh b/test/ntuple_qcd_200_300/batch/sge_213.sh new file mode 100755 index 00000000000..494ba777736 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_213.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=213 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_213.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_214.sh b/test/ntuple_qcd_200_300/batch/sge_214.sh new file mode 100755 index 00000000000..620db10adf7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_214.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=214 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_214.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_215.sh b/test/ntuple_qcd_200_300/batch/sge_215.sh new file mode 100755 index 00000000000..82f95f72843 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_215.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=215 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_215.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_216.sh b/test/ntuple_qcd_200_300/batch/sge_216.sh new file mode 100755 index 00000000000..ed98b7a43a5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_216.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=216 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_216.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_217.sh b/test/ntuple_qcd_200_300/batch/sge_217.sh new file mode 100755 index 00000000000..4eb000834ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_217.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=217 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_217.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_218.sh b/test/ntuple_qcd_200_300/batch/sge_218.sh new file mode 100755 index 00000000000..26195a71ede --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_218.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=218 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_218.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_219.sh b/test/ntuple_qcd_200_300/batch/sge_219.sh new file mode 100755 index 00000000000..727674957eb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_219.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=219 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_219.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_22.sh b/test/ntuple_qcd_200_300/batch/sge_22.sh new file mode 100755 index 00000000000..499e86f18cc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_220.sh b/test/ntuple_qcd_200_300/batch/sge_220.sh new file mode 100755 index 00000000000..87bb69ee70e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_220.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=220 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_220.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_221.sh b/test/ntuple_qcd_200_300/batch/sge_221.sh new file mode 100755 index 00000000000..cae4c1a409a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_221.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=221 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_221.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_222.sh b/test/ntuple_qcd_200_300/batch/sge_222.sh new file mode 100755 index 00000000000..20808bc83c8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_222.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=222 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_222.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_223.sh b/test/ntuple_qcd_200_300/batch/sge_223.sh new file mode 100755 index 00000000000..3dc9be97427 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_223.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=223 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_223.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_224.sh b/test/ntuple_qcd_200_300/batch/sge_224.sh new file mode 100755 index 00000000000..977589430bd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_224.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=224 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_224.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_225.sh b/test/ntuple_qcd_200_300/batch/sge_225.sh new file mode 100755 index 00000000000..b9c274b9ba1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_225.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=225 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_225.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_226.sh b/test/ntuple_qcd_200_300/batch/sge_226.sh new file mode 100755 index 00000000000..d36b7a9833f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_226.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=226 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_226.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_227.sh b/test/ntuple_qcd_200_300/batch/sge_227.sh new file mode 100755 index 00000000000..017a6f59e76 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_227.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=227 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_227.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_228.sh b/test/ntuple_qcd_200_300/batch/sge_228.sh new file mode 100755 index 00000000000..444d11dedd4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_228.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=228 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_228.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_229.sh b/test/ntuple_qcd_200_300/batch/sge_229.sh new file mode 100755 index 00000000000..3d63353e8e3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_229.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=229 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_229.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_23.sh b/test/ntuple_qcd_200_300/batch/sge_23.sh new file mode 100755 index 00000000000..92e02e7da80 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_230.sh b/test/ntuple_qcd_200_300/batch/sge_230.sh new file mode 100755 index 00000000000..607db8fca47 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_230.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=230 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_230.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_231.sh b/test/ntuple_qcd_200_300/batch/sge_231.sh new file mode 100755 index 00000000000..f0d6501af53 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_231.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=231 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_231.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_232.sh b/test/ntuple_qcd_200_300/batch/sge_232.sh new file mode 100755 index 00000000000..e7b99b4ef77 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_232.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=232 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_232.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_233.sh b/test/ntuple_qcd_200_300/batch/sge_233.sh new file mode 100755 index 00000000000..a15f53a2d61 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_233.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=233 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_233.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_234.sh b/test/ntuple_qcd_200_300/batch/sge_234.sh new file mode 100755 index 00000000000..5ac845a3ed9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_234.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=234 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_234.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_235.sh b/test/ntuple_qcd_200_300/batch/sge_235.sh new file mode 100755 index 00000000000..6817a0366b3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_235.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=235 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_235.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_236.sh b/test/ntuple_qcd_200_300/batch/sge_236.sh new file mode 100755 index 00000000000..43cc2c57dba --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_236.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=236 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_236.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_237.sh b/test/ntuple_qcd_200_300/batch/sge_237.sh new file mode 100755 index 00000000000..d112a30162b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_237.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=237 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_237.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_238.sh b/test/ntuple_qcd_200_300/batch/sge_238.sh new file mode 100755 index 00000000000..dbad1b1a404 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_238.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=238 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_238.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_239.sh b/test/ntuple_qcd_200_300/batch/sge_239.sh new file mode 100755 index 00000000000..9b3b4f4a21c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_239.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=239 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_239.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_24.sh b/test/ntuple_qcd_200_300/batch/sge_24.sh new file mode 100755 index 00000000000..0ad54c8d2c1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_240.sh b/test/ntuple_qcd_200_300/batch/sge_240.sh new file mode 100755 index 00000000000..295ea6b8a1b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_240.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=240 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_240.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_241.sh b/test/ntuple_qcd_200_300/batch/sge_241.sh new file mode 100755 index 00000000000..f5593a832f3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_241.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=241 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_241.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_242.sh b/test/ntuple_qcd_200_300/batch/sge_242.sh new file mode 100755 index 00000000000..ac0d095f6dc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_242.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=242 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_242.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_243.sh b/test/ntuple_qcd_200_300/batch/sge_243.sh new file mode 100755 index 00000000000..ac4658b239d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_243.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=243 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_243.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_244.sh b/test/ntuple_qcd_200_300/batch/sge_244.sh new file mode 100755 index 00000000000..b7228611874 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_244.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=244 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_244.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_245.sh b/test/ntuple_qcd_200_300/batch/sge_245.sh new file mode 100755 index 00000000000..3489ba39f9c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_245.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=245 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_245.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_246.sh b/test/ntuple_qcd_200_300/batch/sge_246.sh new file mode 100755 index 00000000000..ed38408da8b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_246.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=246 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_246.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_247.sh b/test/ntuple_qcd_200_300/batch/sge_247.sh new file mode 100755 index 00000000000..c7b84b7c2ad --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_247.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=247 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_247.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_248.sh b/test/ntuple_qcd_200_300/batch/sge_248.sh new file mode 100755 index 00000000000..2f779b2b923 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_248.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=248 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_248.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_249.sh b/test/ntuple_qcd_200_300/batch/sge_249.sh new file mode 100755 index 00000000000..700d259c76e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_249.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=249 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_249.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_25.sh b/test/ntuple_qcd_200_300/batch/sge_25.sh new file mode 100755 index 00000000000..1f4edad8ad1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_250.sh b/test/ntuple_qcd_200_300/batch/sge_250.sh new file mode 100755 index 00000000000..5d466ed6023 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_250.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=250 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_250.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_251.sh b/test/ntuple_qcd_200_300/batch/sge_251.sh new file mode 100755 index 00000000000..ac65b9ef97e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_251.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=251 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_251.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_252.sh b/test/ntuple_qcd_200_300/batch/sge_252.sh new file mode 100755 index 00000000000..625cf95f14e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_252.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=252 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_252.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_253.sh b/test/ntuple_qcd_200_300/batch/sge_253.sh new file mode 100755 index 00000000000..ed6193c1b4d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_253.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=253 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_253.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_254.sh b/test/ntuple_qcd_200_300/batch/sge_254.sh new file mode 100755 index 00000000000..d0a0381d418 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_254.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=254 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_254.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_255.sh b/test/ntuple_qcd_200_300/batch/sge_255.sh new file mode 100755 index 00000000000..de1f7688c4d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_255.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=255 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_255.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_256.sh b/test/ntuple_qcd_200_300/batch/sge_256.sh new file mode 100755 index 00000000000..1d4d624682d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_256.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=256 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_256.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_257.sh b/test/ntuple_qcd_200_300/batch/sge_257.sh new file mode 100755 index 00000000000..56dbd5f51bf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_257.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=257 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_257.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_258.sh b/test/ntuple_qcd_200_300/batch/sge_258.sh new file mode 100755 index 00000000000..52dbc4c63cb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_258.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=258 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_258.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_259.sh b/test/ntuple_qcd_200_300/batch/sge_259.sh new file mode 100755 index 00000000000..f27368a8ed9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_259.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=259 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_259.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_26.sh b/test/ntuple_qcd_200_300/batch/sge_26.sh new file mode 100755 index 00000000000..034aa0e4db3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_260.sh b/test/ntuple_qcd_200_300/batch/sge_260.sh new file mode 100755 index 00000000000..c3bffb1a55c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_260.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=260 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_260.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_261.sh b/test/ntuple_qcd_200_300/batch/sge_261.sh new file mode 100755 index 00000000000..a788487fbaa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_261.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=261 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_261.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_262.sh b/test/ntuple_qcd_200_300/batch/sge_262.sh new file mode 100755 index 00000000000..8649bc41434 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_262.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=262 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_262.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_263.sh b/test/ntuple_qcd_200_300/batch/sge_263.sh new file mode 100755 index 00000000000..5337ab31887 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_263.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=263 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_263.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_264.sh b/test/ntuple_qcd_200_300/batch/sge_264.sh new file mode 100755 index 00000000000..1c9a2fa8679 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_264.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=264 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_264.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_265.sh b/test/ntuple_qcd_200_300/batch/sge_265.sh new file mode 100755 index 00000000000..812f128fd27 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_265.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=265 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_265.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_266.sh b/test/ntuple_qcd_200_300/batch/sge_266.sh new file mode 100755 index 00000000000..4ae8d6e59ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_266.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=266 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_266.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_267.sh b/test/ntuple_qcd_200_300/batch/sge_267.sh new file mode 100755 index 00000000000..720f9255b3e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_267.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=267 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_267.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_268.sh b/test/ntuple_qcd_200_300/batch/sge_268.sh new file mode 100755 index 00000000000..95ce15ab425 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_268.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=268 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_268.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_269.sh b/test/ntuple_qcd_200_300/batch/sge_269.sh new file mode 100755 index 00000000000..effa881f310 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_269.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=269 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_269.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_27.sh b/test/ntuple_qcd_200_300/batch/sge_27.sh new file mode 100755 index 00000000000..db806066e8d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_270.sh b/test/ntuple_qcd_200_300/batch/sge_270.sh new file mode 100755 index 00000000000..f5110bd8db4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_270.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=270 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_270.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_271.sh b/test/ntuple_qcd_200_300/batch/sge_271.sh new file mode 100755 index 00000000000..e99f06dbc5b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_271.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=271 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_271.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_272.sh b/test/ntuple_qcd_200_300/batch/sge_272.sh new file mode 100755 index 00000000000..9551c27b7f8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_272.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=272 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_272.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_273.sh b/test/ntuple_qcd_200_300/batch/sge_273.sh new file mode 100755 index 00000000000..0c555f703ef --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_273.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=273 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_273.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_274.sh b/test/ntuple_qcd_200_300/batch/sge_274.sh new file mode 100755 index 00000000000..e2c0fa18c21 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_274.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=274 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_274.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_275.sh b/test/ntuple_qcd_200_300/batch/sge_275.sh new file mode 100755 index 00000000000..d518b143775 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_275.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=275 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_275.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_276.sh b/test/ntuple_qcd_200_300/batch/sge_276.sh new file mode 100755 index 00000000000..9c09a093910 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_276.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=276 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_276.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_277.sh b/test/ntuple_qcd_200_300/batch/sge_277.sh new file mode 100755 index 00000000000..bb83f5c9519 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_277.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=277 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_277.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_278.sh b/test/ntuple_qcd_200_300/batch/sge_278.sh new file mode 100755 index 00000000000..dd4d029647e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_278.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=278 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_278.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_279.sh b/test/ntuple_qcd_200_300/batch/sge_279.sh new file mode 100755 index 00000000000..8050cf5ce8c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_279.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=279 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_279.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_28.sh b/test/ntuple_qcd_200_300/batch/sge_28.sh new file mode 100755 index 00000000000..89630965748 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_280.sh b/test/ntuple_qcd_200_300/batch/sge_280.sh new file mode 100755 index 00000000000..ad9b95bc488 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_280.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=280 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_280.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_281.sh b/test/ntuple_qcd_200_300/batch/sge_281.sh new file mode 100755 index 00000000000..f826718b353 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_281.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=281 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_281.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_282.sh b/test/ntuple_qcd_200_300/batch/sge_282.sh new file mode 100755 index 00000000000..ab667c79c7e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_282.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=282 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_282.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_283.sh b/test/ntuple_qcd_200_300/batch/sge_283.sh new file mode 100755 index 00000000000..9739d19882c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_283.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=283 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_283.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_284.sh b/test/ntuple_qcd_200_300/batch/sge_284.sh new file mode 100755 index 00000000000..19d07b155e9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_284.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=284 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_284.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_285.sh b/test/ntuple_qcd_200_300/batch/sge_285.sh new file mode 100755 index 00000000000..9a28ba0868c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_285.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=285 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_285.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_286.sh b/test/ntuple_qcd_200_300/batch/sge_286.sh new file mode 100755 index 00000000000..4f11a94703d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_286.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=286 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_286.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_287.sh b/test/ntuple_qcd_200_300/batch/sge_287.sh new file mode 100755 index 00000000000..3bbc831a4d8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_287.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=287 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_287.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_288.sh b/test/ntuple_qcd_200_300/batch/sge_288.sh new file mode 100755 index 00000000000..7881d4d6090 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_288.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=288 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_288.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_289.sh b/test/ntuple_qcd_200_300/batch/sge_289.sh new file mode 100755 index 00000000000..27a0afa6914 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_289.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=289 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_289.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_29.sh b/test/ntuple_qcd_200_300/batch/sge_29.sh new file mode 100755 index 00000000000..eb35c4d53c6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_290.sh b/test/ntuple_qcd_200_300/batch/sge_290.sh new file mode 100755 index 00000000000..f247d1046e7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_290.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=290 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_290.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_291.sh b/test/ntuple_qcd_200_300/batch/sge_291.sh new file mode 100755 index 00000000000..df16af60990 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_291.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=291 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_291.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_292.sh b/test/ntuple_qcd_200_300/batch/sge_292.sh new file mode 100755 index 00000000000..e3621d0a708 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_292.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=292 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_292.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_293.sh b/test/ntuple_qcd_200_300/batch/sge_293.sh new file mode 100755 index 00000000000..bd59c1e6e60 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_293.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=293 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_293.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_294.sh b/test/ntuple_qcd_200_300/batch/sge_294.sh new file mode 100755 index 00000000000..a1c14b68c64 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_294.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=294 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_294.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_295.sh b/test/ntuple_qcd_200_300/batch/sge_295.sh new file mode 100755 index 00000000000..b466a2fbe33 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_295.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=295 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_295.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_296.sh b/test/ntuple_qcd_200_300/batch/sge_296.sh new file mode 100755 index 00000000000..ef136c9a940 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_296.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=296 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_296.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_297.sh b/test/ntuple_qcd_200_300/batch/sge_297.sh new file mode 100755 index 00000000000..34b62b46989 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_297.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=297 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_297.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_298.sh b/test/ntuple_qcd_200_300/batch/sge_298.sh new file mode 100755 index 00000000000..6336324fbf0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_298.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=298 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_298.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_299.sh b/test/ntuple_qcd_200_300/batch/sge_299.sh new file mode 100755 index 00000000000..8255587a99d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_299.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=299 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_299.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_3.sh b/test/ntuple_qcd_200_300/batch/sge_3.sh new file mode 100755 index 00000000000..c0bc6e77bff --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_30.sh b/test/ntuple_qcd_200_300/batch/sge_30.sh new file mode 100755 index 00000000000..3bb56b5f83a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_300.sh b/test/ntuple_qcd_200_300/batch/sge_300.sh new file mode 100755 index 00000000000..998ce850c28 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_300.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=300 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_300.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_301.sh b/test/ntuple_qcd_200_300/batch/sge_301.sh new file mode 100755 index 00000000000..3251da4476f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_301.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=301 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_301.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_302.sh b/test/ntuple_qcd_200_300/batch/sge_302.sh new file mode 100755 index 00000000000..f1cfd836c4b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_302.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=302 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_302.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_303.sh b/test/ntuple_qcd_200_300/batch/sge_303.sh new file mode 100755 index 00000000000..cf165907f8f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_303.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=303 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_303.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_304.sh b/test/ntuple_qcd_200_300/batch/sge_304.sh new file mode 100755 index 00000000000..140016cbc22 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_304.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=304 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_304.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_305.sh b/test/ntuple_qcd_200_300/batch/sge_305.sh new file mode 100755 index 00000000000..8c3179e3cc8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_305.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=305 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_305.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_306.sh b/test/ntuple_qcd_200_300/batch/sge_306.sh new file mode 100755 index 00000000000..7630be203f8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_306.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=306 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_306.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_307.sh b/test/ntuple_qcd_200_300/batch/sge_307.sh new file mode 100755 index 00000000000..12dc5bc9343 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_307.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=307 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_307.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_308.sh b/test/ntuple_qcd_200_300/batch/sge_308.sh new file mode 100755 index 00000000000..b68ad218a57 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_308.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=308 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_308.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_309.sh b/test/ntuple_qcd_200_300/batch/sge_309.sh new file mode 100755 index 00000000000..260ff87af28 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_309.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=309 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_309.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_31.sh b/test/ntuple_qcd_200_300/batch/sge_31.sh new file mode 100755 index 00000000000..62f87a9c55d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_310.sh b/test/ntuple_qcd_200_300/batch/sge_310.sh new file mode 100755 index 00000000000..348c522d2bd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_310.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=310 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_310.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_311.sh b/test/ntuple_qcd_200_300/batch/sge_311.sh new file mode 100755 index 00000000000..91cf3b3d142 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_311.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=311 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_311.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_312.sh b/test/ntuple_qcd_200_300/batch/sge_312.sh new file mode 100755 index 00000000000..a0e832fcb0a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_312.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=312 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_312.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_313.sh b/test/ntuple_qcd_200_300/batch/sge_313.sh new file mode 100755 index 00000000000..1aed66ed63b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_313.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=313 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_313.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_314.sh b/test/ntuple_qcd_200_300/batch/sge_314.sh new file mode 100755 index 00000000000..8a967cde224 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_314.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=314 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_314.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_315.sh b/test/ntuple_qcd_200_300/batch/sge_315.sh new file mode 100755 index 00000000000..9119bd2d9c1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_315.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=315 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_315.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_316.sh b/test/ntuple_qcd_200_300/batch/sge_316.sh new file mode 100755 index 00000000000..7d2cee51cf7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_316.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=316 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_316.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_317.sh b/test/ntuple_qcd_200_300/batch/sge_317.sh new file mode 100755 index 00000000000..5417c57326c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_317.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=317 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_317.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_318.sh b/test/ntuple_qcd_200_300/batch/sge_318.sh new file mode 100755 index 00000000000..8f553e4df3a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_318.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=318 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_318.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_319.sh b/test/ntuple_qcd_200_300/batch/sge_319.sh new file mode 100755 index 00000000000..685bc28749b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_319.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=319 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_319.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_32.sh b/test/ntuple_qcd_200_300/batch/sge_32.sh new file mode 100755 index 00000000000..d48e30f5945 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_320.sh b/test/ntuple_qcd_200_300/batch/sge_320.sh new file mode 100755 index 00000000000..a919199d001 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_320.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=320 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_320.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_321.sh b/test/ntuple_qcd_200_300/batch/sge_321.sh new file mode 100755 index 00000000000..6174f8cb96f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_321.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=321 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_321.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_322.sh b/test/ntuple_qcd_200_300/batch/sge_322.sh new file mode 100755 index 00000000000..e764a7f2601 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_322.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=322 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_322.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_323.sh b/test/ntuple_qcd_200_300/batch/sge_323.sh new file mode 100755 index 00000000000..e5b61269b40 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_323.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=323 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_323.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_324.sh b/test/ntuple_qcd_200_300/batch/sge_324.sh new file mode 100755 index 00000000000..e61952d90bc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_324.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=324 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_324.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_325.sh b/test/ntuple_qcd_200_300/batch/sge_325.sh new file mode 100755 index 00000000000..f30082ea430 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_325.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=325 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_325.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_326.sh b/test/ntuple_qcd_200_300/batch/sge_326.sh new file mode 100755 index 00000000000..b0145a5db0b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_326.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=326 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_326.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_327.sh b/test/ntuple_qcd_200_300/batch/sge_327.sh new file mode 100755 index 00000000000..0f9cb9da349 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_327.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=327 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_327.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_328.sh b/test/ntuple_qcd_200_300/batch/sge_328.sh new file mode 100755 index 00000000000..781902a12d2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_328.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=328 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_328.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_329.sh b/test/ntuple_qcd_200_300/batch/sge_329.sh new file mode 100755 index 00000000000..4644d212ebb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_329.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=329 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_329.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_33.sh b/test/ntuple_qcd_200_300/batch/sge_33.sh new file mode 100755 index 00000000000..6a5986942b7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_330.sh b/test/ntuple_qcd_200_300/batch/sge_330.sh new file mode 100755 index 00000000000..542c6bf620b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_330.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=330 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_330.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_331.sh b/test/ntuple_qcd_200_300/batch/sge_331.sh new file mode 100755 index 00000000000..3817aa1fd34 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_331.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=331 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_331.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_332.sh b/test/ntuple_qcd_200_300/batch/sge_332.sh new file mode 100755 index 00000000000..881842279c1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_332.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=332 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_332.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_333.sh b/test/ntuple_qcd_200_300/batch/sge_333.sh new file mode 100755 index 00000000000..bf204494ba6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_333.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=333 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_333.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_334.sh b/test/ntuple_qcd_200_300/batch/sge_334.sh new file mode 100755 index 00000000000..11ef21e8954 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_334.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=334 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_334.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_335.sh b/test/ntuple_qcd_200_300/batch/sge_335.sh new file mode 100755 index 00000000000..fcc4f82d850 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_335.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=335 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_335.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_336.sh b/test/ntuple_qcd_200_300/batch/sge_336.sh new file mode 100755 index 00000000000..d79e02d2f26 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_336.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=336 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_336.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_337.sh b/test/ntuple_qcd_200_300/batch/sge_337.sh new file mode 100755 index 00000000000..1188ec5afbe --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_337.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=337 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_337.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_338.sh b/test/ntuple_qcd_200_300/batch/sge_338.sh new file mode 100755 index 00000000000..f2dc81e0252 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_338.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=338 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_338.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_339.sh b/test/ntuple_qcd_200_300/batch/sge_339.sh new file mode 100755 index 00000000000..3f69c02680f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_339.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=339 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_339.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_34.sh b/test/ntuple_qcd_200_300/batch/sge_34.sh new file mode 100755 index 00000000000..1ce5a6327a7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_340.sh b/test/ntuple_qcd_200_300/batch/sge_340.sh new file mode 100755 index 00000000000..71c495823f0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_340.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=340 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_340.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_341.sh b/test/ntuple_qcd_200_300/batch/sge_341.sh new file mode 100755 index 00000000000..2fb80727d52 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_341.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=341 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_341.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_342.sh b/test/ntuple_qcd_200_300/batch/sge_342.sh new file mode 100755 index 00000000000..5fb45630c3d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_342.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=342 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_342.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_343.sh b/test/ntuple_qcd_200_300/batch/sge_343.sh new file mode 100755 index 00000000000..2937ce02952 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_343.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=343 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_343.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_344.sh b/test/ntuple_qcd_200_300/batch/sge_344.sh new file mode 100755 index 00000000000..7e5ce456e85 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_344.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=344 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_344.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_345.sh b/test/ntuple_qcd_200_300/batch/sge_345.sh new file mode 100755 index 00000000000..e3c76cb79d2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_345.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=345 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_345.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_346.sh b/test/ntuple_qcd_200_300/batch/sge_346.sh new file mode 100755 index 00000000000..b57b4c2e581 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_346.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=346 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_346.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_347.sh b/test/ntuple_qcd_200_300/batch/sge_347.sh new file mode 100755 index 00000000000..54a72f037aa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_347.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=347 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_347.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_348.sh b/test/ntuple_qcd_200_300/batch/sge_348.sh new file mode 100755 index 00000000000..43ce1eabb34 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_348.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=348 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_348.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_349.sh b/test/ntuple_qcd_200_300/batch/sge_349.sh new file mode 100755 index 00000000000..e4f378d6981 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_349.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=349 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_349.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_35.sh b/test/ntuple_qcd_200_300/batch/sge_35.sh new file mode 100755 index 00000000000..66e1c90dc17 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_350.sh b/test/ntuple_qcd_200_300/batch/sge_350.sh new file mode 100755 index 00000000000..3b4ff092eee --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_350.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=350 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_350.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_351.sh b/test/ntuple_qcd_200_300/batch/sge_351.sh new file mode 100755 index 00000000000..8081b5004d9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_351.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=351 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_351.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_352.sh b/test/ntuple_qcd_200_300/batch/sge_352.sh new file mode 100755 index 00000000000..9a01de45c11 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_352.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=352 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_352.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_353.sh b/test/ntuple_qcd_200_300/batch/sge_353.sh new file mode 100755 index 00000000000..497dc892645 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_353.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=353 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_353.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_354.sh b/test/ntuple_qcd_200_300/batch/sge_354.sh new file mode 100755 index 00000000000..4bad89e4635 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_354.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=354 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_354.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_355.sh b/test/ntuple_qcd_200_300/batch/sge_355.sh new file mode 100755 index 00000000000..d919f131705 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_355.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=355 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_355.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_356.sh b/test/ntuple_qcd_200_300/batch/sge_356.sh new file mode 100755 index 00000000000..747bcc40264 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_356.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=356 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_356.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_357.sh b/test/ntuple_qcd_200_300/batch/sge_357.sh new file mode 100755 index 00000000000..7a397f2c02b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_357.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=357 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_357.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_358.sh b/test/ntuple_qcd_200_300/batch/sge_358.sh new file mode 100755 index 00000000000..cc69a41e5f5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_358.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=358 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_358.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_359.sh b/test/ntuple_qcd_200_300/batch/sge_359.sh new file mode 100755 index 00000000000..eb6b3de3e53 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_359.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=359 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_359.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_36.sh b/test/ntuple_qcd_200_300/batch/sge_36.sh new file mode 100755 index 00000000000..24963ad2fa3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_360.sh b/test/ntuple_qcd_200_300/batch/sge_360.sh new file mode 100755 index 00000000000..c418598107a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_360.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=360 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_360.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_361.sh b/test/ntuple_qcd_200_300/batch/sge_361.sh new file mode 100755 index 00000000000..5b3d3ac3ebe --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_361.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=361 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_361.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_362.sh b/test/ntuple_qcd_200_300/batch/sge_362.sh new file mode 100755 index 00000000000..9c65397cb9c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_362.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=362 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_362.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_363.sh b/test/ntuple_qcd_200_300/batch/sge_363.sh new file mode 100755 index 00000000000..62961bc6e44 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_363.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=363 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_363.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_364.sh b/test/ntuple_qcd_200_300/batch/sge_364.sh new file mode 100755 index 00000000000..ef0208cde1e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_364.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=364 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_364.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_365.sh b/test/ntuple_qcd_200_300/batch/sge_365.sh new file mode 100755 index 00000000000..86d92a8cc05 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_365.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=365 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_365.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_366.sh b/test/ntuple_qcd_200_300/batch/sge_366.sh new file mode 100755 index 00000000000..9f1398e0e01 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_366.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=366 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_366.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_367.sh b/test/ntuple_qcd_200_300/batch/sge_367.sh new file mode 100755 index 00000000000..3504dcaf862 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_367.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=367 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_367.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_368.sh b/test/ntuple_qcd_200_300/batch/sge_368.sh new file mode 100755 index 00000000000..c7615906bc7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_368.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=368 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_368.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_369.sh b/test/ntuple_qcd_200_300/batch/sge_369.sh new file mode 100755 index 00000000000..2d06b62c917 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_369.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=369 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_369.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_37.sh b/test/ntuple_qcd_200_300/batch/sge_37.sh new file mode 100755 index 00000000000..03a07af6043 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_370.sh b/test/ntuple_qcd_200_300/batch/sge_370.sh new file mode 100755 index 00000000000..bf65bf1bf54 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_370.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=370 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_370.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_371.sh b/test/ntuple_qcd_200_300/batch/sge_371.sh new file mode 100755 index 00000000000..37895a18643 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_371.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=371 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_371.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_372.sh b/test/ntuple_qcd_200_300/batch/sge_372.sh new file mode 100755 index 00000000000..fa6ae54d57a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_372.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=372 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_372.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_373.sh b/test/ntuple_qcd_200_300/batch/sge_373.sh new file mode 100755 index 00000000000..a367b24e85b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_373.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=373 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_373.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_374.sh b/test/ntuple_qcd_200_300/batch/sge_374.sh new file mode 100755 index 00000000000..0e351faa3c9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_374.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=374 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_374.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_375.sh b/test/ntuple_qcd_200_300/batch/sge_375.sh new file mode 100755 index 00000000000..35c8fd4d617 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_375.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=375 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_375.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_376.sh b/test/ntuple_qcd_200_300/batch/sge_376.sh new file mode 100755 index 00000000000..785aba247b0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_376.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=376 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_376.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_377.sh b/test/ntuple_qcd_200_300/batch/sge_377.sh new file mode 100755 index 00000000000..0c0f31c663d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_377.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=377 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_377.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_378.sh b/test/ntuple_qcd_200_300/batch/sge_378.sh new file mode 100755 index 00000000000..b9b280517bd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_378.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=378 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_378.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_379.sh b/test/ntuple_qcd_200_300/batch/sge_379.sh new file mode 100755 index 00000000000..195329a7c51 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_379.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=379 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_379.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_38.sh b/test/ntuple_qcd_200_300/batch/sge_38.sh new file mode 100755 index 00000000000..f9b42bdc443 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_380.sh b/test/ntuple_qcd_200_300/batch/sge_380.sh new file mode 100755 index 00000000000..ffe03cd3ca9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_380.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=380 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_380.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_381.sh b/test/ntuple_qcd_200_300/batch/sge_381.sh new file mode 100755 index 00000000000..6684c2f9579 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_381.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=381 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_381.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_382.sh b/test/ntuple_qcd_200_300/batch/sge_382.sh new file mode 100755 index 00000000000..c45940f4c5b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_382.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=382 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_382.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_383.sh b/test/ntuple_qcd_200_300/batch/sge_383.sh new file mode 100755 index 00000000000..d48353c23e5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_383.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=383 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_383.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_384.sh b/test/ntuple_qcd_200_300/batch/sge_384.sh new file mode 100755 index 00000000000..66eb85e5854 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_384.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=384 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_384.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_385.sh b/test/ntuple_qcd_200_300/batch/sge_385.sh new file mode 100755 index 00000000000..02073253d4e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_385.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=385 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_385.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_386.sh b/test/ntuple_qcd_200_300/batch/sge_386.sh new file mode 100755 index 00000000000..03af68cae5e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_386.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=386 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_386.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_387.sh b/test/ntuple_qcd_200_300/batch/sge_387.sh new file mode 100755 index 00000000000..edf2b4c2b3f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_387.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=387 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_387.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_388.sh b/test/ntuple_qcd_200_300/batch/sge_388.sh new file mode 100755 index 00000000000..d4d489676d6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_388.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=388 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_388.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_389.sh b/test/ntuple_qcd_200_300/batch/sge_389.sh new file mode 100755 index 00000000000..439743179db --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_389.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=389 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_389.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_39.sh b/test/ntuple_qcd_200_300/batch/sge_39.sh new file mode 100755 index 00000000000..91c22214cb1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_390.sh b/test/ntuple_qcd_200_300/batch/sge_390.sh new file mode 100755 index 00000000000..030c8dfdd1c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_390.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=390 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_390.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_391.sh b/test/ntuple_qcd_200_300/batch/sge_391.sh new file mode 100755 index 00000000000..9d00c9b5a42 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_391.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=391 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_391.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_392.sh b/test/ntuple_qcd_200_300/batch/sge_392.sh new file mode 100755 index 00000000000..5e256153033 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_392.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=392 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_392.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_393.sh b/test/ntuple_qcd_200_300/batch/sge_393.sh new file mode 100755 index 00000000000..2772126c1f8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_393.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=393 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_393.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_394.sh b/test/ntuple_qcd_200_300/batch/sge_394.sh new file mode 100755 index 00000000000..996459b08c2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_394.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=394 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_394.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_395.sh b/test/ntuple_qcd_200_300/batch/sge_395.sh new file mode 100755 index 00000000000..73d203dabaa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_395.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=395 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_395.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_396.sh b/test/ntuple_qcd_200_300/batch/sge_396.sh new file mode 100755 index 00000000000..090b6647e04 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_396.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=396 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_396.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_397.sh b/test/ntuple_qcd_200_300/batch/sge_397.sh new file mode 100755 index 00000000000..19b22f317bf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_397.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=397 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_397.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_398.sh b/test/ntuple_qcd_200_300/batch/sge_398.sh new file mode 100755 index 00000000000..8e23271bfe1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_398.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=398 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_398.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_399.sh b/test/ntuple_qcd_200_300/batch/sge_399.sh new file mode 100755 index 00000000000..acfcc9a4d15 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_399.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=399 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_399.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_4.sh b/test/ntuple_qcd_200_300/batch/sge_4.sh new file mode 100755 index 00000000000..bf597227681 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_40.sh b/test/ntuple_qcd_200_300/batch/sge_40.sh new file mode 100755 index 00000000000..513489fbb3b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_400.sh b/test/ntuple_qcd_200_300/batch/sge_400.sh new file mode 100755 index 00000000000..b8acf61c874 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_400.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=400 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_400.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_401.sh b/test/ntuple_qcd_200_300/batch/sge_401.sh new file mode 100755 index 00000000000..b00c6a6486a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_401.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=401 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_401.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_402.sh b/test/ntuple_qcd_200_300/batch/sge_402.sh new file mode 100755 index 00000000000..c3364976e3b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_402.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=402 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_402.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_403.sh b/test/ntuple_qcd_200_300/batch/sge_403.sh new file mode 100755 index 00000000000..ff108c580f3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_403.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=403 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_403.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_404.sh b/test/ntuple_qcd_200_300/batch/sge_404.sh new file mode 100755 index 00000000000..831e6e3e7ec --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_404.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=404 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_404.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_405.sh b/test/ntuple_qcd_200_300/batch/sge_405.sh new file mode 100755 index 00000000000..8fde1c02e3d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_405.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=405 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_405.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_406.sh b/test/ntuple_qcd_200_300/batch/sge_406.sh new file mode 100755 index 00000000000..c76635f71e1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_406.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=406 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_406.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_407.sh b/test/ntuple_qcd_200_300/batch/sge_407.sh new file mode 100755 index 00000000000..9248fc3ead4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_407.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=407 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_407.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_408.sh b/test/ntuple_qcd_200_300/batch/sge_408.sh new file mode 100755 index 00000000000..caa4d15d6bb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_408.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=408 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_408.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_409.sh b/test/ntuple_qcd_200_300/batch/sge_409.sh new file mode 100755 index 00000000000..8378eae4f52 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_409.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=409 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_409.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_41.sh b/test/ntuple_qcd_200_300/batch/sge_41.sh new file mode 100755 index 00000000000..1c91db7286a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_410.sh b/test/ntuple_qcd_200_300/batch/sge_410.sh new file mode 100755 index 00000000000..572d7e07fac --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_410.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=410 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_410.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_411.sh b/test/ntuple_qcd_200_300/batch/sge_411.sh new file mode 100755 index 00000000000..17b9cc81631 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_411.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=411 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_411.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_412.sh b/test/ntuple_qcd_200_300/batch/sge_412.sh new file mode 100755 index 00000000000..d05723d9db9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_412.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=412 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_412.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_413.sh b/test/ntuple_qcd_200_300/batch/sge_413.sh new file mode 100755 index 00000000000..0ba1c5d1930 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_413.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=413 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_413.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_414.sh b/test/ntuple_qcd_200_300/batch/sge_414.sh new file mode 100755 index 00000000000..a806164ba50 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_414.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=414 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_414.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_415.sh b/test/ntuple_qcd_200_300/batch/sge_415.sh new file mode 100755 index 00000000000..c08104586f1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_415.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=415 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_415.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_416.sh b/test/ntuple_qcd_200_300/batch/sge_416.sh new file mode 100755 index 00000000000..7e8b2517600 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_416.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=416 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_416.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_417.sh b/test/ntuple_qcd_200_300/batch/sge_417.sh new file mode 100755 index 00000000000..5e86486fd34 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_417.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=417 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_417.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_418.sh b/test/ntuple_qcd_200_300/batch/sge_418.sh new file mode 100755 index 00000000000..929b7f89ddf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_418.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=418 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_418.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_419.sh b/test/ntuple_qcd_200_300/batch/sge_419.sh new file mode 100755 index 00000000000..79b20ed2fd9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_419.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=419 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_419.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_42.sh b/test/ntuple_qcd_200_300/batch/sge_42.sh new file mode 100755 index 00000000000..9a16790931c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_420.sh b/test/ntuple_qcd_200_300/batch/sge_420.sh new file mode 100755 index 00000000000..462ef894ee8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_420.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=420 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_420.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_421.sh b/test/ntuple_qcd_200_300/batch/sge_421.sh new file mode 100755 index 00000000000..31385ab0928 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_421.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=421 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_421.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_422.sh b/test/ntuple_qcd_200_300/batch/sge_422.sh new file mode 100755 index 00000000000..354d7f63d69 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_422.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=422 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_422.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_423.sh b/test/ntuple_qcd_200_300/batch/sge_423.sh new file mode 100755 index 00000000000..5b4263b5ed2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_423.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=423 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_423.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_424.sh b/test/ntuple_qcd_200_300/batch/sge_424.sh new file mode 100755 index 00000000000..10b40d8c36d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_424.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=424 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_424.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_425.sh b/test/ntuple_qcd_200_300/batch/sge_425.sh new file mode 100755 index 00000000000..8e91148c469 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_425.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=425 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_425.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_426.sh b/test/ntuple_qcd_200_300/batch/sge_426.sh new file mode 100755 index 00000000000..c057527edb3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_426.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=426 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_426.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_427.sh b/test/ntuple_qcd_200_300/batch/sge_427.sh new file mode 100755 index 00000000000..4c9226abea7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_427.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=427 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_427.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_428.sh b/test/ntuple_qcd_200_300/batch/sge_428.sh new file mode 100755 index 00000000000..301779c3428 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_428.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=428 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_428.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_429.sh b/test/ntuple_qcd_200_300/batch/sge_429.sh new file mode 100755 index 00000000000..7e52534fc72 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_429.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=429 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_429.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_43.sh b/test/ntuple_qcd_200_300/batch/sge_43.sh new file mode 100755 index 00000000000..26d095467a8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_430.sh b/test/ntuple_qcd_200_300/batch/sge_430.sh new file mode 100755 index 00000000000..d6ea2e2147a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_430.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=430 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_430.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_431.sh b/test/ntuple_qcd_200_300/batch/sge_431.sh new file mode 100755 index 00000000000..ac5e4808b49 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_431.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=431 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_431.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_432.sh b/test/ntuple_qcd_200_300/batch/sge_432.sh new file mode 100755 index 00000000000..94c0127a3e9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_432.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=432 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_432.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_433.sh b/test/ntuple_qcd_200_300/batch/sge_433.sh new file mode 100755 index 00000000000..205bba29227 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_433.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=433 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_433.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_434.sh b/test/ntuple_qcd_200_300/batch/sge_434.sh new file mode 100755 index 00000000000..89808799a8c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_434.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=434 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_434.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_435.sh b/test/ntuple_qcd_200_300/batch/sge_435.sh new file mode 100755 index 00000000000..c4c91f659cf --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_435.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=435 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_435.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_436.sh b/test/ntuple_qcd_200_300/batch/sge_436.sh new file mode 100755 index 00000000000..d6f24f0ef90 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_436.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=436 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_436.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_437.sh b/test/ntuple_qcd_200_300/batch/sge_437.sh new file mode 100755 index 00000000000..59bffffc72b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_437.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=437 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_437.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_438.sh b/test/ntuple_qcd_200_300/batch/sge_438.sh new file mode 100755 index 00000000000..8379774dfe7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_438.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=438 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_438.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_439.sh b/test/ntuple_qcd_200_300/batch/sge_439.sh new file mode 100755 index 00000000000..f21622572c7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_439.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=439 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_439.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_44.sh b/test/ntuple_qcd_200_300/batch/sge_44.sh new file mode 100755 index 00000000000..e3f14c993cb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_440.sh b/test/ntuple_qcd_200_300/batch/sge_440.sh new file mode 100755 index 00000000000..b2fd9e2ce46 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_440.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=440 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_440.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_441.sh b/test/ntuple_qcd_200_300/batch/sge_441.sh new file mode 100755 index 00000000000..ed097a2e5cb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_441.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=441 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_441.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_442.sh b/test/ntuple_qcd_200_300/batch/sge_442.sh new file mode 100755 index 00000000000..b002ffa7916 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_442.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=442 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_442.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_443.sh b/test/ntuple_qcd_200_300/batch/sge_443.sh new file mode 100755 index 00000000000..b9054785b89 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_443.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=443 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_443.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_444.sh b/test/ntuple_qcd_200_300/batch/sge_444.sh new file mode 100755 index 00000000000..a2a1d9e10de --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_444.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=444 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_444.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_445.sh b/test/ntuple_qcd_200_300/batch/sge_445.sh new file mode 100755 index 00000000000..2a32365da0a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_445.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=445 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_445.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_446.sh b/test/ntuple_qcd_200_300/batch/sge_446.sh new file mode 100755 index 00000000000..282f44f7383 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_446.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=446 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_446.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_447.sh b/test/ntuple_qcd_200_300/batch/sge_447.sh new file mode 100755 index 00000000000..9fb065f95a5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_447.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=447 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_447.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_448.sh b/test/ntuple_qcd_200_300/batch/sge_448.sh new file mode 100755 index 00000000000..1a429bd85ae --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_448.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=448 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_448.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_449.sh b/test/ntuple_qcd_200_300/batch/sge_449.sh new file mode 100755 index 00000000000..63859d8cd58 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_449.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=449 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_449.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_45.sh b/test/ntuple_qcd_200_300/batch/sge_45.sh new file mode 100755 index 00000000000..e576d24dac4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_450.sh b/test/ntuple_qcd_200_300/batch/sge_450.sh new file mode 100755 index 00000000000..c8856f34936 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_450.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=450 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_450.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_451.sh b/test/ntuple_qcd_200_300/batch/sge_451.sh new file mode 100755 index 00000000000..6ef317ed29b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_451.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=451 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_451.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_452.sh b/test/ntuple_qcd_200_300/batch/sge_452.sh new file mode 100755 index 00000000000..a64c4a08295 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_452.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=452 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_452.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_453.sh b/test/ntuple_qcd_200_300/batch/sge_453.sh new file mode 100755 index 00000000000..30d81929b17 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_453.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=453 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_453.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_454.sh b/test/ntuple_qcd_200_300/batch/sge_454.sh new file mode 100755 index 00000000000..0e405f67315 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_454.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=454 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_454.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_455.sh b/test/ntuple_qcd_200_300/batch/sge_455.sh new file mode 100755 index 00000000000..936a937b445 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_455.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=455 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_455.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_456.sh b/test/ntuple_qcd_200_300/batch/sge_456.sh new file mode 100755 index 00000000000..673e19d45f0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_456.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=456 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_456.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_457.sh b/test/ntuple_qcd_200_300/batch/sge_457.sh new file mode 100755 index 00000000000..81e240bf533 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_457.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=457 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_457.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_458.sh b/test/ntuple_qcd_200_300/batch/sge_458.sh new file mode 100755 index 00000000000..399de1919d2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_458.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=458 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_458.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_459.sh b/test/ntuple_qcd_200_300/batch/sge_459.sh new file mode 100755 index 00000000000..4d835e2b243 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_459.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=459 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_459.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_46.sh b/test/ntuple_qcd_200_300/batch/sge_46.sh new file mode 100755 index 00000000000..6e3845d5102 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_460.sh b/test/ntuple_qcd_200_300/batch/sge_460.sh new file mode 100755 index 00000000000..7f969803300 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_460.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=460 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_460.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_461.sh b/test/ntuple_qcd_200_300/batch/sge_461.sh new file mode 100755 index 00000000000..13881489fa1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_461.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=461 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_461.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_462.sh b/test/ntuple_qcd_200_300/batch/sge_462.sh new file mode 100755 index 00000000000..9f0791c5471 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_462.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=462 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_462.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_463.sh b/test/ntuple_qcd_200_300/batch/sge_463.sh new file mode 100755 index 00000000000..e7d4a6ceb8b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_463.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=463 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_463.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_464.sh b/test/ntuple_qcd_200_300/batch/sge_464.sh new file mode 100755 index 00000000000..98028ec02ef --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_464.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=464 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_464.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_465.sh b/test/ntuple_qcd_200_300/batch/sge_465.sh new file mode 100755 index 00000000000..9c350228c78 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_465.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=465 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_465.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_466.sh b/test/ntuple_qcd_200_300/batch/sge_466.sh new file mode 100755 index 00000000000..822662dceb7 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_466.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=466 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_466.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_467.sh b/test/ntuple_qcd_200_300/batch/sge_467.sh new file mode 100755 index 00000000000..a59f552d68c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_467.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=467 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_467.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_468.sh b/test/ntuple_qcd_200_300/batch/sge_468.sh new file mode 100755 index 00000000000..15c56b77c2e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_468.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=468 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_468.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_469.sh b/test/ntuple_qcd_200_300/batch/sge_469.sh new file mode 100755 index 00000000000..4fcf675a876 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_469.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=469 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_469.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_47.sh b/test/ntuple_qcd_200_300/batch/sge_47.sh new file mode 100755 index 00000000000..f1803b7c908 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_470.sh b/test/ntuple_qcd_200_300/batch/sge_470.sh new file mode 100755 index 00000000000..1682ae34336 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_470.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=470 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_470.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_471.sh b/test/ntuple_qcd_200_300/batch/sge_471.sh new file mode 100755 index 00000000000..0f622652a0a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_471.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=471 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_471.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_472.sh b/test/ntuple_qcd_200_300/batch/sge_472.sh new file mode 100755 index 00000000000..c4c2e770752 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_472.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=472 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_472.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_473.sh b/test/ntuple_qcd_200_300/batch/sge_473.sh new file mode 100755 index 00000000000..5b158c64400 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_473.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=473 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_473.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_474.sh b/test/ntuple_qcd_200_300/batch/sge_474.sh new file mode 100755 index 00000000000..3e76b4263df --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_474.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=474 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_474.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_475.sh b/test/ntuple_qcd_200_300/batch/sge_475.sh new file mode 100755 index 00000000000..42bc042f285 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_475.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=475 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_475.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_476.sh b/test/ntuple_qcd_200_300/batch/sge_476.sh new file mode 100755 index 00000000000..8c0fc24d6b0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_476.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=476 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_476.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_477.sh b/test/ntuple_qcd_200_300/batch/sge_477.sh new file mode 100755 index 00000000000..3b7b862923e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_477.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=477 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_477.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_478.sh b/test/ntuple_qcd_200_300/batch/sge_478.sh new file mode 100755 index 00000000000..419e4bdca97 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_478.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=478 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_478.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_479.sh b/test/ntuple_qcd_200_300/batch/sge_479.sh new file mode 100755 index 00000000000..1fc25a1f21b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_479.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=479 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_479.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_48.sh b/test/ntuple_qcd_200_300/batch/sge_48.sh new file mode 100755 index 00000000000..70884b68cef --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_480.sh b/test/ntuple_qcd_200_300/batch/sge_480.sh new file mode 100755 index 00000000000..a63f3b7a937 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_480.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=480 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_480.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_481.sh b/test/ntuple_qcd_200_300/batch/sge_481.sh new file mode 100755 index 00000000000..07797736e22 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_481.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=481 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_481.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_482.sh b/test/ntuple_qcd_200_300/batch/sge_482.sh new file mode 100755 index 00000000000..b89556c8e6b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_482.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=482 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_482.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_483.sh b/test/ntuple_qcd_200_300/batch/sge_483.sh new file mode 100755 index 00000000000..55e4f978ced --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_483.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=483 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_483.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_484.sh b/test/ntuple_qcd_200_300/batch/sge_484.sh new file mode 100755 index 00000000000..aee8d0681e5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_484.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=484 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_484.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_485.sh b/test/ntuple_qcd_200_300/batch/sge_485.sh new file mode 100755 index 00000000000..dc30397749f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_485.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=485 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_485.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_486.sh b/test/ntuple_qcd_200_300/batch/sge_486.sh new file mode 100755 index 00000000000..97451ed7030 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_486.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=486 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_486.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_487.sh b/test/ntuple_qcd_200_300/batch/sge_487.sh new file mode 100755 index 00000000000..59c0db41e89 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_487.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=487 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_487.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_488.sh b/test/ntuple_qcd_200_300/batch/sge_488.sh new file mode 100755 index 00000000000..8536348a636 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_488.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=488 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_488.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_489.sh b/test/ntuple_qcd_200_300/batch/sge_489.sh new file mode 100755 index 00000000000..345671c728c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_489.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=489 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_489.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_49.sh b/test/ntuple_qcd_200_300/batch/sge_49.sh new file mode 100755 index 00000000000..98f4725458d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_490.sh b/test/ntuple_qcd_200_300/batch/sge_490.sh new file mode 100755 index 00000000000..6ba0633070b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_490.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=490 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_490.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_491.sh b/test/ntuple_qcd_200_300/batch/sge_491.sh new file mode 100755 index 00000000000..51377658377 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_491.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=491 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_491.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_492.sh b/test/ntuple_qcd_200_300/batch/sge_492.sh new file mode 100755 index 00000000000..b873954f69b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_492.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=492 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_492.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_493.sh b/test/ntuple_qcd_200_300/batch/sge_493.sh new file mode 100755 index 00000000000..4fb7a3dbd26 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_493.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=493 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_493.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_494.sh b/test/ntuple_qcd_200_300/batch/sge_494.sh new file mode 100755 index 00000000000..415e1fe7904 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_494.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=494 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_494.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_495.sh b/test/ntuple_qcd_200_300/batch/sge_495.sh new file mode 100755 index 00000000000..4a4499c2fa1 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_495.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=495 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_495.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_496.sh b/test/ntuple_qcd_200_300/batch/sge_496.sh new file mode 100755 index 00000000000..c70f82f07e3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_496.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=496 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_496.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_497.sh b/test/ntuple_qcd_200_300/batch/sge_497.sh new file mode 100755 index 00000000000..c45fa556c1d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_497.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=497 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_497.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_498.sh b/test/ntuple_qcd_200_300/batch/sge_498.sh new file mode 100755 index 00000000000..b8f2af3b713 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_498.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=498 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_498.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_499.sh b/test/ntuple_qcd_200_300/batch/sge_499.sh new file mode 100755 index 00000000000..e58a3e48462 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_499.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=499 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_499.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_5.sh b/test/ntuple_qcd_200_300/batch/sge_5.sh new file mode 100755 index 00000000000..2ee4533b491 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_50.sh b/test/ntuple_qcd_200_300/batch/sge_50.sh new file mode 100755 index 00000000000..c9c5a7af691 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_51.sh b/test/ntuple_qcd_200_300/batch/sge_51.sh new file mode 100755 index 00000000000..9fbf13406f9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_52.sh b/test/ntuple_qcd_200_300/batch/sge_52.sh new file mode 100755 index 00000000000..af28e44cc7c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_53.sh b/test/ntuple_qcd_200_300/batch/sge_53.sh new file mode 100755 index 00000000000..d1f3f3993f2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_54.sh b/test/ntuple_qcd_200_300/batch/sge_54.sh new file mode 100755 index 00000000000..28529268039 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_55.sh b/test/ntuple_qcd_200_300/batch/sge_55.sh new file mode 100755 index 00000000000..d3606bac626 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_56.sh b/test/ntuple_qcd_200_300/batch/sge_56.sh new file mode 100755 index 00000000000..0765fbe546a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_57.sh b/test/ntuple_qcd_200_300/batch/sge_57.sh new file mode 100755 index 00000000000..0a6e53efd5d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_58.sh b/test/ntuple_qcd_200_300/batch/sge_58.sh new file mode 100755 index 00000000000..84f3388726d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_59.sh b/test/ntuple_qcd_200_300/batch/sge_59.sh new file mode 100755 index 00000000000..415f4cac991 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_6.sh b/test/ntuple_qcd_200_300/batch/sge_6.sh new file mode 100755 index 00000000000..bb33cdd0ebd --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_60.sh b/test/ntuple_qcd_200_300/batch/sge_60.sh new file mode 100755 index 00000000000..adffd9f3bb4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_61.sh b/test/ntuple_qcd_200_300/batch/sge_61.sh new file mode 100755 index 00000000000..ad6b983060a --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_62.sh b/test/ntuple_qcd_200_300/batch/sge_62.sh new file mode 100755 index 00000000000..df9b9d3fe31 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_63.sh b/test/ntuple_qcd_200_300/batch/sge_63.sh new file mode 100755 index 00000000000..e1e48c8d529 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_64.sh b/test/ntuple_qcd_200_300/batch/sge_64.sh new file mode 100755 index 00000000000..8a92bf4c31f --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_65.sh b/test/ntuple_qcd_200_300/batch/sge_65.sh new file mode 100755 index 00000000000..eefdd4bdac5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_66.sh b/test/ntuple_qcd_200_300/batch/sge_66.sh new file mode 100755 index 00000000000..423352ffca6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_67.sh b/test/ntuple_qcd_200_300/batch/sge_67.sh new file mode 100755 index 00000000000..63dfbf87ff3 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_68.sh b/test/ntuple_qcd_200_300/batch/sge_68.sh new file mode 100755 index 00000000000..dc283b73df6 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_69.sh b/test/ntuple_qcd_200_300/batch/sge_69.sh new file mode 100755 index 00000000000..f7770f93533 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_7.sh b/test/ntuple_qcd_200_300/batch/sge_7.sh new file mode 100755 index 00000000000..aea510af2c0 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_70.sh b/test/ntuple_qcd_200_300/batch/sge_70.sh new file mode 100755 index 00000000000..4d93b3d5635 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_71.sh b/test/ntuple_qcd_200_300/batch/sge_71.sh new file mode 100755 index 00000000000..ac0a9fb58fa --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_72.sh b/test/ntuple_qcd_200_300/batch/sge_72.sh new file mode 100755 index 00000000000..b659f7c7a2d --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_73.sh b/test/ntuple_qcd_200_300/batch/sge_73.sh new file mode 100755 index 00000000000..cc9165d4a45 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_74.sh b/test/ntuple_qcd_200_300/batch/sge_74.sh new file mode 100755 index 00000000000..6ad84a5e2cc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_75.sh b/test/ntuple_qcd_200_300/batch/sge_75.sh new file mode 100755 index 00000000000..eed7d55ff99 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_76.sh b/test/ntuple_qcd_200_300/batch/sge_76.sh new file mode 100755 index 00000000000..9618bf88306 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_77.sh b/test/ntuple_qcd_200_300/batch/sge_77.sh new file mode 100755 index 00000000000..023f3a309c4 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_78.sh b/test/ntuple_qcd_200_300/batch/sge_78.sh new file mode 100755 index 00000000000..723ab787eca --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_79.sh b/test/ntuple_qcd_200_300/batch/sge_79.sh new file mode 100755 index 00000000000..31976ea53ab --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_8.sh b/test/ntuple_qcd_200_300/batch/sge_8.sh new file mode 100755 index 00000000000..cf7062d8449 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_80.sh b/test/ntuple_qcd_200_300/batch/sge_80.sh new file mode 100755 index 00000000000..1ef4db130c9 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_81.sh b/test/ntuple_qcd_200_300/batch/sge_81.sh new file mode 100755 index 00000000000..1d953f1abb8 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_82.sh b/test/ntuple_qcd_200_300/batch/sge_82.sh new file mode 100755 index 00000000000..f39674aa308 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_83.sh b/test/ntuple_qcd_200_300/batch/sge_83.sh new file mode 100755 index 00000000000..d54938cfa01 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_84.sh b/test/ntuple_qcd_200_300/batch/sge_84.sh new file mode 100755 index 00000000000..3d5381638f2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_85.sh b/test/ntuple_qcd_200_300/batch/sge_85.sh new file mode 100755 index 00000000000..9fb10cb118c --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_86.sh b/test/ntuple_qcd_200_300/batch/sge_86.sh new file mode 100755 index 00000000000..2d9f646f1bb --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_87.sh b/test/ntuple_qcd_200_300/batch/sge_87.sh new file mode 100755 index 00000000000..59e9375280b --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_88.sh b/test/ntuple_qcd_200_300/batch/sge_88.sh new file mode 100755 index 00000000000..7e1a8a2d548 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_89.sh b/test/ntuple_qcd_200_300/batch/sge_89.sh new file mode 100755 index 00000000000..84194143741 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_9.sh b/test/ntuple_qcd_200_300/batch/sge_9.sh new file mode 100755 index 00000000000..8521187245e --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_90.sh b/test/ntuple_qcd_200_300/batch/sge_90.sh new file mode 100755 index 00000000000..b62083b1042 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_91.sh b/test/ntuple_qcd_200_300/batch/sge_91.sh new file mode 100755 index 00000000000..0c91cd08119 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_92.sh b/test/ntuple_qcd_200_300/batch/sge_92.sh new file mode 100755 index 00000000000..5f47cc5ba91 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_93.sh b/test/ntuple_qcd_200_300/batch/sge_93.sh new file mode 100755 index 00000000000..e57b8ec51ae --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_94.sh b/test/ntuple_qcd_200_300/batch/sge_94.sh new file mode 100755 index 00000000000..6b7bf4807c2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_95.sh b/test/ntuple_qcd_200_300/batch/sge_95.sh new file mode 100755 index 00000000000..2970e4b9eb5 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_96.sh b/test/ntuple_qcd_200_300/batch/sge_96.sh new file mode 100755 index 00000000000..c35ff988bf2 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_97.sh b/test/ntuple_qcd_200_300/batch/sge_97.sh new file mode 100755 index 00000000000..688883c4392 --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_98.sh b/test/ntuple_qcd_200_300/batch/sge_98.sh new file mode 100755 index 00000000000..a87160ca8cc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_99.sh b/test/ntuple_qcd_200_300/batch/sge_99.sh new file mode 100755 index 00000000000..d03541c9cbc --- /dev/null +++ b/test/ntuple_qcd_200_300/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batchscript.sh b/test/ntuple_qcd_200_300/batchscript.sh new file mode 100755 index 00000000000..47cd8c09a57 --- /dev/null +++ b/test/ntuple_qcd_200_300/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_200_300" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/condor.sub b/test/ntuple_qcd_200_300/condor.sub new file mode 100644 index 00000000000..6956dc0145d --- /dev/null +++ b/test/ntuple_qcd_200_300/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 500 + \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/helper b/test/ntuple_qcd_200_300/helper new file mode 120000 index 00000000000..75412861dd9 --- /dev/null +++ b/test/ntuple_qcd_200_300/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_200_300/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/output b/test/ntuple_qcd_200_300/output new file mode 120000 index 00000000000..af529d9e9b8 --- /dev/null +++ b/test/ntuple_qcd_200_300/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/sge_sub.sh b/test/ntuple_qcd_200_300/sge_sub.sh new file mode 100755 index 00000000000..d500c775a98 --- /dev/null +++ b/test/ntuple_qcd_200_300/sge_sub.sh @@ -0,0 +1,500 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_182.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_183.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_184.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_185.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_186.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_187.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_188.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_189.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_190.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_191.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_192.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_193.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_194.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_195.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_196.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_197.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_198.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_199.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_200.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_201.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_202.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_203.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_204.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_205.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_206.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_207.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_208.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_209.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_210.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_211.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_212.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_213.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_214.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_215.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_216.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_217.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_218.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_219.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_220.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_221.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_222.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_223.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_224.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_225.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_226.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_227.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_228.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_229.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_230.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_231.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_232.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_233.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_234.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_235.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_236.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_237.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_238.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_239.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_240.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_241.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_242.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_243.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_244.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_245.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_246.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_247.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_248.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_249.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_250.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_251.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_252.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_253.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_254.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_255.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_256.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_257.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_258.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_259.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_260.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_261.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_262.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_263.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_264.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_265.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_266.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_267.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_268.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_269.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_270.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_271.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_272.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_273.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_274.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_275.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_276.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_277.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_278.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_279.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_280.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_281.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_282.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_283.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_284.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_285.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_286.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_287.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_288.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_289.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_290.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_291.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_292.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_293.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_294.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_295.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_296.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_297.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_298.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_299.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_300.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_301.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_302.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_303.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_304.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_305.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_306.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_307.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_308.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_309.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_310.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_311.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_312.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_313.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_314.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_315.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_316.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_317.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_318.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_319.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_320.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_321.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_322.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_323.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_324.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_325.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_326.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_327.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_328.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_329.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_330.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_331.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_332.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_333.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_334.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_335.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_336.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_337.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_338.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_339.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_340.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_341.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_342.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_343.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_344.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_345.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_346.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_347.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_348.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_349.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_350.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_351.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_352.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_353.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_354.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_355.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_356.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_357.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_358.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_359.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_360.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_361.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_362.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_363.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_364.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_365.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_366.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_367.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_368.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_369.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_370.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_371.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_372.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_373.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_374.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_375.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_376.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_377.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_378.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_379.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_380.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_381.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_382.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_383.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_384.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_385.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_386.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_387.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_388.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_389.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_390.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_391.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_392.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_393.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_394.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_395.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_396.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_397.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_398.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_399.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_400.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_401.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_402.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_403.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_404.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_405.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_406.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_407.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_408.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_409.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_410.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_411.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_412.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_413.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_414.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_415.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_416.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_417.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_418.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_419.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_420.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_421.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_422.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_423.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_424.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_425.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_426.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_427.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_428.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_429.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_430.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_431.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_432.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_433.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_434.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_435.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_436.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_437.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_438.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_439.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_440.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_441.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_442.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_443.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_444.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_445.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_446.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_447.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_448.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_449.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_450.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_451.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_452.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_453.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_454.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_455.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_456.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_457.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_458.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_459.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_460.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_461.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_462.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_463.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_464.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_465.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_466.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_467.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_468.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_469.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_470.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_471.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_472.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_473.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_474.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_475.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_476.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_477.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_478.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_479.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_480.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_481.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_482.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_483.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_484.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_485.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_486.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_487.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_488.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_489.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_490.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_491.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_492.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_493.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_494.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_495.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_496.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_497.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_498.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_499.sh diff --git a/test/ntuple_qcd_300_500/ademoor.cc b/test/ntuple_qcd_300_500/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..f50ccd487bc12d8ae9a71f4b1e48b4a02fa70607 GIT binary patch literal 5609 zcmai%WmJ@Hx5pW}WQLBRL!?JQ5b2WcP^4Rgp+RcsZV>4j8e!;=4yC(Oq(da6V~~UA zJnwVfSnHg<*7afk_ukjO*8TtTyD`vF{siE!gC#Aismd)a|BzytT3A9I9Gw5(D(XYW zpYu<%n6}PluGX&qERsJYpzmZ=CII1H1}~}wwd{sznS@-fSILyuh}~o3X1yL zL)+hh<6;_!;{XZ7vCTz81z^B&!2j5hM-8F+qoKlyA%x(+*8N@055y6An0of7g9!d- zG%pZ`6+IA#Y16~LY;NWr?Aj+$_Eol?e>!owU4l-dyJcJHMy%Ah$du&Or~cZk8~aH4 zK0QP{Ex%7ANz{iU^^E$K81K{g$G8VgJboL4$OL9B52|3uXQz|tU8E71aqsZG(BirD z3YFpd$D>$orNO|H9zZ%G3#ZA5cRehqwW0;h|AM8;IUT6!8p=^6fUElQO`6QwwOCx8XuCC45-$VPk0bjLCgY^L>LR6Ce zunyb53*8tI1{5ulFt1?qi^l?j8nU^!Vjq89mBR`2#SzVaj0ug zO>lyzLR`PBu(hodp38xbJ+P4dbCERq zdD?S^AD2UgiUhn@fP02Fgv_wIX2aj@S%f4{YjVw8H;t1&z#H*6Ezi3Jj_GDNytAOn zGD?#Lz zsS32F9VagDgc(voT*+$VthWe*MB9v1dW6Mf%kE%GkdU8pN~6(Z=Am$I%4%_Eu+8jG z!GH*@Zxy4Wqg~nW83JmShW37^QoqbM}Qln`=5-t?FLzGb5N# zpFAomSkApCoQp*@z$M}D1$K0yp`}>IiWwq}Ig)Kubns(#PM$UwoRrI%O-S-a^wtzC zv}oESytJ!5i?373Y{l9_{60$pg?el{pgaaWbJW?k+fTjVM3JJ=dDoBM-05C;#1au` zz*p|3bw~3FialYNE<;#)QcQiy1nu0>e~es(LeM?lrrP=K`(O})f1kz`n^qsI+e8a^ zyl%I377KH$Ln1#-?@itkXJo!-T(#}jJOzy5ngo@;v6_N<2KVT{5C}XSvZU}?`%s8^ zuI%b{aHta=Go8|b#+1Kr3~5s^FmyZ{dRKr=?>>*WSJd0k!97``4|)zD1s@zsjDeS_ zGUX_3qZ+N-^mkYYgd^CAX{cckJSL4Eb9+WGa=cD89gf=RsPCqT({QqH8VDRfS!!9{zCJ~l;q7HIER7RTdu^O<;YVH<8B5qU81(T8~- z#n7p`zFI0p_fBxewrd+|??|xNnz|W80JoJ7_tTNzAss%5dfjXIu%7*@sx#YX{OUGe z@#22;QKZJ#IJXhx#MejylXC2TL1aYB!5`7R2WtD+*f;K()yiVc;7G6 z9c2!Z33w0HRp_rDWWG(~^0nQpJwqiUDy$l_!NV>sBt{qP7{xvo%Z~aoN-ahTHdft1 zWM7kq=QJkumayv&#s|52rKs?d*KSPIkXUI88o#XUMy03AuAn=nn%UqAwWHI4uJ&oQTJ%bYQ$~{Wct1i`|@` zk<-JOnCi^}DRerk zFScBYW;2mSg6-si94T>P~ItTAENl#=W-A*=Xe5p=5O-dVe)%##fv@_ zWJgnq0S~Z^9d35~vBYDSGzL(7YuiGb+XQ1c1%16OMMSjUKn*~#rIGk$i#?dK^pwfF z2Hrmed(R;oHz)!mTLVU(g6T5i1#*qkF-z8kYSvio!bu&r=zwb6?en9c)gWtr&G>g& zB3Zfy&6@Kw7Zs2CTGNXYlv{;23Zsv_Wji!qImOes*?cFo&p*rW6+Ag$9*PWEPky0x z6q$vxH&u0TPb4qIOWMJsp>mqEsiZIo0=~OdanOi5=&m!wABE(Z%NRaJ>!UYlSdXG2 z8m7wVuII>;7yOI9{%<1u)AVo5hh}Q!@}OdwTRPiwo4-XNdPwLss|CP`&-&o7dClOcpbA^+D(n@ImzCrW zn$zh&td@!Tq^Ao==#Mf2aPcd9?_Ra=tFY)k?=^D(_xM-Cl^(h_V-L(l&t9bT1*x-N z1KO0ifE=#cw{{gbUP=UlVRt4tRaxtXxyKVVyg!0px8pDu!tUp<$qZccYblwW681+o z$^Ya<5j0w~U9?ElwcU6u7B6G!m6`IITFZif(fNlEL1x zb>aRO%l2CfPMw*`)jRvgw-Odj7)TJGo1}Sy&L}en$fG^AfBcVSDgVUm|6&zrU`~lsCukt!5rU^oHf=8=y zFYvg%t&dlSSFHRhi_%|J+BnIDMpksT@b;xi>WOuN$U$O*prvWX0l;$2zHh+n2Pv9M zcTx_y>C*oA1+W~Dsd1R+!lQ2|?oPB>hD6EPT8YvI`kH0|7g3PG!Cg8Mvnex_MKO^GNx;6Yk^Qx;d(y1+tzWGd;*?FNLaaC_#HuI(wP;*nz6K!3-f&B z%XXPZx)UMR`@P<>JDnl(M$eQ@o`!ubZWU4a8BX2D&f}i@9>00cR6DPbW^xWU(aACN$~a=xb=Ls*}9+JwWU>96m>M* z-;DNQxcZK|rG9G%Q!La=&^QAC=j5X48YXhcdMZD5Ck;@_YOy1hRbPdcy5r;#1kx1o zkX7QbjDxgnEY+>4{rW%oA%5yq5J_29Sgv{Gbe$G;ef83X{+gl44RP;VM?^ZjQ=1_|S*R}@t6}Nmk6wPssO zmo>g1{v$1#V!$0q9Fds8=z0kmQWi}mU>uFBqXxAO$&V7@+)&|WXlggas$6ril!W*p3)AxTzCnY?>GixRod1Nmt@EpC>2hU7Kp z6#3s@Gm8#P=jzP+?;wt{C9M@puf=nF)Cw|_HyG#UTB0&l#@k}+nD@1_nC)r7eEt?f z+XJdiu$lK1z-9x?tCO zhTCk4V2_}iPZ+k!W`_TO@<|SsXZCtf>NGV?zW@GZEWcVR`7t(@OXsaLj<-m6UrMIa zJx(o|h;!-TlVSoZs9y&|xRso$&<$HNCp`+^0=qkt?ys#Z>X2a2DvP(Dp_o*Qe6hY} zeHZ46%T(F-yP<*36y0yK?%j$^LK2)x=bSFmSb?9@@QvKC?^(sfz&#}5pJR}Hw9S2I zC+Y)Uy&g~6ImV}?`+Y<`e=Xo!s#6X~?CH)nfIIF!{ddhh>H_DAe%^a1#{MuN4Ai`Sh|$@(n{j{_4%YG(@5 zDnqT%Pa;TSFd^TY*oB92zlS|fk%*J%eZw|=UDE_K0X?-;QDSlmhLU~bju4DBWJMLD zG8uFm_s@(YPy0o^^ezvehnl>$8bp}qVsa3#%7rcx4|}u|rrX^~tR%TgiXk7qTz+Z1 z1Vv#p6(QE4VAFgQDpjWgS*YnT;tJTs$mV?dO9WLq;ec9+lQNs6&+>kN49n%qmF0|^ zk@+aySl5QtIvk+sg0liT&DFyKL zO9TGUl1MW3NlX3^Y0^Fa(~%A%M_%Z8OA*s;hp+0IkXNrVy-e~Z_Yh@~w1C?XK#VHl zM(Nrh^n4A9cTLC$b0oiJ+KPW!Eo7%A3+S%aFgi_O)qMpdi=bTwB4@(+cSFbhacDk? zw7@E<#n;qx1x>Ems$Lc;>2lTnlDR{>Pwt-_cX({~@PnT-$`DT|=0K>;kX)f`l{=Yz zpVcwA;F}NQn+fyekwDTHt@EN0sk;w?d;yE+M=|IwZ0!a1vI8aWH#=U&d``rvdvjl= zhI@GIb6s=aah8tJgQo)@Y-ukdXcT)hZ?@WYdj&JBB0e#0O_!Fh0rb0Q@`|}J%22}d zh}9Z%Nv^0}>?oB3KAa`lXjtQjsQnCSEq|-&Enw15m<@e7OIY#krd5;Kv`7NzEr8jL zJ#?YXeU`Q$xSqFeVk4Ce>IUiIRvX5JZ9kV|>4iV+xbk;hVe&zBHlr zNaD8GAL^3dh%gZnLXSPv=S9Yi8#Mpmp^v3a9Le@1aLGu;AiF?KC1W!d+)3C<{Dqm~ z7!k}3O}h*`JoSC zd+(z7YNI|Dl`b+`Yi`nAYlPrBlFu(-L>E6G>LU z=y^#*Mq=f3WQEZFFow_mwP%qR)-J=~CT_AytZOrKB1>acYpBAi!06=+>{f "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_300_500" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/condor.sub b/test/ntuple_qcd_300_500/condor.sub new file mode 100644 index 00000000000..11623b0127a --- /dev/null +++ b/test/ntuple_qcd_300_500/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT300to500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_300_500/output/ntuple_qcd_300_500_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 500 + \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/helper b/test/ntuple_qcd_300_500/helper new file mode 120000 index 00000000000..56900fd2962 --- /dev/null +++ b/test/ntuple_qcd_300_500/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_300_500/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/output b/test/ntuple_qcd_300_500/output new file mode 120000 index 00000000000..bf8293fa9cf --- /dev/null +++ b/test/ntuple_qcd_300_500/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_300_500/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/sge_sub.sh b/test/ntuple_qcd_300_500/sge_sub.sh new file mode 100755 index 00000000000..d010e1c3ba2 --- /dev/null +++ b/test/ntuple_qcd_300_500/sge_sub.sh @@ -0,0 +1,500 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_182.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_183.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_184.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_185.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_186.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_187.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_188.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_189.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_190.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_191.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_192.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_193.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_194.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_195.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_196.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_197.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_198.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_199.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_200.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_201.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_202.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_203.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_204.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_205.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_206.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_207.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_208.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_209.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_210.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_211.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_212.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_213.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_214.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_215.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_216.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_217.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_218.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_219.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_220.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_221.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_222.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_223.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_224.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_225.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_226.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_227.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_228.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_229.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_230.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_231.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_232.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_233.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_234.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_235.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_236.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_237.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_238.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_239.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_240.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_241.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_242.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_243.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_244.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_245.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_246.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_247.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_248.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_249.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_250.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_251.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_252.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_253.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_254.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_255.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_256.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_257.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_258.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_259.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_260.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_261.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_262.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_263.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_264.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_265.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_266.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_267.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_268.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_269.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_270.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_271.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_272.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_273.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_274.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_275.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_276.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_277.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_278.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_279.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_280.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_281.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_282.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_283.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_284.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_285.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_286.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_287.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_288.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_289.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_290.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_291.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_292.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_293.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_294.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_295.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_296.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_297.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_298.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_299.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_300.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_301.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_302.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_303.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_304.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_305.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_306.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_307.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_308.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_309.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_310.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_311.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_312.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_313.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_314.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_315.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_316.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_317.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_318.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_319.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_320.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_321.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_322.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_323.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_324.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_325.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_326.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_327.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_328.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_329.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_330.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_331.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_332.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_333.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_334.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_335.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_336.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_337.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_338.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_339.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_340.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_341.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_342.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_343.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_344.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_345.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_346.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_347.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_348.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_349.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_350.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_351.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_352.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_353.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_354.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_355.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_356.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_357.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_358.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_359.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_360.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_361.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_362.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_363.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_364.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_365.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_366.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_367.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_368.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_369.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_370.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_371.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_372.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_373.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_374.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_375.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_376.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_377.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_378.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_379.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_380.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_381.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_382.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_383.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_384.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_385.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_386.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_387.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_388.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_389.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_390.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_391.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_392.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_393.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_394.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_395.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_396.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_397.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_398.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_399.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_400.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_401.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_402.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_403.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_404.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_405.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_406.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_407.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_408.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_409.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_410.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_411.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_412.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_413.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_414.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_415.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_416.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_417.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_418.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_419.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_420.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_421.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_422.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_423.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_424.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_425.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_426.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_427.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_428.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_429.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_430.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_431.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_432.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_433.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_434.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_435.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_436.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_437.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_438.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_439.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_440.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_441.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_442.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_443.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_444.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_445.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_446.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_447.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_448.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_449.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_450.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_451.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_452.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_453.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_454.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_455.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_456.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_457.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_458.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_459.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_460.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_461.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_462.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_463.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_464.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_465.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_466.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_467.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_468.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_469.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_470.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_471.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_472.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_473.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_474.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_475.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_476.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_477.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_478.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_479.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_480.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_481.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_482.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_483.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_484.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_485.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_486.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_487.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_488.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_489.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_490.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_491.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_492.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_493.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_494.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_495.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_496.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_497.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_498.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_499.sh diff --git a/test/ntuple_qcd_500_700/ademoor.cc b/test/ntuple_qcd_500_700/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..ec83192d3aecaa9406fceed4944eb1ffc139e0e4 GIT binary patch literal 5609 zcmai$Ra6|>l7_pXaVNpu-KB8}Zb{ID;7)L9G`KsB1a~JuAkaW?cMa~rC82@ffhJ5c zbMBct_pX_#we~~(Rkdrc{l9!DAi$ph{&mpg6ttdm%PId((abEZ9G#ur{@*In?~Xs` zpJq|*-OM32kbf3Qekb@}iR(;(%9{psd#Rb8(|CF27JEVF7DvM7R?36scK!gs%dOvS ze+P!USqO$RZwQ8c0WuO0r4WPSA3KUDdCC81NQF;$2`K(r_jk281Vi-ql+d3J!ookJ zMIjh0pb!j(U2mtV#ra1H$dF7`ze1znT=H6{42@=Q+rHYJRHaFo+0$1ah8uG4oMM!R z^lPBhf_}|UV^dCFW;eFQzq^1kW5Qc_0(V9cNsQXw5hX*n_@-rSN&@iX6*_E_2n7;T~%ZnPie_m)+MP|@L8(^76@xLH%e1$NW&+k9U%kt zndKjuO6D{P8l`~&gV$(u2&-Y(!uy8q>>TJx8t4gWgoidXd?O<5C)YXPOdkPyuV)Vny^m&oby#kmJn1YRX7rkEJ_RQO~|)z|nYk zF5I4Zmb`WlX+*{gA#O;t*&_&*>@e0C5SLP@dhl1{4L?>=n~a;Xh$!SH`y}l~@pj=D z92~8^{&7-rvM0}rF1UV`ke{$s5ni-L?qtPW?fP#I_A$!7px#J}3k6eFLu|$&1H4AspB%DWYit54lVADFE*IGaSbBZ}yEHk? zr|bJWFgH^3YOYRe<}rtdWNP^DgshrC8FMPmtroNL2Q6Lb&n1UEJl2H}>J)~jEim0A zet&NLrm#b4FktyTgQ?Sns(&F2BdGce*||2?<{Ag%@p(%daM#Gr9v5<6+y6fKT%0;A zptVG)l1LaMN@%M93k7>>j=tQ6!cPfuusIwweJvYb61Biyoj==isDNL{RA^hqijP`z zDR@dBSTmAg+F*q6i6raur*vL&GH$rjgT*wpa7(G8I3b<* z+C%$+>VqTt7o#kBg39x9$_oa^?gIm6#HJ%J$lEr50S>0QVS#otYMJ5&sfTrS7#O3-ONm#~h?2AjILXDSTvMSw&U@H3eyiZ${a zB{KWCrjU?T;~sY`vD%y#f0fId-14uIdP4TN6MSd1?U5OTvq_Wf!p`6JtGVq+2Ke+7 zCN5m^p~MfWuEJDWWcI7P6|x%TL`N*~M189sx7Bv+(pYrGd%DCLwJd-Dys=iL=6n`Y z+9KQ;tTk3V*=-`u)Sg)or|am7lgtpCDlL=aU_X<~S*OK3R9gHkHy$BL7#>c_lAmhC zENrNOT-CFiB6}awfiyS~Cbjj_oL3mLT>$gLY2XPBHa_LH@Aye0`)yr!p5OHCeX;8G z<0MXuWX@#Jk#Kg^xtbz1oEtWCL$W0Qd*JC|$IU zblY2_5RZkRWBz@Q!_EeH{K@X~XcRWrvb=y9N4(fY`r#HO_La|5M`KO7_JyP6mF^9g zKa(PKI(aCkphHOC3LGdSox{C)%+1^59dsMN<869u6?e>f5`8hL??F^`X(hUn`95#6 z33gaU&{Qb+()RE@alV~Lb)OH4e|Iiluo1Xyy&Je85vS_H>cW*ozG6RG#aOkZ6+G!P zeVlEK;eY|r+@?TJ^0yz$8va&V~evVx zj;CJ=2gq+DetaViXqi@S=w%rgtC-MW(Od`{cW--Ye9ewh?q|8?Vj!>9W~}nox;K=# zKW%(bb4Gs^y%9b=$~E|m94l?>&h!NWEpu7(hqc3`++5YIm zxp8&dj^>OVYWWblQWq>^l*q7)sw0}DsU#-TN3Z3UhvT-d)SeAI&z&~%88$lb$43Ju z#wXn-$SEz38_!1Q6w|n@QT&wzP->m7ixw-+mVNwsTuaMumZ0c9ioh8f;v-0M*3oO} zmmiqE5FScpMEGxTb1tS|flKG&0`^$(D2isp4OU*OMRk#uy@|5C)w`Q|ez#2IIF~z= zQ2mT*H!Yr8(>aTRxwwwm^lA>(r4e zZJfIRnC=w~H%!@haC8&ryMrJ!>4a6y5kNpgM?`A}IGz(6@Xks?Lg$U6A$~$-40hGZ0IC8lS=yoD zyKmsZE8d+ufbi435n~^4mb`R{QuAE=s!iz&8?;XG)Gm7v@Dt|#)oJKvsEwc&)Gk*d zSI@9jYia)aBhFBJR(X!UVMZKC+K<+`R6T%kk)LH zd2uQJ?56m~=HlQz-r()O*$=HKcpely6A^B%-GpR0<$3OFYQ)n*wd25%N3nwaTubkX z$N@yOBxgI~yU&%{V)6pU<D{;#*g_6zJ)?>_gchn3*K6C(y4IS+G!IJ#`Br#uHO=9xCecO^csx<*)9Z`QDOZ%? zu&-#oP#RnRF5M-8D)DCC#aqT%3TW8^GxPcDlm2g`{#5_PC{%AZXJ?4z?*gusv%7_( zJNN&vj9SOj6>a(5Bu(V4$D^Ft(6%g8JJZ;&8umzfz@Fet{a=@fMAB$JO2arkPde z)%#slW*PZ9Ybf6RYbD;ktS;-|jc}(-Kkb*22tC#?D2&m#u?7&N_2p?9`XKXgx$3TU z;wPa)SYHDTcI;b94b)&7SZ)UCx6xNb4B}~$ZKqa^vLO89)ThGDHQWBX^P@4W6jmdN z!J>;{dmUt8x6R`;!3mp)@~(g+>DH-dZFOfUSBgs=Plb2t`eTvjME2ROsAK6YPJ4@| zk6xAW3@C&a5IJq@D`dXa#!#^)GF@o`gGjW@?P~o)-;v12c@IljhM|mtJ+;qz2`VzD{*tv+|FC{49aD~7_c|wr}dCsDEMFNvTR=SiZDNg$xghhBlDANFJ=EID6L`nm7?h;jXN-`Er@EC?Rr z(U#Y4ydKd&PRxc3(bgnuW1raPEcN&iEMy&xqWY3YmGh2|q;GB`tG;_^nFTOpjiu3w zvi_B?;^x725~g@$KkEiw?_`&=tGIj4t49r*=cA2}kyRwxT0ptW5+G$$GUwbBnb1Mv zmPo|0>FgjF+5EY`={#QBt5a8g#e2Y!Tghf$HMn0nyyoxIDZ)FJ_klB^PLv+~+h@jCzibT66rw+XTRm)u1P|^R#feHhQhRW3 zex#7NG>`IlVRxL#j=Y+g`dSR}vIt%yo6aDP(6dS!o8Aflg`6?v3UR%9O(O%Jr(|2I zqoyJx6yRZi#SP3vK{~>Lqab6RHm*$^wNyaC!Al zKh?u?)95|DastPX#12&wf4RJtCDMApF1I*@6Fy#&-e^913yL0WL%c-yZ!hyY*ZQU- z#6w_6m&)`Jn2g_fr8JKb7#N}KPo7O!wuNOGD_u%VzSUp+#h2b$4nZ5rdo_L!5_Qv= z@o5*;2cIAzjw9<`CE7asnv1T-E+=3^GTcQbTnSb?ecmAXWp?oy9IONtRT+6`{1G}1 zdV5<|T~&CCxB!6t-07Ql0~W$~JbHgEPF1B*p~^p&)vR6W9DFs%yZ)1T*Ei?gMwV@c z>S&MZ%{w}oF@s?S2P#7=1ezwljOvzkw@U2K@wjCdYnl?P!1My5QTC1UO?G{}?HlZS z`p%Cg3#i|LekeZohHZzuX3t9033pZ8 zlv|KVnl@r{i?An*LP%^2&8XYpo z!>OJ#YpcD&Df-|E5C5KjjmFo)EUiF|sNdsHN5;sAYzx55H@t38sm3zwVtm~=Cyo3| zcj%;}EszOWBRhB<@hp^zmOs2gI392xTNnq z!K_4qwA24aw~3aLxNp~ssB3jD`KNGV{Gv7w)Q&T1yVWsX+&Tf#=~T6yo5dJ1k-tB* zpN@?BX&FT%7+y8>o|#e&lq|ub04G<9^?;u~dv0+MbsQ**2PDZ<>Zb~m>wEYyrHei zbXkbz%~oJ3>kC&eq>-igqDvLav=toJ5bW>z>O!-aTGj3VHGZ)~SYbV6*`jj~z6aAZ zc>w7?X}U&dmXsCtqL~mp`S5M!=K9E+xnd)CNiI-F*8sKoL&t>~s|u@L4Y1THmZLB6 z3oD^0XF|ewubxo8vtCr_wGs>b`Sv;uJjJ4!xwyXSUgP7&^5t;lo9?T`&}`7? zS($HUrUAYrvI-sdCVs`EURlsuXL-~;`$cw)1?ZF0HS@_-jl7OU`%~_*~U0xv7|;Q$DQxLCCK_(q4LA%p{ndOTXykm$^<@svr=7q^$)c zD%DGGp&ZC_p#FN5)uVQg8Z0~Y5jnGE>t4OUTI~KFnJ#a`Qn>Se3rD!z$^a>;Sw2Ez zHUt-wBn=1YsLW&NZNa8UQ2$&;B5oA^gw-(Fz=J6>V`(PFxS>=g{u}1Y`SdgtpW-B= zVzSER?V?XNw<7zaG=30Ye5_NrA&|CD+6xn@+c6M2#$8E8VKl&1Cf@u_F6^5>RPG_< zD=LIjG~oPapCPFJJk32LB|PNE{5~Jf6i;^BYLaQ3g^63wB>fY5r=|QFJ6YRgS*Q@P z!_9F*OsCMywR$rXH%iho;OCZPyl-S0dORXC>=!Qpy`U;;dd9MxlA)LRy@3U1N!|RQ zz;yL)33~+!XfUj<6Eyhp=?X4H!j{-Nqr>Dl6ng3YLNKdfsQ+*YjmyW~$DdHAA+G-( zU9a^y!UteT8A^Kw)k!7aHNUp;Rj4UcB;#MOTW;%Kdz4AS0J)IFUeGq-`yH3kFi;j@ SQBFj$iY}A87D@jh#s2^^zCNY^ literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_500_700/batch/condor_0.sub b/test/ntuple_qcd_500_700/batch/condor_0.sub new file mode 100644 index 00000000000..7d0060bca0b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_1.sub b/test/ntuple_qcd_500_700/batch/condor_1.sub new file mode 100644 index 00000000000..4bdee91d617 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_10.sub b/test/ntuple_qcd_500_700/batch/condor_10.sub new file mode 100644 index 00000000000..82ccdc44ed7 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_100.sub b/test/ntuple_qcd_500_700/batch/condor_100.sub new file mode 100644 index 00000000000..c42a635c01e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_101.sub b/test/ntuple_qcd_500_700/batch/condor_101.sub new file mode 100644 index 00000000000..a58b0af9989 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_102.sub b/test/ntuple_qcd_500_700/batch/condor_102.sub new file mode 100644 index 00000000000..c9833572ad0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_103.sub b/test/ntuple_qcd_500_700/batch/condor_103.sub new file mode 100644 index 00000000000..7877ca81eba --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_104.sub b/test/ntuple_qcd_500_700/batch/condor_104.sub new file mode 100644 index 00000000000..e477eed7dcd --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_105.sub b/test/ntuple_qcd_500_700/batch/condor_105.sub new file mode 100644 index 00000000000..3cfc23a512b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_106.sub b/test/ntuple_qcd_500_700/batch/condor_106.sub new file mode 100644 index 00000000000..fe21822d90f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_107.sub b/test/ntuple_qcd_500_700/batch/condor_107.sub new file mode 100644 index 00000000000..a9aa3d0d9bb --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_108.sub b/test/ntuple_qcd_500_700/batch/condor_108.sub new file mode 100644 index 00000000000..db6516cd566 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_109.sub b/test/ntuple_qcd_500_700/batch/condor_109.sub new file mode 100644 index 00000000000..02dd19faad0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_11.sub b/test/ntuple_qcd_500_700/batch/condor_11.sub new file mode 100644 index 00000000000..f9216a93eaa --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_110.sub b/test/ntuple_qcd_500_700/batch/condor_110.sub new file mode 100644 index 00000000000..862fce92c6e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_111.sub b/test/ntuple_qcd_500_700/batch/condor_111.sub new file mode 100644 index 00000000000..3fe2c28bc4f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_112.sub b/test/ntuple_qcd_500_700/batch/condor_112.sub new file mode 100644 index 00000000000..54c028c17e6 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_113.sub b/test/ntuple_qcd_500_700/batch/condor_113.sub new file mode 100644 index 00000000000..aeecbf11b5e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_114.sub b/test/ntuple_qcd_500_700/batch/condor_114.sub new file mode 100644 index 00000000000..5c4cc91e640 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_115.sub b/test/ntuple_qcd_500_700/batch/condor_115.sub new file mode 100644 index 00000000000..6426d84452d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_116.sub b/test/ntuple_qcd_500_700/batch/condor_116.sub new file mode 100644 index 00000000000..0cd5fd4c7f0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_117.sub b/test/ntuple_qcd_500_700/batch/condor_117.sub new file mode 100644 index 00000000000..5da1d1371af --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_12.sub b/test/ntuple_qcd_500_700/batch/condor_12.sub new file mode 100644 index 00000000000..71001630255 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_13.sub b/test/ntuple_qcd_500_700/batch/condor_13.sub new file mode 100644 index 00000000000..6e7f3937b4c --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_14.sub b/test/ntuple_qcd_500_700/batch/condor_14.sub new file mode 100644 index 00000000000..fcf98ce2d66 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_15.sub b/test/ntuple_qcd_500_700/batch/condor_15.sub new file mode 100644 index 00000000000..2b98c40721d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_16.sub b/test/ntuple_qcd_500_700/batch/condor_16.sub new file mode 100644 index 00000000000..39690b386ae --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_17.sub b/test/ntuple_qcd_500_700/batch/condor_17.sub new file mode 100644 index 00000000000..8e50d6a05ec --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_18.sub b/test/ntuple_qcd_500_700/batch/condor_18.sub new file mode 100644 index 00000000000..83e75cdecaf --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_19.sub b/test/ntuple_qcd_500_700/batch/condor_19.sub new file mode 100644 index 00000000000..f92739b1993 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_2.sub b/test/ntuple_qcd_500_700/batch/condor_2.sub new file mode 100644 index 00000000000..79ce4ba7359 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_20.sub b/test/ntuple_qcd_500_700/batch/condor_20.sub new file mode 100644 index 00000000000..b8779e73860 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_21.sub b/test/ntuple_qcd_500_700/batch/condor_21.sub new file mode 100644 index 00000000000..57b5105de8f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_22.sub b/test/ntuple_qcd_500_700/batch/condor_22.sub new file mode 100644 index 00000000000..e9c9a3f7cbf --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_23.sub b/test/ntuple_qcd_500_700/batch/condor_23.sub new file mode 100644 index 00000000000..6924bcfff2a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_24.sub b/test/ntuple_qcd_500_700/batch/condor_24.sub new file mode 100644 index 00000000000..dd63c1f571b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_25.sub b/test/ntuple_qcd_500_700/batch/condor_25.sub new file mode 100644 index 00000000000..04cbbee8cd0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_26.sub b/test/ntuple_qcd_500_700/batch/condor_26.sub new file mode 100644 index 00000000000..0f81fb290f2 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_27.sub b/test/ntuple_qcd_500_700/batch/condor_27.sub new file mode 100644 index 00000000000..688ccdcbaf6 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_28.sub b/test/ntuple_qcd_500_700/batch/condor_28.sub new file mode 100644 index 00000000000..8f50dbdcf52 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_29.sub b/test/ntuple_qcd_500_700/batch/condor_29.sub new file mode 100644 index 00000000000..821b37a663b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_3.sub b/test/ntuple_qcd_500_700/batch/condor_3.sub new file mode 100644 index 00000000000..5c380313957 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_30.sub b/test/ntuple_qcd_500_700/batch/condor_30.sub new file mode 100644 index 00000000000..47eba72a64e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_31.sub b/test/ntuple_qcd_500_700/batch/condor_31.sub new file mode 100644 index 00000000000..323b0a60822 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_32.sub b/test/ntuple_qcd_500_700/batch/condor_32.sub new file mode 100644 index 00000000000..c747076a3b3 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_33.sub b/test/ntuple_qcd_500_700/batch/condor_33.sub new file mode 100644 index 00000000000..6ce1d55795a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_34.sub b/test/ntuple_qcd_500_700/batch/condor_34.sub new file mode 100644 index 00000000000..f94a9781fa7 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_35.sub b/test/ntuple_qcd_500_700/batch/condor_35.sub new file mode 100644 index 00000000000..077e171647b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_36.sub b/test/ntuple_qcd_500_700/batch/condor_36.sub new file mode 100644 index 00000000000..807e5bc2e80 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_37.sub b/test/ntuple_qcd_500_700/batch/condor_37.sub new file mode 100644 index 00000000000..8cc4d07cd80 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_38.sub b/test/ntuple_qcd_500_700/batch/condor_38.sub new file mode 100644 index 00000000000..17e5f391524 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_39.sub b/test/ntuple_qcd_500_700/batch/condor_39.sub new file mode 100644 index 00000000000..9abb717215d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_4.sub b/test/ntuple_qcd_500_700/batch/condor_4.sub new file mode 100644 index 00000000000..1158c94a707 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_40.sub b/test/ntuple_qcd_500_700/batch/condor_40.sub new file mode 100644 index 00000000000..3418b12071d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_41.sub b/test/ntuple_qcd_500_700/batch/condor_41.sub new file mode 100644 index 00000000000..a57e4e85f79 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_42.sub b/test/ntuple_qcd_500_700/batch/condor_42.sub new file mode 100644 index 00000000000..5e3598ed746 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_43.sub b/test/ntuple_qcd_500_700/batch/condor_43.sub new file mode 100644 index 00000000000..6d9d16392f7 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_44.sub b/test/ntuple_qcd_500_700/batch/condor_44.sub new file mode 100644 index 00000000000..9be64681540 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_45.sub b/test/ntuple_qcd_500_700/batch/condor_45.sub new file mode 100644 index 00000000000..deccb364a2a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_46.sub b/test/ntuple_qcd_500_700/batch/condor_46.sub new file mode 100644 index 00000000000..dec9401ba63 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_47.sub b/test/ntuple_qcd_500_700/batch/condor_47.sub new file mode 100644 index 00000000000..91f600019e9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_48.sub b/test/ntuple_qcd_500_700/batch/condor_48.sub new file mode 100644 index 00000000000..1c674c0e114 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_49.sub b/test/ntuple_qcd_500_700/batch/condor_49.sub new file mode 100644 index 00000000000..cd58efd5418 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_5.sub b/test/ntuple_qcd_500_700/batch/condor_5.sub new file mode 100644 index 00000000000..6fc34c1e8ce --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_50.sub b/test/ntuple_qcd_500_700/batch/condor_50.sub new file mode 100644 index 00000000000..122f182fad2 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_51.sub b/test/ntuple_qcd_500_700/batch/condor_51.sub new file mode 100644 index 00000000000..2a1ff395e95 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_52.sub b/test/ntuple_qcd_500_700/batch/condor_52.sub new file mode 100644 index 00000000000..0121acebd66 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_53.sub b/test/ntuple_qcd_500_700/batch/condor_53.sub new file mode 100644 index 00000000000..7628a895665 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_54.sub b/test/ntuple_qcd_500_700/batch/condor_54.sub new file mode 100644 index 00000000000..cc78b0c236e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_55.sub b/test/ntuple_qcd_500_700/batch/condor_55.sub new file mode 100644 index 00000000000..abd897ea6e0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_56.sub b/test/ntuple_qcd_500_700/batch/condor_56.sub new file mode 100644 index 00000000000..bf6a38b6782 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_57.sub b/test/ntuple_qcd_500_700/batch/condor_57.sub new file mode 100644 index 00000000000..86d2f6e2853 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_58.sub b/test/ntuple_qcd_500_700/batch/condor_58.sub new file mode 100644 index 00000000000..6511611623b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_59.sub b/test/ntuple_qcd_500_700/batch/condor_59.sub new file mode 100644 index 00000000000..b7dadd38956 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_6.sub b/test/ntuple_qcd_500_700/batch/condor_6.sub new file mode 100644 index 00000000000..624038cf5a9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_60.sub b/test/ntuple_qcd_500_700/batch/condor_60.sub new file mode 100644 index 00000000000..c5495819c3b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_61.sub b/test/ntuple_qcd_500_700/batch/condor_61.sub new file mode 100644 index 00000000000..55019d54fcb --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_62.sub b/test/ntuple_qcd_500_700/batch/condor_62.sub new file mode 100644 index 00000000000..e330758ad92 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_63.sub b/test/ntuple_qcd_500_700/batch/condor_63.sub new file mode 100644 index 00000000000..948639b5b66 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_64.sub b/test/ntuple_qcd_500_700/batch/condor_64.sub new file mode 100644 index 00000000000..776c7d15690 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_65.sub b/test/ntuple_qcd_500_700/batch/condor_65.sub new file mode 100644 index 00000000000..c9bf35e89bf --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_66.sub b/test/ntuple_qcd_500_700/batch/condor_66.sub new file mode 100644 index 00000000000..2642e6d6818 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_67.sub b/test/ntuple_qcd_500_700/batch/condor_67.sub new file mode 100644 index 00000000000..a3219c8e488 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_68.sub b/test/ntuple_qcd_500_700/batch/condor_68.sub new file mode 100644 index 00000000000..a096a3991fd --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_69.sub b/test/ntuple_qcd_500_700/batch/condor_69.sub new file mode 100644 index 00000000000..ea4ad2da756 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_7.sub b/test/ntuple_qcd_500_700/batch/condor_7.sub new file mode 100644 index 00000000000..68582a33573 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_70.sub b/test/ntuple_qcd_500_700/batch/condor_70.sub new file mode 100644 index 00000000000..9532d3bff72 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_71.sub b/test/ntuple_qcd_500_700/batch/condor_71.sub new file mode 100644 index 00000000000..b77731b8d0c --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_72.sub b/test/ntuple_qcd_500_700/batch/condor_72.sub new file mode 100644 index 00000000000..7a559a42943 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_73.sub b/test/ntuple_qcd_500_700/batch/condor_73.sub new file mode 100644 index 00000000000..b08f5a55586 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_74.sub b/test/ntuple_qcd_500_700/batch/condor_74.sub new file mode 100644 index 00000000000..7cf0e7d2efb --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_75.sub b/test/ntuple_qcd_500_700/batch/condor_75.sub new file mode 100644 index 00000000000..9bf9e5481b9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_76.sub b/test/ntuple_qcd_500_700/batch/condor_76.sub new file mode 100644 index 00000000000..affa4a974b7 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_77.sub b/test/ntuple_qcd_500_700/batch/condor_77.sub new file mode 100644 index 00000000000..5116796686b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_78.sub b/test/ntuple_qcd_500_700/batch/condor_78.sub new file mode 100644 index 00000000000..f99597ce841 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_79.sub b/test/ntuple_qcd_500_700/batch/condor_79.sub new file mode 100644 index 00000000000..a72224ec7af --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_8.sub b/test/ntuple_qcd_500_700/batch/condor_8.sub new file mode 100644 index 00000000000..557fb0de8d0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_80.sub b/test/ntuple_qcd_500_700/batch/condor_80.sub new file mode 100644 index 00000000000..253e8051412 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_81.sub b/test/ntuple_qcd_500_700/batch/condor_81.sub new file mode 100644 index 00000000000..2a9b657a41a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_82.sub b/test/ntuple_qcd_500_700/batch/condor_82.sub new file mode 100644 index 00000000000..99bf3180936 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_83.sub b/test/ntuple_qcd_500_700/batch/condor_83.sub new file mode 100644 index 00000000000..78a20d53d40 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_84.sub b/test/ntuple_qcd_500_700/batch/condor_84.sub new file mode 100644 index 00000000000..8a4cf8ddf2b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_85.sub b/test/ntuple_qcd_500_700/batch/condor_85.sub new file mode 100644 index 00000000000..a8e49bdbbee --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_86.sub b/test/ntuple_qcd_500_700/batch/condor_86.sub new file mode 100644 index 00000000000..b9ba7bc60b4 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_87.sub b/test/ntuple_qcd_500_700/batch/condor_87.sub new file mode 100644 index 00000000000..e11590231f3 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_88.sub b/test/ntuple_qcd_500_700/batch/condor_88.sub new file mode 100644 index 00000000000..d671dcf09d0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_89.sub b/test/ntuple_qcd_500_700/batch/condor_89.sub new file mode 100644 index 00000000000..9b9ac0520d0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_9.sub b/test/ntuple_qcd_500_700/batch/condor_9.sub new file mode 100644 index 00000000000..99af758c2ce --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_90.sub b/test/ntuple_qcd_500_700/batch/condor_90.sub new file mode 100644 index 00000000000..70e3ffb3da0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_91.sub b/test/ntuple_qcd_500_700/batch/condor_91.sub new file mode 100644 index 00000000000..1e952cfe040 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_92.sub b/test/ntuple_qcd_500_700/batch/condor_92.sub new file mode 100644 index 00000000000..d4c5e59e19b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_93.sub b/test/ntuple_qcd_500_700/batch/condor_93.sub new file mode 100644 index 00000000000..a8472cee870 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_94.sub b/test/ntuple_qcd_500_700/batch/condor_94.sub new file mode 100644 index 00000000000..69628921ecc --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_95.sub b/test/ntuple_qcd_500_700/batch/condor_95.sub new file mode 100644 index 00000000000..d7d5baa1322 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_96.sub b/test/ntuple_qcd_500_700/batch/condor_96.sub new file mode 100644 index 00000000000..61324a586db --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_97.sub b/test/ntuple_qcd_500_700/batch/condor_97.sub new file mode 100644 index 00000000000..9ee1d4877ef --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_98.sub b/test/ntuple_qcd_500_700/batch/condor_98.sub new file mode 100644 index 00000000000..6454e45bd31 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_99.sub b/test/ntuple_qcd_500_700/batch/condor_99.sub new file mode 100644 index 00000000000..746804b0771 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/nJobs.118 b/test/ntuple_qcd_500_700/batch/nJobs.118 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_500_700/batch/sge_0.sh b/test/ntuple_qcd_500_700/batch/sge_0.sh new file mode 100755 index 00000000000..90cbb8899c9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_1.sh b/test/ntuple_qcd_500_700/batch/sge_1.sh new file mode 100755 index 00000000000..052d8f9c33c --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_10.sh b/test/ntuple_qcd_500_700/batch/sge_10.sh new file mode 100755 index 00000000000..bbd904814e5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_100.sh b/test/ntuple_qcd_500_700/batch/sge_100.sh new file mode 100755 index 00000000000..600fe43017d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=100 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_101.sh b/test/ntuple_qcd_500_700/batch/sge_101.sh new file mode 100755 index 00000000000..7c4b90c97f0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=101 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_102.sh b/test/ntuple_qcd_500_700/batch/sge_102.sh new file mode 100755 index 00000000000..6736180a3c5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=102 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_103.sh b/test/ntuple_qcd_500_700/batch/sge_103.sh new file mode 100755 index 00000000000..319d8373677 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=103 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_104.sh b/test/ntuple_qcd_500_700/batch/sge_104.sh new file mode 100755 index 00000000000..1b1531edebd --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=104 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_105.sh b/test/ntuple_qcd_500_700/batch/sge_105.sh new file mode 100755 index 00000000000..7530af73e6b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=105 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_106.sh b/test/ntuple_qcd_500_700/batch/sge_106.sh new file mode 100755 index 00000000000..1b0d7d2a57d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=106 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_107.sh b/test/ntuple_qcd_500_700/batch/sge_107.sh new file mode 100755 index 00000000000..4960c388c48 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=107 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_108.sh b/test/ntuple_qcd_500_700/batch/sge_108.sh new file mode 100755 index 00000000000..98bf021241b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=108 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_109.sh b/test/ntuple_qcd_500_700/batch/sge_109.sh new file mode 100755 index 00000000000..2256a7568b5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=109 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_11.sh b/test/ntuple_qcd_500_700/batch/sge_11.sh new file mode 100755 index 00000000000..368ea4cdeb4 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_110.sh b/test/ntuple_qcd_500_700/batch/sge_110.sh new file mode 100755 index 00000000000..43a06d91ec5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=110 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_111.sh b/test/ntuple_qcd_500_700/batch/sge_111.sh new file mode 100755 index 00000000000..a47df9fdfe1 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=111 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_112.sh b/test/ntuple_qcd_500_700/batch/sge_112.sh new file mode 100755 index 00000000000..ca30d5ef224 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=112 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_113.sh b/test/ntuple_qcd_500_700/batch/sge_113.sh new file mode 100755 index 00000000000..1ace2b696d3 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=113 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_114.sh b/test/ntuple_qcd_500_700/batch/sge_114.sh new file mode 100755 index 00000000000..5971c00f55d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=114 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_115.sh b/test/ntuple_qcd_500_700/batch/sge_115.sh new file mode 100755 index 00000000000..20a5fb9f583 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=115 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_116.sh b/test/ntuple_qcd_500_700/batch/sge_116.sh new file mode 100755 index 00000000000..092d7b3995e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=116 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_117.sh b/test/ntuple_qcd_500_700/batch/sge_117.sh new file mode 100755 index 00000000000..87f1d0376be --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=117 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_12.sh b/test/ntuple_qcd_500_700/batch/sge_12.sh new file mode 100755 index 00000000000..479ef607dbe --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_13.sh b/test/ntuple_qcd_500_700/batch/sge_13.sh new file mode 100755 index 00000000000..5d3a6e8ae30 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_14.sh b/test/ntuple_qcd_500_700/batch/sge_14.sh new file mode 100755 index 00000000000..2d3aa33cbd8 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_15.sh b/test/ntuple_qcd_500_700/batch/sge_15.sh new file mode 100755 index 00000000000..5399507bbbe --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_16.sh b/test/ntuple_qcd_500_700/batch/sge_16.sh new file mode 100755 index 00000000000..3bdda37b66b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_17.sh b/test/ntuple_qcd_500_700/batch/sge_17.sh new file mode 100755 index 00000000000..a7d76894f39 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_18.sh b/test/ntuple_qcd_500_700/batch/sge_18.sh new file mode 100755 index 00000000000..1cce18a61b5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_19.sh b/test/ntuple_qcd_500_700/batch/sge_19.sh new file mode 100755 index 00000000000..9c7813e9243 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_2.sh b/test/ntuple_qcd_500_700/batch/sge_2.sh new file mode 100755 index 00000000000..06195351a36 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_20.sh b/test/ntuple_qcd_500_700/batch/sge_20.sh new file mode 100755 index 00000000000..947cfce5c08 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_21.sh b/test/ntuple_qcd_500_700/batch/sge_21.sh new file mode 100755 index 00000000000..46799fbd6bf --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_22.sh b/test/ntuple_qcd_500_700/batch/sge_22.sh new file mode 100755 index 00000000000..5a97f156c66 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_23.sh b/test/ntuple_qcd_500_700/batch/sge_23.sh new file mode 100755 index 00000000000..6196e87f475 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_24.sh b/test/ntuple_qcd_500_700/batch/sge_24.sh new file mode 100755 index 00000000000..6b7bfcc7ed9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_25.sh b/test/ntuple_qcd_500_700/batch/sge_25.sh new file mode 100755 index 00000000000..89a0498869f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_26.sh b/test/ntuple_qcd_500_700/batch/sge_26.sh new file mode 100755 index 00000000000..7f088f435f5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_27.sh b/test/ntuple_qcd_500_700/batch/sge_27.sh new file mode 100755 index 00000000000..7ba156fcacb --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_28.sh b/test/ntuple_qcd_500_700/batch/sge_28.sh new file mode 100755 index 00000000000..b941afaa0b8 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_29.sh b/test/ntuple_qcd_500_700/batch/sge_29.sh new file mode 100755 index 00000000000..884dc7cb7a5 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_3.sh b/test/ntuple_qcd_500_700/batch/sge_3.sh new file mode 100755 index 00000000000..4b99a6dd460 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_30.sh b/test/ntuple_qcd_500_700/batch/sge_30.sh new file mode 100755 index 00000000000..908bbf691c1 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_31.sh b/test/ntuple_qcd_500_700/batch/sge_31.sh new file mode 100755 index 00000000000..8d31c6c25dc --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_32.sh b/test/ntuple_qcd_500_700/batch/sge_32.sh new file mode 100755 index 00000000000..4c40f7edc99 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_33.sh b/test/ntuple_qcd_500_700/batch/sge_33.sh new file mode 100755 index 00000000000..bcd5fc5323f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_34.sh b/test/ntuple_qcd_500_700/batch/sge_34.sh new file mode 100755 index 00000000000..2f6303cabac --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_35.sh b/test/ntuple_qcd_500_700/batch/sge_35.sh new file mode 100755 index 00000000000..27323597575 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_36.sh b/test/ntuple_qcd_500_700/batch/sge_36.sh new file mode 100755 index 00000000000..fb4e0c62884 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_37.sh b/test/ntuple_qcd_500_700/batch/sge_37.sh new file mode 100755 index 00000000000..3114924108b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_38.sh b/test/ntuple_qcd_500_700/batch/sge_38.sh new file mode 100755 index 00000000000..7a58ce1ce8d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_39.sh b/test/ntuple_qcd_500_700/batch/sge_39.sh new file mode 100755 index 00000000000..ffe7ddfb13c --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_4.sh b/test/ntuple_qcd_500_700/batch/sge_4.sh new file mode 100755 index 00000000000..1c97d89028f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_40.sh b/test/ntuple_qcd_500_700/batch/sge_40.sh new file mode 100755 index 00000000000..72dae60733d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_41.sh b/test/ntuple_qcd_500_700/batch/sge_41.sh new file mode 100755 index 00000000000..43dbed40e7a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_42.sh b/test/ntuple_qcd_500_700/batch/sge_42.sh new file mode 100755 index 00000000000..cb08eef73aa --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_43.sh b/test/ntuple_qcd_500_700/batch/sge_43.sh new file mode 100755 index 00000000000..014961f892e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_44.sh b/test/ntuple_qcd_500_700/batch/sge_44.sh new file mode 100755 index 00000000000..c98014b88e9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_45.sh b/test/ntuple_qcd_500_700/batch/sge_45.sh new file mode 100755 index 00000000000..853fd2197ef --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_46.sh b/test/ntuple_qcd_500_700/batch/sge_46.sh new file mode 100755 index 00000000000..48c78ce3cfc --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_47.sh b/test/ntuple_qcd_500_700/batch/sge_47.sh new file mode 100755 index 00000000000..74b3298f034 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_48.sh b/test/ntuple_qcd_500_700/batch/sge_48.sh new file mode 100755 index 00000000000..1b1d0d9ed4b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_49.sh b/test/ntuple_qcd_500_700/batch/sge_49.sh new file mode 100755 index 00000000000..2fe854c9a7f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_5.sh b/test/ntuple_qcd_500_700/batch/sge_5.sh new file mode 100755 index 00000000000..5a2fd2d0f7e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_50.sh b/test/ntuple_qcd_500_700/batch/sge_50.sh new file mode 100755 index 00000000000..fd91493ceb1 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_51.sh b/test/ntuple_qcd_500_700/batch/sge_51.sh new file mode 100755 index 00000000000..95ed1b698a6 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_52.sh b/test/ntuple_qcd_500_700/batch/sge_52.sh new file mode 100755 index 00000000000..c350bd0912d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_53.sh b/test/ntuple_qcd_500_700/batch/sge_53.sh new file mode 100755 index 00000000000..bbbc55654fb --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_54.sh b/test/ntuple_qcd_500_700/batch/sge_54.sh new file mode 100755 index 00000000000..49d63f491c3 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_55.sh b/test/ntuple_qcd_500_700/batch/sge_55.sh new file mode 100755 index 00000000000..e575ecc3a8c --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_56.sh b/test/ntuple_qcd_500_700/batch/sge_56.sh new file mode 100755 index 00000000000..0284ba80aba --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_57.sh b/test/ntuple_qcd_500_700/batch/sge_57.sh new file mode 100755 index 00000000000..1ea50997425 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_58.sh b/test/ntuple_qcd_500_700/batch/sge_58.sh new file mode 100755 index 00000000000..021895aa421 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_59.sh b/test/ntuple_qcd_500_700/batch/sge_59.sh new file mode 100755 index 00000000000..4757b90c3a1 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_6.sh b/test/ntuple_qcd_500_700/batch/sge_6.sh new file mode 100755 index 00000000000..b599543ff6f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_60.sh b/test/ntuple_qcd_500_700/batch/sge_60.sh new file mode 100755 index 00000000000..9b17ee4b284 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_61.sh b/test/ntuple_qcd_500_700/batch/sge_61.sh new file mode 100755 index 00000000000..caa2d349136 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_62.sh b/test/ntuple_qcd_500_700/batch/sge_62.sh new file mode 100755 index 00000000000..335c4c99b81 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_63.sh b/test/ntuple_qcd_500_700/batch/sge_63.sh new file mode 100755 index 00000000000..57933f06ceb --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_64.sh b/test/ntuple_qcd_500_700/batch/sge_64.sh new file mode 100755 index 00000000000..e156ee668cf --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_65.sh b/test/ntuple_qcd_500_700/batch/sge_65.sh new file mode 100755 index 00000000000..b902eb2fdec --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_66.sh b/test/ntuple_qcd_500_700/batch/sge_66.sh new file mode 100755 index 00000000000..73c488eaa0a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_67.sh b/test/ntuple_qcd_500_700/batch/sge_67.sh new file mode 100755 index 00000000000..7161e58f754 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_68.sh b/test/ntuple_qcd_500_700/batch/sge_68.sh new file mode 100755 index 00000000000..c5b68dd0651 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_69.sh b/test/ntuple_qcd_500_700/batch/sge_69.sh new file mode 100755 index 00000000000..0a73d58d0a9 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_7.sh b/test/ntuple_qcd_500_700/batch/sge_7.sh new file mode 100755 index 00000000000..2a2ebba4cb8 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_70.sh b/test/ntuple_qcd_500_700/batch/sge_70.sh new file mode 100755 index 00000000000..f2584c34667 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_71.sh b/test/ntuple_qcd_500_700/batch/sge_71.sh new file mode 100755 index 00000000000..9ea12558630 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_72.sh b/test/ntuple_qcd_500_700/batch/sge_72.sh new file mode 100755 index 00000000000..e16ebc3f93e --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_73.sh b/test/ntuple_qcd_500_700/batch/sge_73.sh new file mode 100755 index 00000000000..dd7f56dd1fa --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_74.sh b/test/ntuple_qcd_500_700/batch/sge_74.sh new file mode 100755 index 00000000000..fa816c8e8a2 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_75.sh b/test/ntuple_qcd_500_700/batch/sge_75.sh new file mode 100755 index 00000000000..bc83399c54b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_76.sh b/test/ntuple_qcd_500_700/batch/sge_76.sh new file mode 100755 index 00000000000..319d3b0693a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_77.sh b/test/ntuple_qcd_500_700/batch/sge_77.sh new file mode 100755 index 00000000000..564399a49ee --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=77 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_78.sh b/test/ntuple_qcd_500_700/batch/sge_78.sh new file mode 100755 index 00000000000..ac8972b7583 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=78 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_79.sh b/test/ntuple_qcd_500_700/batch/sge_79.sh new file mode 100755 index 00000000000..8a07dace6c0 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=79 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_8.sh b/test/ntuple_qcd_500_700/batch/sge_8.sh new file mode 100755 index 00000000000..8c12568c4ed --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_80.sh b/test/ntuple_qcd_500_700/batch/sge_80.sh new file mode 100755 index 00000000000..a5700bbf84d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=80 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_81.sh b/test/ntuple_qcd_500_700/batch/sge_81.sh new file mode 100755 index 00000000000..8895393e848 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=81 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_82.sh b/test/ntuple_qcd_500_700/batch/sge_82.sh new file mode 100755 index 00000000000..4c384b1865d --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=82 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_83.sh b/test/ntuple_qcd_500_700/batch/sge_83.sh new file mode 100755 index 00000000000..dc022d011f6 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=83 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_84.sh b/test/ntuple_qcd_500_700/batch/sge_84.sh new file mode 100755 index 00000000000..09922bdfa92 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=84 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_85.sh b/test/ntuple_qcd_500_700/batch/sge_85.sh new file mode 100755 index 00000000000..78a51b45cd4 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=85 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_86.sh b/test/ntuple_qcd_500_700/batch/sge_86.sh new file mode 100755 index 00000000000..f32302385d6 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=86 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_87.sh b/test/ntuple_qcd_500_700/batch/sge_87.sh new file mode 100755 index 00000000000..52c26d72c79 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=87 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_88.sh b/test/ntuple_qcd_500_700/batch/sge_88.sh new file mode 100755 index 00000000000..eca8a36af6f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=88 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_89.sh b/test/ntuple_qcd_500_700/batch/sge_89.sh new file mode 100755 index 00000000000..5f370a4e135 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=89 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_9.sh b/test/ntuple_qcd_500_700/batch/sge_9.sh new file mode 100755 index 00000000000..f7d73af913f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_90.sh b/test/ntuple_qcd_500_700/batch/sge_90.sh new file mode 100755 index 00000000000..3b99eb18a8b --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=90 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_91.sh b/test/ntuple_qcd_500_700/batch/sge_91.sh new file mode 100755 index 00000000000..7ca5dffde72 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=91 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_92.sh b/test/ntuple_qcd_500_700/batch/sge_92.sh new file mode 100755 index 00000000000..4100f691b24 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=92 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_93.sh b/test/ntuple_qcd_500_700/batch/sge_93.sh new file mode 100755 index 00000000000..69eb876b427 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=93 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_94.sh b/test/ntuple_qcd_500_700/batch/sge_94.sh new file mode 100755 index 00000000000..728dbee4d4f --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=94 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_95.sh b/test/ntuple_qcd_500_700/batch/sge_95.sh new file mode 100755 index 00000000000..7021c710422 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=95 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_96.sh b/test/ntuple_qcd_500_700/batch/sge_96.sh new file mode 100755 index 00000000000..fc236a87ec3 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=96 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_97.sh b/test/ntuple_qcd_500_700/batch/sge_97.sh new file mode 100755 index 00000000000..d04604328bd --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=97 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_98.sh b/test/ntuple_qcd_500_700/batch/sge_98.sh new file mode 100755 index 00000000000..d26b204bd2a --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=98 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_99.sh b/test/ntuple_qcd_500_700/batch/sge_99.sh new file mode 100755 index 00000000000..9df2b5b4286 --- /dev/null +++ b/test/ntuple_qcd_500_700/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=99 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batchscript.sh b/test/ntuple_qcd_500_700/batchscript.sh new file mode 100755 index 00000000000..3397b90cc70 --- /dev/null +++ b/test/ntuple_qcd_500_700/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_500_700" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/condor.sub b/test/ntuple_qcd_500_700/condor.sub new file mode 100644 index 00000000000..91af0726742 --- /dev/null +++ b/test/ntuple_qcd_500_700/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 118 + \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/helper b/test/ntuple_qcd_500_700/helper new file mode 120000 index 00000000000..34c977d69f7 --- /dev/null +++ b/test/ntuple_qcd_500_700/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_500_700/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/output b/test/ntuple_qcd_500_700/output new file mode 120000 index 00000000000..3443004fd6a --- /dev/null +++ b/test/ntuple_qcd_500_700/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/sge_sub.sh b/test/ntuple_qcd_500_700/sge_sub.sh new file mode 100755 index 00000000000..87ecbff8186 --- /dev/null +++ b/test/ntuple_qcd_500_700/sge_sub.sh @@ -0,0 +1,118 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_117.sh diff --git a/test/ntuple_qcd_700_1000/ademoor.cc b/test/ntuple_qcd_700_1000/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..5b2883e9d9d366a9b39932d77f1f2b64524e3ddb GIT binary patch literal 5609 zcmai%WmKHol7<_H;O=fgI=BT75Zoa+1ZljH#@$_l2ZzQTf)gwxxVyVM94s8tz>rzz zp1E`Hnme`D{!wpLeYMy3{&_YMBH(wx{dG{JWHeOXNXfmVD5e%5u%jd7|EdEpF>|$Y{b!N*CBfMss{05hw`oATmy+Q=iJfa^z87d_e#CDElIu6K^#cIZwqDx) z4m20jU^GY0U^KgY1b8?kC>r@cb`(%>lKs};q4=D* z7>yY*7>$0{)1h)L(YRkwA_GR zbpjQyZwo<8@`YMfQ+u4xbpq3?vo?-^oncragQh20C}*ql)$Ae6n4IqD+(T&jR%)Hh zXgl>H{*B^r@KqmNW_1o)n=$uxL`X+XJ3`h?T6rWby<#j-cVy>CnV5QOVE(#i%YZB8FIC#B+Ypv zYG4ndNp+lOXNK@SBJLF) z4kzN5@mk^x>b*q2?FoU7>U5+8?x$b%Q6^Mq7ab8#X&*N2Zt{10NlZ1_ngI)XT zGfHb1i)Phvo5bP#`|nU_VW7dr`P7DQSp&Y2G-hg81t*6xF;h+j*VK6MEj-O{6%%!y zQ|4$K@NTpKC68LtFaua+U6aa8S+~%5Q9yR(bG6Q$xItxcN9Q+aJ{uzH&{FQ{GGVM> zh9K?n&yivUEbe=_XIgz+2EWFyMo(QixCC7F`DU)WCTYpg7Ib#d?RWl5>Nz%_9I%qK zBB<>$;b*y|2dP~c7KOnH$m+<0H#pB1cYnxuy6-` zeh4MSe7M)X`N1HmO0}LA8zMka z+-E&Md!{BTPW6>Z^<1W~;0$HIo!}Ld1cvOgE6_q_UcZGC-IeHoo7);6Oo`m^qODOo zk=yT$UUTT7xBy@&mHwl{wSphC5iPLl62Y-H$LbCf?OCO*9d6gi)(*?{s%rz=;N+cTTv6maYgOJ%&!G$slo4uO@)`%Z z`iA#{E}(iS{bPd>%$tkpEC^$n$#@U}Bo!HNcn21&B|-DdsOI_8Tmxdc`QeV2p_(54 zHD*cCYW_3sLOi_TD+1nr?Cu@}gwIy-Vn#3%wlo`MZH%~sE3U6aS5>lRQIELK2lbIQKyVDrE$xzN-3`C!QT!Hm|&Y=PDD@Zbo+o4UnE@er|VCpre7}AY-0I6 zb-U~!Vi9hQFj&Rx(ey9;tZWauO}jyjYq*J5A4AIZEoZ=9p?wB#`Gc=VKqS6f$;HUG zO0M2#=h~5Rv!A;W=nGFwI6LJHjht>qY>QB7+!xW0O8T3--%OVo;0VGIlAm2lOpvdV zWy_M<#Wn{AuNe2ZpuernZu67B`I%F?A^L&O4r`3-lBOdf9d9Oayo2BIc)#k6EpZ>0 zUi{d#Q(gkmqk=O(r3R_p3TK(5aw*{va~$E16}S5;TUK#&+QL0;BIR0UfIs%gSJ{?4 z=8rT5SkvgMudyY!3E5M6W)Rt(hnF2B23Qnm7{UF$j82zb=5q<+!ZvTP@rXmQF_Ra4 z6~bp42O7u}+`o}$?Ynlu_m72&ZK;`Y^1tffc~x-{a88YZL$U2Wdfvo(U-vE7ck=#M zp~BtsIA*kZZ=+c#P;*{N4_vpj}oiRJKt4_LSk_)$@QNGW5+De4YtX$F1Jn`jWp-jL5EAr zT^e5fnHa9s#X&KVFaUp?Z%+~780OJqX4VmBuibQlz3H}9*g4})IAv1b1FP)T_~cCL ztEXh6yq`mMnG1~bxsuLb4_LC?4Okb6Rd9Ok1WY7bwi~Wws9e+t z8uyw!%`!%_M{`x*CPz*5vm43fD0`+F25X6o66$!$>SmhDR=8t+pRYBNg5z zSxekF$_YtWW3E?KYD7-Uk3g`9q1m5)$<^W9S{VpFO!G#3c^5(UWueyrma_e*7dh~U z>46d(!4$NQ>^}UDV%t6t-J>xnC^}Zx*z3=Kja-T)B-8fe?i{pX+gtw5 z-U^!?RkH4EN#CK84yG-3LN`W=2)(X6qE4JhWc>K-vDEf>+P*>M-oT;au%1W1-ib3h z>_0X-4jCh(Fh6a&9HM=n2DC)-ljT9Gb+{{7D7#$p^6hahF8#Tffa>)gZkn3t$TcbR zNLO5~f^iD(P%J&%Z~YDX!slCo;@MdLz1P^}1=GR?%esn@-6SRYkrwwK9wt;CmI%SK zIRo)k?=Y!IV=ip%pB7T+W(2Wme7; zN6s{{E<6IXI@E6(<&2k~y6aefhU0(ZBOrZL+CK*bIOMZoG30q+_bomYy8Fo;S&Nrc z6y?T}ieaCjnm9fj1fqz?uc!|J{2MyMzjg}5u?zV7fJ8*J^udNW@#WDNmCJp|GBl)V zhlW1K0{yp~I}ZSUg1sSQFM&*H@gmul*|-&}VpS`YF5#4JJ4CoIul8>*LN-IJcr_Ai zb3}4J7=G1QoV%;R9O%d_O;qX--YJf~@R8}(&~Z+nbhFvObtt?k>=(E?V;G4J+fI9{ zdJ&xiIGU+Dd&ZL!;wJ3oP*=WA*;SOE#=*AzrR=C4bN0Q_2xFYHz+Bph31NW7uz5R% z3~!Vy>w6Phft1;JqX?GTo-lphF=uQD2cO z#uEz5RQy8BKW%9eN4C z#~go8H)X=0EVsS#U{2&cV96yO7 z=*=T;c;ZNfke;-Z59GJeMI$yK!5knSqY!9{;9o!KKO6PC`Y%QydqNx?T`gV;SRh9i zbFj;s|7Dqv8cI$zLkC(^^}eY%75F3_=4`@FX%3;`K5)M_w8u2H=iU)UVJl1$$b&>gQnXVd!BrvVVc)@-PW89a<8u8+N*H(ty63?e$+R|E~B zVMq>}M{-1muRQFhCl;wv-R&d-wOSnxY8~_r!CuaCG z3nL3MTv-(wd_~Qn4F%fPR{FJKDK3$_PqX)k>1|1Z&f_Um&UC~dNf*jyulISmuyjTc zQnWk6zm<4{L-hgr9Cd`Mb{4@(8U-@7`s$uP7A?pWxh)WS7S@2t5qhM-QKro9(Y|$3 zX7p!5Hh{6oxa)M>BLm-nN_iRp{`W>nN)%wj{s*08FnlT6(mQ8DokcuPh*+!evB6y` zDj*B$@u!2yrQRd*cVpm~wM~@z+-s^o#qFly(l9Ju9t}RxraJ8Nj;tSl^5t1bN$9m7 zrN0{0L9{>0!j~7(d`g*l4>-}( z9ZsYs!dM1}aITM716?czF5uYOqW=*8c025~fM(lBB7kI%&P?nm>^ynpTMD{}k9`Nu znxd5Ddn1gKY^qW)3Wj&W6Sasih!Rvq;E|65HDwiaLOC0_fD>(mxn|A%jKxrE)WF;#Q1@J(zBqVY+`j;6L&|N}su9`{cK8MBhZ7jN;bUjuK+Amb4De zu9OAZLj_0l?fAw#CkSwgZ7Ob-zcRve1}WB>GkmOfvq046?f+0qcH`yn-l;wk$U%`e zLvEzsCY?17sc+p)TK}aH(j;-T7XlFTMU7O4SGQ%DW)g~o8vAnZe;OQ1Q--YR-^wH- zBH;)17T`X+r{IJQjTx6Mn>7_S(T1lAcN}WAbiiOHJDB&x=zT`N=1Zyy01ZhsxaF-u z6s<5etf!R6m851v&=OJzS89Zpxkv;rvz8O)lleB$J>5r$7m6Q6Iy0ZTAW-=-I9FHh z3@*i8_Cp=eocf-1NFaP(1-HRK%A}4);ujq|i|EyY3=0uRD3x`m^z>sY?nV5nfslyQ z`UFENw_Q~)>WDw|X(6PFv_biNM!-WcZ5@N2x}xu=%y_4>c?o}^7~~Zn?h|8d?3q$k z?eKo^BKKTp6CRG24MRrgQiT0v)o3kj7d`jKb!gplHw)~Bo!TbtZT^zH&p?KB@t|fe zoz&2Crp71&PJ$-R50stQX|~OF6j=nqY>`vFtB12g+y-rMwNK2(&m28~hb0`Hoc4+lNNu%bVM{)%{ZNzfRV=CjC^(7YI&WDvFlb6O^xmNX z%7+xFYu8m=87*$lL?;tc`sY(bZGVMn_NzQHRGE~mi@y`59!Y>F-24JEG8IJ|a>cOH zvF>L)#{D?R)DuO?%7N%==+bhpo&TpD>Q1x_|m*Y3FIWlWMXc4y8L`=j0CCfVHr7 zB8O5sg$5w+WM;ZSv!*E@bBp)^d3Jy|_fr*r)!f1gkHaBHTeAoECCTgAZx=34Hu5w9 zSwW?k^WO%f4cuDQ0YTrxg}S9`3xj9}P{P1VGg~P3T7p9eUf7;R+C1Ko3+6%)%=)fI zSQ)yOsj?JCsvemq*BY33mDkWJPt`fJ%_5{}f@wQ%gxu4U;n;$>>mh+V2;a-p$^W|E zQc)Q@j^)17?{Wh~$YLF)j>t<`I=G|Rqj&9}QqAmeZM8ccpaUf{=NVO-8R3EYY5HjL z(UK!-L_LD?Eqj*Z$A`QXU+pl&$6$jo~{_wh8l&H1RGo4i?aB?B+ zxIvFB>0#zbgb%2;LS}leRP8?Hs!+#H%*jp>O4H35$PdSyzMZSDT8QzIp@2>a4C!$$ zs)_L1>?@C$D35|71&}-64oGL9!P21 zPo&SxvcTt_b>*v;C_&()Ar&$~9hJy=gf{^%>-qe~2_Ag(rI)|f`yRWk+WlBn`1^K) zrln>BYxqNigYu6jCwuI#lm@U#B5CT)p3#!ja#=-t4$6$@kJV{9{DkUsx=gLfs7@dK zD#Go3X9&}Yfe3enHYCH?R$XO}Yt^s^J$QZIqGmEg4;Wl;KIju4B7L&Fpx>{`a-C0- T$q89V^ZHL+-tQ-Wlj45?iW4ak literal 0 HcmV?d00001 diff --git a/test/ntuple_qcd_700_1000/batch/condor_0.sub b/test/ntuple_qcd_700_1000/batch/condor_0.sub new file mode 100644 index 00000000000..7433db65fad --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_1.sub b/test/ntuple_qcd_700_1000/batch/condor_1.sub new file mode 100644 index 00000000000..e919c7d1f43 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_10.sub b/test/ntuple_qcd_700_1000/batch/condor_10.sub new file mode 100644 index 00000000000..0c22df20285 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_100.sub b/test/ntuple_qcd_700_1000/batch/condor_100.sub new file mode 100644 index 00000000000..744f8502cc0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_100.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.100.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_100.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.100.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_101.sub b/test/ntuple_qcd_700_1000/batch/condor_101.sub new file mode 100644 index 00000000000..1159c56c376 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_101.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.101.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_101.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.101.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_102.sub b/test/ntuple_qcd_700_1000/batch/condor_102.sub new file mode 100644 index 00000000000..5773ba1db00 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_102.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.102.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_102.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.102.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_103.sub b/test/ntuple_qcd_700_1000/batch/condor_103.sub new file mode 100644 index 00000000000..1ce087bf7ba --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_103.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.103.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_103.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.103.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_104.sub b/test/ntuple_qcd_700_1000/batch/condor_104.sub new file mode 100644 index 00000000000..c9be92bfdd4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_104.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.104.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_104.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.104.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_105.sub b/test/ntuple_qcd_700_1000/batch/condor_105.sub new file mode 100644 index 00000000000..00001735d48 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_105.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.105.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_105.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.105.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_106.sub b/test/ntuple_qcd_700_1000/batch/condor_106.sub new file mode 100644 index 00000000000..02c90995739 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_106.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.106.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_106.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.106.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_107.sub b/test/ntuple_qcd_700_1000/batch/condor_107.sub new file mode 100644 index 00000000000..fa3383ec24d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_107.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.107.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_107.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.107.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_108.sub b/test/ntuple_qcd_700_1000/batch/condor_108.sub new file mode 100644 index 00000000000..02e5e140c4b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_108.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.108.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_108.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.108.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_109.sub b/test/ntuple_qcd_700_1000/batch/condor_109.sub new file mode 100644 index 00000000000..481158478dd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_109.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.109.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_109.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.109.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_11.sub b/test/ntuple_qcd_700_1000/batch/condor_11.sub new file mode 100644 index 00000000000..4c5bd2857eb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_110.sub b/test/ntuple_qcd_700_1000/batch/condor_110.sub new file mode 100644 index 00000000000..aba69097e5d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_110.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.110.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_110.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.110.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_111.sub b/test/ntuple_qcd_700_1000/batch/condor_111.sub new file mode 100644 index 00000000000..6282a7d3b50 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_111.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.111.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_111.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.111.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_112.sub b/test/ntuple_qcd_700_1000/batch/condor_112.sub new file mode 100644 index 00000000000..106bdf6be67 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_112.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.112.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_112.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.112.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_113.sub b/test/ntuple_qcd_700_1000/batch/condor_113.sub new file mode 100644 index 00000000000..2489d88d7b4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_113.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.113.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_113.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.113.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_114.sub b/test/ntuple_qcd_700_1000/batch/condor_114.sub new file mode 100644 index 00000000000..d83c213a566 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_114.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.114.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_114.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.114.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_115.sub b/test/ntuple_qcd_700_1000/batch/condor_115.sub new file mode 100644 index 00000000000..6fc92eecedb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_115.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.115.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_115.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.115.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_116.sub b/test/ntuple_qcd_700_1000/batch/condor_116.sub new file mode 100644 index 00000000000..ef4304b6e78 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_116.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.116.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_116.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.116.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_117.sub b/test/ntuple_qcd_700_1000/batch/condor_117.sub new file mode 100644 index 00000000000..da1da78a065 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_117.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.117.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_117.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.117.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_118.sub b/test/ntuple_qcd_700_1000/batch/condor_118.sub new file mode 100644 index 00000000000..1cd5fe87bb7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_118.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.118.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_118.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.118.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_119.sub b/test/ntuple_qcd_700_1000/batch/condor_119.sub new file mode 100644 index 00000000000..83a68d1bf05 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_119.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.119.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_119.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.119.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_12.sub b/test/ntuple_qcd_700_1000/batch/condor_12.sub new file mode 100644 index 00000000000..36be9c4ae27 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_120.sub b/test/ntuple_qcd_700_1000/batch/condor_120.sub new file mode 100644 index 00000000000..95162243b03 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_120.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.120.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_120.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.120.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_121.sub b/test/ntuple_qcd_700_1000/batch/condor_121.sub new file mode 100644 index 00000000000..ded1058e361 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_121.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.121.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_121.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.121.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_122.sub b/test/ntuple_qcd_700_1000/batch/condor_122.sub new file mode 100644 index 00000000000..6b6b8382fd0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_122.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.122.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_122.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.122.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_123.sub b/test/ntuple_qcd_700_1000/batch/condor_123.sub new file mode 100644 index 00000000000..50d4a591a8c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_123.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.123.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_123.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.123.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_124.sub b/test/ntuple_qcd_700_1000/batch/condor_124.sub new file mode 100644 index 00000000000..1958be02da8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_124.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.124.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_124.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.124.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_125.sub b/test/ntuple_qcd_700_1000/batch/condor_125.sub new file mode 100644 index 00000000000..5169e76f7bc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_125.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.125.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_125.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.125.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_126.sub b/test/ntuple_qcd_700_1000/batch/condor_126.sub new file mode 100644 index 00000000000..78bc2127797 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_126.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.126.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_126.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.126.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_127.sub b/test/ntuple_qcd_700_1000/batch/condor_127.sub new file mode 100644 index 00000000000..ea267cd90ea --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_127.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.127.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_127.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.127.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_128.sub b/test/ntuple_qcd_700_1000/batch/condor_128.sub new file mode 100644 index 00000000000..d8755190752 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_128.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.128.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_128.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.128.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_129.sub b/test/ntuple_qcd_700_1000/batch/condor_129.sub new file mode 100644 index 00000000000..37029abe14f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_129.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.129.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_129.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.129.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_13.sub b/test/ntuple_qcd_700_1000/batch/condor_13.sub new file mode 100644 index 00000000000..81ba4441c88 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_130.sub b/test/ntuple_qcd_700_1000/batch/condor_130.sub new file mode 100644 index 00000000000..808b97a3c74 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_130.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.130.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_130.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.130.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_131.sub b/test/ntuple_qcd_700_1000/batch/condor_131.sub new file mode 100644 index 00000000000..abdcfcbaba3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_131.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.131.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_131.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.131.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_132.sub b/test/ntuple_qcd_700_1000/batch/condor_132.sub new file mode 100644 index 00000000000..16ad04400b5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_132.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.132.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_132.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.132.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_133.sub b/test/ntuple_qcd_700_1000/batch/condor_133.sub new file mode 100644 index 00000000000..5b209f85975 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_133.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.133.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_133.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.133.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_134.sub b/test/ntuple_qcd_700_1000/batch/condor_134.sub new file mode 100644 index 00000000000..92de3b24da6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_134.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.134.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_134.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.134.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_135.sub b/test/ntuple_qcd_700_1000/batch/condor_135.sub new file mode 100644 index 00000000000..f6dc82ca9a3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_135.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.135.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_135.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.135.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_136.sub b/test/ntuple_qcd_700_1000/batch/condor_136.sub new file mode 100644 index 00000000000..b15a8e38a14 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_136.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.136.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_136.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.136.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_137.sub b/test/ntuple_qcd_700_1000/batch/condor_137.sub new file mode 100644 index 00000000000..cf3bdd661ee --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_137.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.137.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_137.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.137.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_138.sub b/test/ntuple_qcd_700_1000/batch/condor_138.sub new file mode 100644 index 00000000000..f7c2fa118b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_138.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.138.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_138.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.138.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_139.sub b/test/ntuple_qcd_700_1000/batch/condor_139.sub new file mode 100644 index 00000000000..da5dc058c91 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_139.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.139.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_139.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.139.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_14.sub b/test/ntuple_qcd_700_1000/batch/condor_14.sub new file mode 100644 index 00000000000..a94947e2c1b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_140.sub b/test/ntuple_qcd_700_1000/batch/condor_140.sub new file mode 100644 index 00000000000..910380afb67 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_140.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.140.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_140.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.140.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_141.sub b/test/ntuple_qcd_700_1000/batch/condor_141.sub new file mode 100644 index 00000000000..7f2cfaa5b54 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_141.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.141.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_141.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.141.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_142.sub b/test/ntuple_qcd_700_1000/batch/condor_142.sub new file mode 100644 index 00000000000..d35d6e4cb9d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_142.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.142.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_142.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.142.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_143.sub b/test/ntuple_qcd_700_1000/batch/condor_143.sub new file mode 100644 index 00000000000..a4d02317068 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_143.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.143.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_143.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.143.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_144.sub b/test/ntuple_qcd_700_1000/batch/condor_144.sub new file mode 100644 index 00000000000..ecc931d01d2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_144.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.144.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_144.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.144.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_145.sub b/test/ntuple_qcd_700_1000/batch/condor_145.sub new file mode 100644 index 00000000000..5f41698c40a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_145.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.145.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_145.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.145.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_146.sub b/test/ntuple_qcd_700_1000/batch/condor_146.sub new file mode 100644 index 00000000000..58a100fdbc1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_146.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.146.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_146.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.146.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_147.sub b/test/ntuple_qcd_700_1000/batch/condor_147.sub new file mode 100644 index 00000000000..2de91ada761 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_147.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.147.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_147.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.147.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_148.sub b/test/ntuple_qcd_700_1000/batch/condor_148.sub new file mode 100644 index 00000000000..840df3d3759 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_148.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.148.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_148.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.148.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_149.sub b/test/ntuple_qcd_700_1000/batch/condor_149.sub new file mode 100644 index 00000000000..6a281c8b4a6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_149.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.149.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_149.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.149.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_15.sub b/test/ntuple_qcd_700_1000/batch/condor_15.sub new file mode 100644 index 00000000000..201957f0c4f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_15.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.15.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_15.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.15.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_150.sub b/test/ntuple_qcd_700_1000/batch/condor_150.sub new file mode 100644 index 00000000000..2e653deb29b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_150.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.150.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_150.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.150.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_151.sub b/test/ntuple_qcd_700_1000/batch/condor_151.sub new file mode 100644 index 00000000000..ac459218292 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_151.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.151.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_151.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.151.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_152.sub b/test/ntuple_qcd_700_1000/batch/condor_152.sub new file mode 100644 index 00000000000..20eadc7a260 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_152.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.152.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_152.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.152.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_153.sub b/test/ntuple_qcd_700_1000/batch/condor_153.sub new file mode 100644 index 00000000000..3c0e680d590 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_153.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.153.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_153.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.153.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_154.sub b/test/ntuple_qcd_700_1000/batch/condor_154.sub new file mode 100644 index 00000000000..d794f2cfc3f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_154.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.154.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_154.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.154.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_155.sub b/test/ntuple_qcd_700_1000/batch/condor_155.sub new file mode 100644 index 00000000000..3baf9c65aa0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_155.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.155.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_155.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.155.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_156.sub b/test/ntuple_qcd_700_1000/batch/condor_156.sub new file mode 100644 index 00000000000..e4235406b22 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_156.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.156.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_156.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.156.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_157.sub b/test/ntuple_qcd_700_1000/batch/condor_157.sub new file mode 100644 index 00000000000..9097ac10a02 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_157.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.157.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_157.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.157.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_158.sub b/test/ntuple_qcd_700_1000/batch/condor_158.sub new file mode 100644 index 00000000000..2a1b1379ffd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_158.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.158.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_158.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.158.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_159.sub b/test/ntuple_qcd_700_1000/batch/condor_159.sub new file mode 100644 index 00000000000..522aa2c91ab --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_159.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.159.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_159.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.159.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_16.sub b/test/ntuple_qcd_700_1000/batch/condor_16.sub new file mode 100644 index 00000000000..5c090ff58d8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_16.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.16.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_16.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.16.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_160.sub b/test/ntuple_qcd_700_1000/batch/condor_160.sub new file mode 100644 index 00000000000..0e70b85f862 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_160.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.160.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_160.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.160.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_161.sub b/test/ntuple_qcd_700_1000/batch/condor_161.sub new file mode 100644 index 00000000000..083385631f2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_161.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.161.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_161.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.161.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_162.sub b/test/ntuple_qcd_700_1000/batch/condor_162.sub new file mode 100644 index 00000000000..1e13be59e1a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_162.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.162.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_162.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.162.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_163.sub b/test/ntuple_qcd_700_1000/batch/condor_163.sub new file mode 100644 index 00000000000..5f2eb6139a0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_163.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.163.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_163.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.163.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_164.sub b/test/ntuple_qcd_700_1000/batch/condor_164.sub new file mode 100644 index 00000000000..4da163fcd00 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_164.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.164.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_164.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.164.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_165.sub b/test/ntuple_qcd_700_1000/batch/condor_165.sub new file mode 100644 index 00000000000..9c26518c163 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_165.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.165.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_165.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.165.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_166.sub b/test/ntuple_qcd_700_1000/batch/condor_166.sub new file mode 100644 index 00000000000..4583aa0d159 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_166.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.166.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_166.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.166.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_167.sub b/test/ntuple_qcd_700_1000/batch/condor_167.sub new file mode 100644 index 00000000000..d106b6fe4bb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_167.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.167.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_167.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.167.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_168.sub b/test/ntuple_qcd_700_1000/batch/condor_168.sub new file mode 100644 index 00000000000..99b28c78d44 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_168.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.168.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_168.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.168.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_169.sub b/test/ntuple_qcd_700_1000/batch/condor_169.sub new file mode 100644 index 00000000000..b352ba25bb4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_169.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.169.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_169.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.169.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_17.sub b/test/ntuple_qcd_700_1000/batch/condor_17.sub new file mode 100644 index 00000000000..17d7650f8a6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_17.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.17.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_17.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.17.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_170.sub b/test/ntuple_qcd_700_1000/batch/condor_170.sub new file mode 100644 index 00000000000..6c2e30f6708 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_170.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.170.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_170.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.170.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_171.sub b/test/ntuple_qcd_700_1000/batch/condor_171.sub new file mode 100644 index 00000000000..5eb21c952ba --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_171.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.171.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_171.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.171.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_172.sub b/test/ntuple_qcd_700_1000/batch/condor_172.sub new file mode 100644 index 00000000000..d4e2bb410e2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_172.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.172.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_172.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.172.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_173.sub b/test/ntuple_qcd_700_1000/batch/condor_173.sub new file mode 100644 index 00000000000..1bad6018659 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_173.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.173.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_173.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.173.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_174.sub b/test/ntuple_qcd_700_1000/batch/condor_174.sub new file mode 100644 index 00000000000..2a88ca5cd82 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_174.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.174.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_174.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.174.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_175.sub b/test/ntuple_qcd_700_1000/batch/condor_175.sub new file mode 100644 index 00000000000..747be1b720a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_175.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.175.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_175.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.175.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_176.sub b/test/ntuple_qcd_700_1000/batch/condor_176.sub new file mode 100644 index 00000000000..79c98feff87 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_176.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.176.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_176.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.176.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_177.sub b/test/ntuple_qcd_700_1000/batch/condor_177.sub new file mode 100644 index 00000000000..94721fa74d4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_177.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.177.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_177.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.177.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_178.sub b/test/ntuple_qcd_700_1000/batch/condor_178.sub new file mode 100644 index 00000000000..aa34505a9e3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_178.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.178.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_178.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.178.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_179.sub b/test/ntuple_qcd_700_1000/batch/condor_179.sub new file mode 100644 index 00000000000..54ae63bfa7a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_179.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.179.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_179.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.179.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_18.sub b/test/ntuple_qcd_700_1000/batch/condor_18.sub new file mode 100644 index 00000000000..d9c80cd694d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_18.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.18.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_18.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.18.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_180.sub b/test/ntuple_qcd_700_1000/batch/condor_180.sub new file mode 100644 index 00000000000..65003907c40 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_180.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.180.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_180.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.180.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_181.sub b/test/ntuple_qcd_700_1000/batch/condor_181.sub new file mode 100644 index 00000000000..909e1bd75e7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_181.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.181.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_181.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.181.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_182.sub b/test/ntuple_qcd_700_1000/batch/condor_182.sub new file mode 100644 index 00000000000..e259b539eea --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_182.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.182.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_182.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.182.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_183.sub b/test/ntuple_qcd_700_1000/batch/condor_183.sub new file mode 100644 index 00000000000..be18407b815 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_183.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.183.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_183.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.183.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_184.sub b/test/ntuple_qcd_700_1000/batch/condor_184.sub new file mode 100644 index 00000000000..1dbaf765fcf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_184.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.184.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_184.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.184.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_185.sub b/test/ntuple_qcd_700_1000/batch/condor_185.sub new file mode 100644 index 00000000000..836c1d7fb31 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_185.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.185.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_185.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.185.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_186.sub b/test/ntuple_qcd_700_1000/batch/condor_186.sub new file mode 100644 index 00000000000..995ade1d5fe --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_186.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.186.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_186.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.186.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_187.sub b/test/ntuple_qcd_700_1000/batch/condor_187.sub new file mode 100644 index 00000000000..0f4272c48c6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_187.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.187.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_187.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.187.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_188.sub b/test/ntuple_qcd_700_1000/batch/condor_188.sub new file mode 100644 index 00000000000..a76229bebde --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_188.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.188.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_188.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.188.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_189.sub b/test/ntuple_qcd_700_1000/batch/condor_189.sub new file mode 100644 index 00000000000..73365f91da6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_189.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.189.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_189.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.189.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_19.sub b/test/ntuple_qcd_700_1000/batch/condor_19.sub new file mode 100644 index 00000000000..b02e3b74496 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_19.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.19.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_19.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.19.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_190.sub b/test/ntuple_qcd_700_1000/batch/condor_190.sub new file mode 100644 index 00000000000..e13b401f16b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_190.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.190.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_190.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.190.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_191.sub b/test/ntuple_qcd_700_1000/batch/condor_191.sub new file mode 100644 index 00000000000..3fbbb821be0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_191.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.191.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_191.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.191.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_192.sub b/test/ntuple_qcd_700_1000/batch/condor_192.sub new file mode 100644 index 00000000000..25394bc1a1a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_192.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.192.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_192.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.192.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_193.sub b/test/ntuple_qcd_700_1000/batch/condor_193.sub new file mode 100644 index 00000000000..1c00e0515a8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_193.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.193.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_193.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.193.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_194.sub b/test/ntuple_qcd_700_1000/batch/condor_194.sub new file mode 100644 index 00000000000..f2a792bb346 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_194.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.194.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_194.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.194.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_195.sub b/test/ntuple_qcd_700_1000/batch/condor_195.sub new file mode 100644 index 00000000000..3760d294b4b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_195.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.195.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_195.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.195.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_196.sub b/test/ntuple_qcd_700_1000/batch/condor_196.sub new file mode 100644 index 00000000000..7a105255cbe --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_196.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.196.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_196.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.196.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_197.sub b/test/ntuple_qcd_700_1000/batch/condor_197.sub new file mode 100644 index 00000000000..a4d8c7b9dcf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_197.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.197.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_197.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.197.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_198.sub b/test/ntuple_qcd_700_1000/batch/condor_198.sub new file mode 100644 index 00000000000..88d3e8d3ae9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_198.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.198.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_198.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.198.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_199.sub b/test/ntuple_qcd_700_1000/batch/condor_199.sub new file mode 100644 index 00000000000..2bd23911af7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_199.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.199.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_199.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.199.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_2.sub b/test/ntuple_qcd_700_1000/batch/condor_2.sub new file mode 100644 index 00000000000..fbb19a584b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_20.sub b/test/ntuple_qcd_700_1000/batch/condor_20.sub new file mode 100644 index 00000000000..f9dc7fec837 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_20.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.20.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_20.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.20.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_200.sub b/test/ntuple_qcd_700_1000/batch/condor_200.sub new file mode 100644 index 00000000000..26ecad79c4a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_200.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.200.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_200.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.200.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_201.sub b/test/ntuple_qcd_700_1000/batch/condor_201.sub new file mode 100644 index 00000000000..10a156cf89f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_201.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.201.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_201.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.201.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_202.sub b/test/ntuple_qcd_700_1000/batch/condor_202.sub new file mode 100644 index 00000000000..b9dec82e016 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_202.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.202.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_202.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.202.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_203.sub b/test/ntuple_qcd_700_1000/batch/condor_203.sub new file mode 100644 index 00000000000..4dcae4b31d9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_203.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.203.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_203.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.203.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_204.sub b/test/ntuple_qcd_700_1000/batch/condor_204.sub new file mode 100644 index 00000000000..d9e4dabdce0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_204.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.204.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_204.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.204.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_205.sub b/test/ntuple_qcd_700_1000/batch/condor_205.sub new file mode 100644 index 00000000000..2879ac066f0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_205.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.205.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_205.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.205.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_206.sub b/test/ntuple_qcd_700_1000/batch/condor_206.sub new file mode 100644 index 00000000000..e0c1d1c526f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_206.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.206.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_206.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.206.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_207.sub b/test/ntuple_qcd_700_1000/batch/condor_207.sub new file mode 100644 index 00000000000..08421052bd0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_207.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.207.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_207.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.207.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_208.sub b/test/ntuple_qcd_700_1000/batch/condor_208.sub new file mode 100644 index 00000000000..474b9966704 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_208.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.208.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_208.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.208.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_209.sub b/test/ntuple_qcd_700_1000/batch/condor_209.sub new file mode 100644 index 00000000000..8cec7c4ef23 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_209.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.209.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_209.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.209.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_21.sub b/test/ntuple_qcd_700_1000/batch/condor_21.sub new file mode 100644 index 00000000000..fbaf57c9bf4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_21.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.21.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_21.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.21.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_210.sub b/test/ntuple_qcd_700_1000/batch/condor_210.sub new file mode 100644 index 00000000000..e9cd7719a06 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_210.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.210.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_210.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.210.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_211.sub b/test/ntuple_qcd_700_1000/batch/condor_211.sub new file mode 100644 index 00000000000..6edacdc1e69 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_211.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.211.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_211.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.211.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_212.sub b/test/ntuple_qcd_700_1000/batch/condor_212.sub new file mode 100644 index 00000000000..04304c549bb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_212.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.212.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_212.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.212.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_213.sub b/test/ntuple_qcd_700_1000/batch/condor_213.sub new file mode 100644 index 00000000000..a61f9fe562f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_213.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.213.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_213.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.213.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_214.sub b/test/ntuple_qcd_700_1000/batch/condor_214.sub new file mode 100644 index 00000000000..c4df2cdec65 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_214.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.214.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_214.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.214.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_215.sub b/test/ntuple_qcd_700_1000/batch/condor_215.sub new file mode 100644 index 00000000000..7231fad7d0e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_215.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.215.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_215.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.215.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_216.sub b/test/ntuple_qcd_700_1000/batch/condor_216.sub new file mode 100644 index 00000000000..c5e580ae21e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_216.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.216.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_216.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.216.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_217.sub b/test/ntuple_qcd_700_1000/batch/condor_217.sub new file mode 100644 index 00000000000..71b7841daf3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_217.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.217.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_217.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.217.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_218.sub b/test/ntuple_qcd_700_1000/batch/condor_218.sub new file mode 100644 index 00000000000..b1442bcaf5b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_218.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.218.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_218.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.218.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_219.sub b/test/ntuple_qcd_700_1000/batch/condor_219.sub new file mode 100644 index 00000000000..d1618bed329 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_219.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.219.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_219.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.219.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_22.sub b/test/ntuple_qcd_700_1000/batch/condor_22.sub new file mode 100644 index 00000000000..21144a4ec60 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_22.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.22.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_22.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.22.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_220.sub b/test/ntuple_qcd_700_1000/batch/condor_220.sub new file mode 100644 index 00000000000..954f1a256a6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_220.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.220.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_220.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.220.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_221.sub b/test/ntuple_qcd_700_1000/batch/condor_221.sub new file mode 100644 index 00000000000..adb8dffe698 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_221.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.221.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_221.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.221.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_222.sub b/test/ntuple_qcd_700_1000/batch/condor_222.sub new file mode 100644 index 00000000000..acbcea6b807 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_222.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.222.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_222.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.222.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_223.sub b/test/ntuple_qcd_700_1000/batch/condor_223.sub new file mode 100644 index 00000000000..8b8eacd9da5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_223.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.223.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_223.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.223.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_224.sub b/test/ntuple_qcd_700_1000/batch/condor_224.sub new file mode 100644 index 00000000000..d962f7cb272 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_224.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.224.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_224.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.224.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_225.sub b/test/ntuple_qcd_700_1000/batch/condor_225.sub new file mode 100644 index 00000000000..3a95453b3c9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_225.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.225.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_225.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.225.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_226.sub b/test/ntuple_qcd_700_1000/batch/condor_226.sub new file mode 100644 index 00000000000..19d3ff9047c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_226.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.226.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_226.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.226.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_227.sub b/test/ntuple_qcd_700_1000/batch/condor_227.sub new file mode 100644 index 00000000000..7155473bfba --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_227.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.227.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_227.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.227.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_228.sub b/test/ntuple_qcd_700_1000/batch/condor_228.sub new file mode 100644 index 00000000000..1e047d704f2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_228.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.228.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_228.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.228.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_229.sub b/test/ntuple_qcd_700_1000/batch/condor_229.sub new file mode 100644 index 00000000000..821f9d0be20 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_229.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.229.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_229.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.229.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_23.sub b/test/ntuple_qcd_700_1000/batch/condor_23.sub new file mode 100644 index 00000000000..32ff998fb6a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_23.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.23.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_23.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.23.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_230.sub b/test/ntuple_qcd_700_1000/batch/condor_230.sub new file mode 100644 index 00000000000..55901df5353 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_230.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.230.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_230.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.230.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_231.sub b/test/ntuple_qcd_700_1000/batch/condor_231.sub new file mode 100644 index 00000000000..42bc22db820 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_231.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.231.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_231.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.231.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_232.sub b/test/ntuple_qcd_700_1000/batch/condor_232.sub new file mode 100644 index 00000000000..b1c80c4ca12 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_232.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.232.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_232.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.232.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_233.sub b/test/ntuple_qcd_700_1000/batch/condor_233.sub new file mode 100644 index 00000000000..4bfaeb2740a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_233.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.233.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_233.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.233.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_234.sub b/test/ntuple_qcd_700_1000/batch/condor_234.sub new file mode 100644 index 00000000000..11be7279473 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_234.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.234.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_234.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.234.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_235.sub b/test/ntuple_qcd_700_1000/batch/condor_235.sub new file mode 100644 index 00000000000..8d4b52ae3f1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_235.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.235.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_235.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.235.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_236.sub b/test/ntuple_qcd_700_1000/batch/condor_236.sub new file mode 100644 index 00000000000..7ac1b13f799 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_236.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.236.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_236.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.236.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_237.sub b/test/ntuple_qcd_700_1000/batch/condor_237.sub new file mode 100644 index 00000000000..6a996a9e8bb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_237.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.237.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_237.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.237.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_238.sub b/test/ntuple_qcd_700_1000/batch/condor_238.sub new file mode 100644 index 00000000000..c468d33af25 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_238.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.238.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_238.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.238.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_239.sub b/test/ntuple_qcd_700_1000/batch/condor_239.sub new file mode 100644 index 00000000000..3dbc56bf3dc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_239.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.239.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_239.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.239.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_24.sub b/test/ntuple_qcd_700_1000/batch/condor_24.sub new file mode 100644 index 00000000000..64c0058c720 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_24.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.24.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_24.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.24.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_240.sub b/test/ntuple_qcd_700_1000/batch/condor_240.sub new file mode 100644 index 00000000000..8105a15b458 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_240.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.240.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_240.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.240.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_241.sub b/test/ntuple_qcd_700_1000/batch/condor_241.sub new file mode 100644 index 00000000000..3271e1ad2c0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_241.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.241.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_241.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.241.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_242.sub b/test/ntuple_qcd_700_1000/batch/condor_242.sub new file mode 100644 index 00000000000..af86d3d7d12 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_242.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.242.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_242.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.242.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_243.sub b/test/ntuple_qcd_700_1000/batch/condor_243.sub new file mode 100644 index 00000000000..55201e28f31 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_243.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.243.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_243.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.243.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_244.sub b/test/ntuple_qcd_700_1000/batch/condor_244.sub new file mode 100644 index 00000000000..a99640585b0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_244.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.244.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_244.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.244.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_245.sub b/test/ntuple_qcd_700_1000/batch/condor_245.sub new file mode 100644 index 00000000000..2afbb7bf564 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_245.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.245.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_245.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.245.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_246.sub b/test/ntuple_qcd_700_1000/batch/condor_246.sub new file mode 100644 index 00000000000..45107f7c963 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_246.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.246.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_246.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.246.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_247.sub b/test/ntuple_qcd_700_1000/batch/condor_247.sub new file mode 100644 index 00000000000..8af2df399c9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_247.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.247.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_247.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.247.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_248.sub b/test/ntuple_qcd_700_1000/batch/condor_248.sub new file mode 100644 index 00000000000..8e72e8cc0ea --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_248.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.248.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_248.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.248.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_249.sub b/test/ntuple_qcd_700_1000/batch/condor_249.sub new file mode 100644 index 00000000000..12d0dc322ee --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_249.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.249.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_249.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.249.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_25.sub b/test/ntuple_qcd_700_1000/batch/condor_25.sub new file mode 100644 index 00000000000..c0300249bf2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_25.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.25.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_25.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.25.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_250.sub b/test/ntuple_qcd_700_1000/batch/condor_250.sub new file mode 100644 index 00000000000..cb12c8365a5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_250.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.250.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_250.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.250.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_251.sub b/test/ntuple_qcd_700_1000/batch/condor_251.sub new file mode 100644 index 00000000000..9326d2a72fc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_251.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.251.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_251.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.251.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_252.sub b/test/ntuple_qcd_700_1000/batch/condor_252.sub new file mode 100644 index 00000000000..08a04dd6b86 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_252.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.252.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_252.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.252.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_253.sub b/test/ntuple_qcd_700_1000/batch/condor_253.sub new file mode 100644 index 00000000000..2987fe36389 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_253.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.253.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_253.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.253.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_254.sub b/test/ntuple_qcd_700_1000/batch/condor_254.sub new file mode 100644 index 00000000000..db784f48a69 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_254.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.254.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_254.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.254.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_255.sub b/test/ntuple_qcd_700_1000/batch/condor_255.sub new file mode 100644 index 00000000000..128bec165c6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_255.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.255.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_255.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.255.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_256.sub b/test/ntuple_qcd_700_1000/batch/condor_256.sub new file mode 100644 index 00000000000..1e02dce7a89 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_256.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.256.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_256.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.256.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_257.sub b/test/ntuple_qcd_700_1000/batch/condor_257.sub new file mode 100644 index 00000000000..f06c2afb1b2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_257.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.257.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_257.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.257.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_258.sub b/test/ntuple_qcd_700_1000/batch/condor_258.sub new file mode 100644 index 00000000000..9d3b253e3e5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_258.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.258.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_258.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.258.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_259.sub b/test/ntuple_qcd_700_1000/batch/condor_259.sub new file mode 100644 index 00000000000..6800c65492e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_259.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.259.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_259.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.259.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_26.sub b/test/ntuple_qcd_700_1000/batch/condor_26.sub new file mode 100644 index 00000000000..348a7212ba6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_26.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.26.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_26.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.26.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_260.sub b/test/ntuple_qcd_700_1000/batch/condor_260.sub new file mode 100644 index 00000000000..bb8db9c9edd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_260.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.260.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_260.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.260.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_261.sub b/test/ntuple_qcd_700_1000/batch/condor_261.sub new file mode 100644 index 00000000000..aac4208e72b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_261.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.261.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_261.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.261.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_262.sub b/test/ntuple_qcd_700_1000/batch/condor_262.sub new file mode 100644 index 00000000000..a8ee19e780b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_262.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.262.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_262.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.262.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_263.sub b/test/ntuple_qcd_700_1000/batch/condor_263.sub new file mode 100644 index 00000000000..25e3124d2c2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_263.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.263.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_263.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.263.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_264.sub b/test/ntuple_qcd_700_1000/batch/condor_264.sub new file mode 100644 index 00000000000..6ab10a12039 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_264.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.264.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_264.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.264.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_265.sub b/test/ntuple_qcd_700_1000/batch/condor_265.sub new file mode 100644 index 00000000000..67aac4c49b0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_265.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.265.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_265.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.265.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_266.sub b/test/ntuple_qcd_700_1000/batch/condor_266.sub new file mode 100644 index 00000000000..4863830e874 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_266.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.266.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_266.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.266.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_267.sub b/test/ntuple_qcd_700_1000/batch/condor_267.sub new file mode 100644 index 00000000000..2170c09c927 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_267.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.267.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_267.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.267.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_268.sub b/test/ntuple_qcd_700_1000/batch/condor_268.sub new file mode 100644 index 00000000000..5c37b8121a4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_268.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.268.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_268.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.268.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_269.sub b/test/ntuple_qcd_700_1000/batch/condor_269.sub new file mode 100644 index 00000000000..253c61e4ca5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_269.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.269.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_269.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.269.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_27.sub b/test/ntuple_qcd_700_1000/batch/condor_27.sub new file mode 100644 index 00000000000..fdaac1fca0a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_27.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.27.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_27.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.27.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_270.sub b/test/ntuple_qcd_700_1000/batch/condor_270.sub new file mode 100644 index 00000000000..2d65dd44b4d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_270.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.270.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_270.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.270.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_271.sub b/test/ntuple_qcd_700_1000/batch/condor_271.sub new file mode 100644 index 00000000000..6c558c7283d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_271.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.271.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_271.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.271.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_272.sub b/test/ntuple_qcd_700_1000/batch/condor_272.sub new file mode 100644 index 00000000000..37853f859d1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_272.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.272.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_272.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.272.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_273.sub b/test/ntuple_qcd_700_1000/batch/condor_273.sub new file mode 100644 index 00000000000..5853e7f5267 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_273.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.273.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_273.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.273.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_274.sub b/test/ntuple_qcd_700_1000/batch/condor_274.sub new file mode 100644 index 00000000000..ef11e5100a6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_274.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.274.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_274.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.274.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_275.sub b/test/ntuple_qcd_700_1000/batch/condor_275.sub new file mode 100644 index 00000000000..754505470b4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_275.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.275.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_275.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.275.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_276.sub b/test/ntuple_qcd_700_1000/batch/condor_276.sub new file mode 100644 index 00000000000..3047bfda7c3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_276.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.276.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_276.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.276.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_277.sub b/test/ntuple_qcd_700_1000/batch/condor_277.sub new file mode 100644 index 00000000000..b6b760c7847 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_277.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.277.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_277.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.277.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_278.sub b/test/ntuple_qcd_700_1000/batch/condor_278.sub new file mode 100644 index 00000000000..bcf52815706 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_278.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.278.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_278.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.278.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_279.sub b/test/ntuple_qcd_700_1000/batch/condor_279.sub new file mode 100644 index 00000000000..c7151c9fd22 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_279.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.279.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_279.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.279.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_28.sub b/test/ntuple_qcd_700_1000/batch/condor_28.sub new file mode 100644 index 00000000000..4bc31fc0d7a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_28.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.28.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_28.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.28.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_280.sub b/test/ntuple_qcd_700_1000/batch/condor_280.sub new file mode 100644 index 00000000000..4a7de48760d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_280.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.280.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_280.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.280.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_281.sub b/test/ntuple_qcd_700_1000/batch/condor_281.sub new file mode 100644 index 00000000000..e5edf641823 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_281.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.281.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_281.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.281.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_282.sub b/test/ntuple_qcd_700_1000/batch/condor_282.sub new file mode 100644 index 00000000000..73a61345738 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_282.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.282.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_282.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.282.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_283.sub b/test/ntuple_qcd_700_1000/batch/condor_283.sub new file mode 100644 index 00000000000..3d576719967 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_283.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.283.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_283.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.283.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_284.sub b/test/ntuple_qcd_700_1000/batch/condor_284.sub new file mode 100644 index 00000000000..01ce2c1928c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_284.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.284.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_284.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.284.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_285.sub b/test/ntuple_qcd_700_1000/batch/condor_285.sub new file mode 100644 index 00000000000..83dc2971046 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_285.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.285.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_285.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.285.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_286.sub b/test/ntuple_qcd_700_1000/batch/condor_286.sub new file mode 100644 index 00000000000..aa8b95f3d57 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_286.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.286.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_286.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.286.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_287.sub b/test/ntuple_qcd_700_1000/batch/condor_287.sub new file mode 100644 index 00000000000..8c36c59395d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_287.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.287.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_287.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.287.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_288.sub b/test/ntuple_qcd_700_1000/batch/condor_288.sub new file mode 100644 index 00000000000..b460d8bebf9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_288.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.288.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_288.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.288.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_289.sub b/test/ntuple_qcd_700_1000/batch/condor_289.sub new file mode 100644 index 00000000000..1530d4cded2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_289.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.289.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_289.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.289.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_29.sub b/test/ntuple_qcd_700_1000/batch/condor_29.sub new file mode 100644 index 00000000000..3c560d7784a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_29.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.29.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_29.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.29.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_290.sub b/test/ntuple_qcd_700_1000/batch/condor_290.sub new file mode 100644 index 00000000000..016f0fb915f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_290.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.290.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_290.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.290.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_291.sub b/test/ntuple_qcd_700_1000/batch/condor_291.sub new file mode 100644 index 00000000000..5adbd28f862 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_291.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.291.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_291.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.291.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_292.sub b/test/ntuple_qcd_700_1000/batch/condor_292.sub new file mode 100644 index 00000000000..c8735afb2b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_292.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.292.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_292.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.292.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_293.sub b/test/ntuple_qcd_700_1000/batch/condor_293.sub new file mode 100644 index 00000000000..8808217f24a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_293.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.293.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_293.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.293.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_294.sub b/test/ntuple_qcd_700_1000/batch/condor_294.sub new file mode 100644 index 00000000000..c0e8d280a8d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_294.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.294.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_294.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.294.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_295.sub b/test/ntuple_qcd_700_1000/batch/condor_295.sub new file mode 100644 index 00000000000..e02d6ba279a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_295.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.295.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_295.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.295.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_296.sub b/test/ntuple_qcd_700_1000/batch/condor_296.sub new file mode 100644 index 00000000000..29d784ea845 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_296.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.296.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_296.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.296.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_297.sub b/test/ntuple_qcd_700_1000/batch/condor_297.sub new file mode 100644 index 00000000000..e68ca66050b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_297.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.297.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_297.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.297.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_298.sub b/test/ntuple_qcd_700_1000/batch/condor_298.sub new file mode 100644 index 00000000000..46ac5411618 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_298.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.298.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_298.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.298.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_299.sub b/test/ntuple_qcd_700_1000/batch/condor_299.sub new file mode 100644 index 00000000000..4f04b9feee6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_299.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.299.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_299.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.299.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_3.sub b/test/ntuple_qcd_700_1000/batch/condor_3.sub new file mode 100644 index 00000000000..1258ae03af5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_30.sub b/test/ntuple_qcd_700_1000/batch/condor_30.sub new file mode 100644 index 00000000000..f81bd972adc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_30.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.30.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_30.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.30.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_300.sub b/test/ntuple_qcd_700_1000/batch/condor_300.sub new file mode 100644 index 00000000000..4c066edcb2d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_300.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.300.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_300.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.300.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_301.sub b/test/ntuple_qcd_700_1000/batch/condor_301.sub new file mode 100644 index 00000000000..fc007b3d1be --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_301.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.301.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_301.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.301.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_302.sub b/test/ntuple_qcd_700_1000/batch/condor_302.sub new file mode 100644 index 00000000000..6898e063e63 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_302.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.302.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_302.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.302.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_303.sub b/test/ntuple_qcd_700_1000/batch/condor_303.sub new file mode 100644 index 00000000000..986e9bf31b3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_303.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.303.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_303.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.303.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_304.sub b/test/ntuple_qcd_700_1000/batch/condor_304.sub new file mode 100644 index 00000000000..a9c162df559 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_304.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.304.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_304.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.304.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_305.sub b/test/ntuple_qcd_700_1000/batch/condor_305.sub new file mode 100644 index 00000000000..25ae3e23405 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_305.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.305.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_305.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.305.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_306.sub b/test/ntuple_qcd_700_1000/batch/condor_306.sub new file mode 100644 index 00000000000..2eb34e98019 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_306.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.306.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_306.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.306.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_307.sub b/test/ntuple_qcd_700_1000/batch/condor_307.sub new file mode 100644 index 00000000000..023417d2aab --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_307.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.307.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_307.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.307.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_308.sub b/test/ntuple_qcd_700_1000/batch/condor_308.sub new file mode 100644 index 00000000000..28e73e7d6d8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_308.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.308.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_308.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.308.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_309.sub b/test/ntuple_qcd_700_1000/batch/condor_309.sub new file mode 100644 index 00000000000..ffc94559b16 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_309.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.309.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_309.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.309.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_31.sub b/test/ntuple_qcd_700_1000/batch/condor_31.sub new file mode 100644 index 00000000000..ca0bf50ee44 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_31.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.31.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_31.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.31.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_310.sub b/test/ntuple_qcd_700_1000/batch/condor_310.sub new file mode 100644 index 00000000000..5b770a75c8b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_310.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.310.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_310.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.310.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_311.sub b/test/ntuple_qcd_700_1000/batch/condor_311.sub new file mode 100644 index 00000000000..63e808be2b3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_311.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.311.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_311.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.311.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_312.sub b/test/ntuple_qcd_700_1000/batch/condor_312.sub new file mode 100644 index 00000000000..a061ad01d1b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_312.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.312.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_312.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.312.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_313.sub b/test/ntuple_qcd_700_1000/batch/condor_313.sub new file mode 100644 index 00000000000..e1fa3f9aded --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_313.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.313.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_313.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.313.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_314.sub b/test/ntuple_qcd_700_1000/batch/condor_314.sub new file mode 100644 index 00000000000..35c5a0ab2b1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_314.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.314.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_314.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.314.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_315.sub b/test/ntuple_qcd_700_1000/batch/condor_315.sub new file mode 100644 index 00000000000..7edb79217d3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_315.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.315.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_315.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.315.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_316.sub b/test/ntuple_qcd_700_1000/batch/condor_316.sub new file mode 100644 index 00000000000..ddfccb8e68b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_316.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.316.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_316.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.316.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_317.sub b/test/ntuple_qcd_700_1000/batch/condor_317.sub new file mode 100644 index 00000000000..ee4f4e1a449 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_317.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.317.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_317.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.317.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_318.sub b/test/ntuple_qcd_700_1000/batch/condor_318.sub new file mode 100644 index 00000000000..04b943a2a0f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_318.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.318.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_318.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.318.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_319.sub b/test/ntuple_qcd_700_1000/batch/condor_319.sub new file mode 100644 index 00000000000..b8f342fda2d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_319.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.319.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_319.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.319.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_32.sub b/test/ntuple_qcd_700_1000/batch/condor_32.sub new file mode 100644 index 00000000000..14c7256a8d0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_32.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.32.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_32.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.32.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_320.sub b/test/ntuple_qcd_700_1000/batch/condor_320.sub new file mode 100644 index 00000000000..f97ebb28a5b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_320.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.320.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_320.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.320.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_321.sub b/test/ntuple_qcd_700_1000/batch/condor_321.sub new file mode 100644 index 00000000000..a7cf0aecff8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_321.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.321.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_321.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.321.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_322.sub b/test/ntuple_qcd_700_1000/batch/condor_322.sub new file mode 100644 index 00000000000..bdde3c9c35f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_322.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.322.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_322.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.322.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_323.sub b/test/ntuple_qcd_700_1000/batch/condor_323.sub new file mode 100644 index 00000000000..acef5ebc9ae --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_323.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.323.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_323.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.323.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_324.sub b/test/ntuple_qcd_700_1000/batch/condor_324.sub new file mode 100644 index 00000000000..91b27540dcd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_324.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.324.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_324.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.324.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_325.sub b/test/ntuple_qcd_700_1000/batch/condor_325.sub new file mode 100644 index 00000000000..1a640a604ad --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_325.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.325.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_325.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.325.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_326.sub b/test/ntuple_qcd_700_1000/batch/condor_326.sub new file mode 100644 index 00000000000..58329f857ae --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_326.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.326.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_326.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.326.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_327.sub b/test/ntuple_qcd_700_1000/batch/condor_327.sub new file mode 100644 index 00000000000..1e00cd6898a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_327.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.327.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_327.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.327.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_328.sub b/test/ntuple_qcd_700_1000/batch/condor_328.sub new file mode 100644 index 00000000000..ec9a57661fc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_328.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.328.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_328.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.328.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_329.sub b/test/ntuple_qcd_700_1000/batch/condor_329.sub new file mode 100644 index 00000000000..feaf022f4a8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_329.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.329.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_329.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.329.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_33.sub b/test/ntuple_qcd_700_1000/batch/condor_33.sub new file mode 100644 index 00000000000..3648086ce8c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_33.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.33.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_33.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.33.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_330.sub b/test/ntuple_qcd_700_1000/batch/condor_330.sub new file mode 100644 index 00000000000..093426f52c8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_330.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.330.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_330.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.330.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_331.sub b/test/ntuple_qcd_700_1000/batch/condor_331.sub new file mode 100644 index 00000000000..52080b5fbe7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_331.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.331.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_331.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.331.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_332.sub b/test/ntuple_qcd_700_1000/batch/condor_332.sub new file mode 100644 index 00000000000..a832bbb9b58 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_332.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.332.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_332.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.332.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_333.sub b/test/ntuple_qcd_700_1000/batch/condor_333.sub new file mode 100644 index 00000000000..03f093387c5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_333.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.333.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_333.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.333.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_334.sub b/test/ntuple_qcd_700_1000/batch/condor_334.sub new file mode 100644 index 00000000000..a28a5497543 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_334.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.334.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_334.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.334.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_335.sub b/test/ntuple_qcd_700_1000/batch/condor_335.sub new file mode 100644 index 00000000000..eb47b805081 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_335.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.335.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_335.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.335.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_336.sub b/test/ntuple_qcd_700_1000/batch/condor_336.sub new file mode 100644 index 00000000000..4d19213ee8e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_336.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.336.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_336.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.336.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_337.sub b/test/ntuple_qcd_700_1000/batch/condor_337.sub new file mode 100644 index 00000000000..5594eb66779 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_337.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.337.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_337.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.337.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_338.sub b/test/ntuple_qcd_700_1000/batch/condor_338.sub new file mode 100644 index 00000000000..a3e2ef8fce1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_338.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.338.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_338.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.338.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_339.sub b/test/ntuple_qcd_700_1000/batch/condor_339.sub new file mode 100644 index 00000000000..e058f91cd63 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_339.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.339.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_339.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.339.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_34.sub b/test/ntuple_qcd_700_1000/batch/condor_34.sub new file mode 100644 index 00000000000..79ac76a93d9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_34.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.34.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_34.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.34.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_340.sub b/test/ntuple_qcd_700_1000/batch/condor_340.sub new file mode 100644 index 00000000000..ceec396895d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_340.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.340.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_340.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.340.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_341.sub b/test/ntuple_qcd_700_1000/batch/condor_341.sub new file mode 100644 index 00000000000..52a253d1bb4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_341.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.341.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_341.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.341.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_342.sub b/test/ntuple_qcd_700_1000/batch/condor_342.sub new file mode 100644 index 00000000000..fa9956e7a94 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_342.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.342.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_342.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.342.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_343.sub b/test/ntuple_qcd_700_1000/batch/condor_343.sub new file mode 100644 index 00000000000..5c83cb95d7a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_343.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.343.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_343.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.343.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_344.sub b/test/ntuple_qcd_700_1000/batch/condor_344.sub new file mode 100644 index 00000000000..522560f93a0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_344.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.344.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_344.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.344.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_345.sub b/test/ntuple_qcd_700_1000/batch/condor_345.sub new file mode 100644 index 00000000000..6eca66f6636 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_345.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.345.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_345.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.345.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_346.sub b/test/ntuple_qcd_700_1000/batch/condor_346.sub new file mode 100644 index 00000000000..bcb2c611410 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_346.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.346.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_346.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.346.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_347.sub b/test/ntuple_qcd_700_1000/batch/condor_347.sub new file mode 100644 index 00000000000..7b8e28f2898 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_347.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.347.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_347.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.347.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_348.sub b/test/ntuple_qcd_700_1000/batch/condor_348.sub new file mode 100644 index 00000000000..64f45ed3aed --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_348.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.348.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_348.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.348.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_349.sub b/test/ntuple_qcd_700_1000/batch/condor_349.sub new file mode 100644 index 00000000000..5159f92dd0f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_349.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.349.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_349.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.349.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_35.sub b/test/ntuple_qcd_700_1000/batch/condor_35.sub new file mode 100644 index 00000000000..00c2e0c1784 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_35.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.35.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_35.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.35.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_350.sub b/test/ntuple_qcd_700_1000/batch/condor_350.sub new file mode 100644 index 00000000000..a49acd35ca8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_350.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.350.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_350.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.350.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_351.sub b/test/ntuple_qcd_700_1000/batch/condor_351.sub new file mode 100644 index 00000000000..364e6dd2dfd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_351.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.351.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_351.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.351.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_352.sub b/test/ntuple_qcd_700_1000/batch/condor_352.sub new file mode 100644 index 00000000000..06a63e63eef --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_352.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.352.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_352.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.352.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_353.sub b/test/ntuple_qcd_700_1000/batch/condor_353.sub new file mode 100644 index 00000000000..3eba322c77f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_353.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.353.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_353.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.353.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_354.sub b/test/ntuple_qcd_700_1000/batch/condor_354.sub new file mode 100644 index 00000000000..a6025f22e0d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_354.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.354.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_354.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.354.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_355.sub b/test/ntuple_qcd_700_1000/batch/condor_355.sub new file mode 100644 index 00000000000..b8b5797ae5a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_355.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.355.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_355.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.355.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_356.sub b/test/ntuple_qcd_700_1000/batch/condor_356.sub new file mode 100644 index 00000000000..ef749e56ece --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_356.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.356.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_356.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.356.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_357.sub b/test/ntuple_qcd_700_1000/batch/condor_357.sub new file mode 100644 index 00000000000..0630f90c148 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_357.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.357.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_357.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.357.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_358.sub b/test/ntuple_qcd_700_1000/batch/condor_358.sub new file mode 100644 index 00000000000..cdfaf1eebf5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_358.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.358.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_358.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.358.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_359.sub b/test/ntuple_qcd_700_1000/batch/condor_359.sub new file mode 100644 index 00000000000..462404be6ad --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_359.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.359.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_359.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.359.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_36.sub b/test/ntuple_qcd_700_1000/batch/condor_36.sub new file mode 100644 index 00000000000..2737182b805 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_36.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.36.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_36.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.36.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_360.sub b/test/ntuple_qcd_700_1000/batch/condor_360.sub new file mode 100644 index 00000000000..997d4cf6571 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_360.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.360.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_360.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.360.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_361.sub b/test/ntuple_qcd_700_1000/batch/condor_361.sub new file mode 100644 index 00000000000..3de257a5b04 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_361.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.361.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_361.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.361.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_362.sub b/test/ntuple_qcd_700_1000/batch/condor_362.sub new file mode 100644 index 00000000000..9fa4ce4d9de --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_362.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.362.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_362.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.362.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_363.sub b/test/ntuple_qcd_700_1000/batch/condor_363.sub new file mode 100644 index 00000000000..db348ea366a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_363.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.363.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_363.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.363.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_364.sub b/test/ntuple_qcd_700_1000/batch/condor_364.sub new file mode 100644 index 00000000000..766cb35fbba --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_364.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.364.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_364.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.364.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_365.sub b/test/ntuple_qcd_700_1000/batch/condor_365.sub new file mode 100644 index 00000000000..4b657b00e34 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_365.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.365.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_365.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.365.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_366.sub b/test/ntuple_qcd_700_1000/batch/condor_366.sub new file mode 100644 index 00000000000..b255a82653b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_366.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.366.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_366.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.366.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_367.sub b/test/ntuple_qcd_700_1000/batch/condor_367.sub new file mode 100644 index 00000000000..2324840b100 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_367.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.367.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_367.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.367.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_368.sub b/test/ntuple_qcd_700_1000/batch/condor_368.sub new file mode 100644 index 00000000000..f412127e4c4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_368.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.368.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_368.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.368.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_369.sub b/test/ntuple_qcd_700_1000/batch/condor_369.sub new file mode 100644 index 00000000000..294fcac440b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_369.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.369.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_369.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.369.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_37.sub b/test/ntuple_qcd_700_1000/batch/condor_37.sub new file mode 100644 index 00000000000..9dae144907d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_37.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.37.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_37.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.37.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_370.sub b/test/ntuple_qcd_700_1000/batch/condor_370.sub new file mode 100644 index 00000000000..4fc7b6999fc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_370.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.370.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_370.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.370.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_371.sub b/test/ntuple_qcd_700_1000/batch/condor_371.sub new file mode 100644 index 00000000000..ff62fb79044 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_371.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.371.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_371.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.371.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_372.sub b/test/ntuple_qcd_700_1000/batch/condor_372.sub new file mode 100644 index 00000000000..c912f903553 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_372.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.372.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_372.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.372.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_373.sub b/test/ntuple_qcd_700_1000/batch/condor_373.sub new file mode 100644 index 00000000000..d81f300d504 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_373.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.373.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_373.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.373.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_374.sub b/test/ntuple_qcd_700_1000/batch/condor_374.sub new file mode 100644 index 00000000000..5512a492043 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_374.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.374.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_374.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.374.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_375.sub b/test/ntuple_qcd_700_1000/batch/condor_375.sub new file mode 100644 index 00000000000..653711a25a0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_375.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.375.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_375.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.375.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_376.sub b/test/ntuple_qcd_700_1000/batch/condor_376.sub new file mode 100644 index 00000000000..8732295160e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_376.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.376.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_376.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.376.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_377.sub b/test/ntuple_qcd_700_1000/batch/condor_377.sub new file mode 100644 index 00000000000..a7baffaf9f3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_377.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.377.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_377.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.377.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_378.sub b/test/ntuple_qcd_700_1000/batch/condor_378.sub new file mode 100644 index 00000000000..5a9c160c043 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_378.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.378.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_378.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.378.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_379.sub b/test/ntuple_qcd_700_1000/batch/condor_379.sub new file mode 100644 index 00000000000..4a69779158f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_379.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.379.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_379.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.379.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_38.sub b/test/ntuple_qcd_700_1000/batch/condor_38.sub new file mode 100644 index 00000000000..231d9f1824b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_38.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.38.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_38.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.38.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_380.sub b/test/ntuple_qcd_700_1000/batch/condor_380.sub new file mode 100644 index 00000000000..18b093f8aca --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_380.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.380.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_380.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.380.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_381.sub b/test/ntuple_qcd_700_1000/batch/condor_381.sub new file mode 100644 index 00000000000..39b0281b321 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_381.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.381.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_381.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.381.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_382.sub b/test/ntuple_qcd_700_1000/batch/condor_382.sub new file mode 100644 index 00000000000..db90ca38049 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_382.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.382.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_382.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.382.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_383.sub b/test/ntuple_qcd_700_1000/batch/condor_383.sub new file mode 100644 index 00000000000..75dcfe7b6bf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_383.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.383.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_383.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.383.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_384.sub b/test/ntuple_qcd_700_1000/batch/condor_384.sub new file mode 100644 index 00000000000..975269e3915 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_384.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.384.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_384.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.384.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_385.sub b/test/ntuple_qcd_700_1000/batch/condor_385.sub new file mode 100644 index 00000000000..7fbff66756b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_385.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.385.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_385.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.385.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_386.sub b/test/ntuple_qcd_700_1000/batch/condor_386.sub new file mode 100644 index 00000000000..b3421105d2f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_386.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.386.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_386.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.386.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_387.sub b/test/ntuple_qcd_700_1000/batch/condor_387.sub new file mode 100644 index 00000000000..de725f562a9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_387.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.387.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_387.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.387.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_388.sub b/test/ntuple_qcd_700_1000/batch/condor_388.sub new file mode 100644 index 00000000000..e8f26cd621f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_388.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.388.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_388.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.388.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_389.sub b/test/ntuple_qcd_700_1000/batch/condor_389.sub new file mode 100644 index 00000000000..6fa2d3ce5a8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_389.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.389.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_389.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.389.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_39.sub b/test/ntuple_qcd_700_1000/batch/condor_39.sub new file mode 100644 index 00000000000..e899e17d836 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_39.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.39.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_39.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.39.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_390.sub b/test/ntuple_qcd_700_1000/batch/condor_390.sub new file mode 100644 index 00000000000..76c97aad319 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_390.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.390.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_390.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.390.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_391.sub b/test/ntuple_qcd_700_1000/batch/condor_391.sub new file mode 100644 index 00000000000..fe1f4edaae1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_391.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.391.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_391.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.391.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_392.sub b/test/ntuple_qcd_700_1000/batch/condor_392.sub new file mode 100644 index 00000000000..d76fd77a57c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_392.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.392.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_392.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.392.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_393.sub b/test/ntuple_qcd_700_1000/batch/condor_393.sub new file mode 100644 index 00000000000..d589bc297d8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_393.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.393.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_393.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.393.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_394.sub b/test/ntuple_qcd_700_1000/batch/condor_394.sub new file mode 100644 index 00000000000..acc9bd8be9d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_394.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.394.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_394.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.394.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_395.sub b/test/ntuple_qcd_700_1000/batch/condor_395.sub new file mode 100644 index 00000000000..d1919d4b24e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_395.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.395.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_395.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.395.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_396.sub b/test/ntuple_qcd_700_1000/batch/condor_396.sub new file mode 100644 index 00000000000..c28932c9e4d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_396.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.396.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_396.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.396.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_397.sub b/test/ntuple_qcd_700_1000/batch/condor_397.sub new file mode 100644 index 00000000000..bbdddc1a8fb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_397.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.397.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_397.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.397.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_398.sub b/test/ntuple_qcd_700_1000/batch/condor_398.sub new file mode 100644 index 00000000000..cccdfae4f46 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_398.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.398.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_398.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.398.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_399.sub b/test/ntuple_qcd_700_1000/batch/condor_399.sub new file mode 100644 index 00000000000..94a125730dc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_399.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.399.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_399.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.399.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_4.sub b/test/ntuple_qcd_700_1000/batch/condor_4.sub new file mode 100644 index 00000000000..d6b198226a7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_40.sub b/test/ntuple_qcd_700_1000/batch/condor_40.sub new file mode 100644 index 00000000000..7637dd0565a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_40.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.40.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_40.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.40.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_400.sub b/test/ntuple_qcd_700_1000/batch/condor_400.sub new file mode 100644 index 00000000000..19d58e33438 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_400.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.400.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_400.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.400.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_401.sub b/test/ntuple_qcd_700_1000/batch/condor_401.sub new file mode 100644 index 00000000000..218444a6c00 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_401.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.401.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_401.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.401.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_402.sub b/test/ntuple_qcd_700_1000/batch/condor_402.sub new file mode 100644 index 00000000000..b72567ce994 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_402.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.402.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_402.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.402.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_403.sub b/test/ntuple_qcd_700_1000/batch/condor_403.sub new file mode 100644 index 00000000000..4a0bf1afefc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_403.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.403.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_403.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.403.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_404.sub b/test/ntuple_qcd_700_1000/batch/condor_404.sub new file mode 100644 index 00000000000..42d1962fc78 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_404.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.404.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_404.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.404.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_405.sub b/test/ntuple_qcd_700_1000/batch/condor_405.sub new file mode 100644 index 00000000000..6386b61c475 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_405.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.405.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_405.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.405.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_406.sub b/test/ntuple_qcd_700_1000/batch/condor_406.sub new file mode 100644 index 00000000000..1d10ffa9f42 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_406.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.406.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_406.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.406.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_407.sub b/test/ntuple_qcd_700_1000/batch/condor_407.sub new file mode 100644 index 00000000000..f9a281674e9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_407.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.407.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_407.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.407.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_408.sub b/test/ntuple_qcd_700_1000/batch/condor_408.sub new file mode 100644 index 00000000000..54309264752 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_408.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.408.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_408.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.408.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_409.sub b/test/ntuple_qcd_700_1000/batch/condor_409.sub new file mode 100644 index 00000000000..b7a6ee3346e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_409.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.409.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_409.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.409.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_41.sub b/test/ntuple_qcd_700_1000/batch/condor_41.sub new file mode 100644 index 00000000000..d45c9e55e79 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_41.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.41.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_41.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.41.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_410.sub b/test/ntuple_qcd_700_1000/batch/condor_410.sub new file mode 100644 index 00000000000..82ce1eb2769 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_410.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.410.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_410.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.410.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_411.sub b/test/ntuple_qcd_700_1000/batch/condor_411.sub new file mode 100644 index 00000000000..807bea373f3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_411.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.411.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_411.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.411.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_412.sub b/test/ntuple_qcd_700_1000/batch/condor_412.sub new file mode 100644 index 00000000000..09b058f5943 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_412.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.412.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_412.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.412.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_413.sub b/test/ntuple_qcd_700_1000/batch/condor_413.sub new file mode 100644 index 00000000000..fd2e97250c1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_413.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.413.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_413.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.413.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_414.sub b/test/ntuple_qcd_700_1000/batch/condor_414.sub new file mode 100644 index 00000000000..a7c66731abe --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_414.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.414.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_414.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.414.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_415.sub b/test/ntuple_qcd_700_1000/batch/condor_415.sub new file mode 100644 index 00000000000..22518a32109 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_415.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.415.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_415.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.415.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_416.sub b/test/ntuple_qcd_700_1000/batch/condor_416.sub new file mode 100644 index 00000000000..cd4c8be82d2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_416.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.416.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_416.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.416.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_417.sub b/test/ntuple_qcd_700_1000/batch/condor_417.sub new file mode 100644 index 00000000000..e7374e60b30 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_417.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.417.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_417.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.417.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_418.sub b/test/ntuple_qcd_700_1000/batch/condor_418.sub new file mode 100644 index 00000000000..4c22d0e2cd1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_418.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.418.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_418.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.418.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_419.sub b/test/ntuple_qcd_700_1000/batch/condor_419.sub new file mode 100644 index 00000000000..f861a9db6e5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_419.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.419.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_419.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.419.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_42.sub b/test/ntuple_qcd_700_1000/batch/condor_42.sub new file mode 100644 index 00000000000..75d67e4a08a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_42.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.42.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_42.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.42.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_420.sub b/test/ntuple_qcd_700_1000/batch/condor_420.sub new file mode 100644 index 00000000000..becc76d0345 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_420.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.420.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_420.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.420.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_421.sub b/test/ntuple_qcd_700_1000/batch/condor_421.sub new file mode 100644 index 00000000000..27cbe9a95f1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_421.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.421.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_421.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.421.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_422.sub b/test/ntuple_qcd_700_1000/batch/condor_422.sub new file mode 100644 index 00000000000..e85aea36723 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_422.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.422.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_422.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.422.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_423.sub b/test/ntuple_qcd_700_1000/batch/condor_423.sub new file mode 100644 index 00000000000..4b16009ef22 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_423.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.423.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_423.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.423.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_424.sub b/test/ntuple_qcd_700_1000/batch/condor_424.sub new file mode 100644 index 00000000000..60c1e87aa5a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_424.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.424.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_424.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.424.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_425.sub b/test/ntuple_qcd_700_1000/batch/condor_425.sub new file mode 100644 index 00000000000..cf1a29e095a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_425.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.425.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_425.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.425.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_426.sub b/test/ntuple_qcd_700_1000/batch/condor_426.sub new file mode 100644 index 00000000000..64a9c559a54 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_426.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.426.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_426.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.426.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_427.sub b/test/ntuple_qcd_700_1000/batch/condor_427.sub new file mode 100644 index 00000000000..6305360aa88 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_427.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.427.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_427.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.427.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_428.sub b/test/ntuple_qcd_700_1000/batch/condor_428.sub new file mode 100644 index 00000000000..15967b3706f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_428.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.428.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_428.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.428.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_429.sub b/test/ntuple_qcd_700_1000/batch/condor_429.sub new file mode 100644 index 00000000000..c5d354c305b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_429.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.429.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_429.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.429.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_43.sub b/test/ntuple_qcd_700_1000/batch/condor_43.sub new file mode 100644 index 00000000000..333562cd4b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_43.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.43.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_43.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.43.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_430.sub b/test/ntuple_qcd_700_1000/batch/condor_430.sub new file mode 100644 index 00000000000..d4f0ebf9b76 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_430.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.430.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_430.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.430.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_431.sub b/test/ntuple_qcd_700_1000/batch/condor_431.sub new file mode 100644 index 00000000000..70e3584d4df --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_431.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.431.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_431.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.431.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_432.sub b/test/ntuple_qcd_700_1000/batch/condor_432.sub new file mode 100644 index 00000000000..5240aeaacdf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_432.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.432.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_432.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.432.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_433.sub b/test/ntuple_qcd_700_1000/batch/condor_433.sub new file mode 100644 index 00000000000..6bd4a022678 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_433.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.433.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_433.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.433.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_434.sub b/test/ntuple_qcd_700_1000/batch/condor_434.sub new file mode 100644 index 00000000000..e978ad5c9c3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_434.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.434.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_434.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.434.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_435.sub b/test/ntuple_qcd_700_1000/batch/condor_435.sub new file mode 100644 index 00000000000..1caa259d324 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_435.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.435.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_435.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.435.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_436.sub b/test/ntuple_qcd_700_1000/batch/condor_436.sub new file mode 100644 index 00000000000..76f5bcc7b09 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_436.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.436.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_436.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.436.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_437.sub b/test/ntuple_qcd_700_1000/batch/condor_437.sub new file mode 100644 index 00000000000..b040170e88f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_437.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.437.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_437.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.437.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_438.sub b/test/ntuple_qcd_700_1000/batch/condor_438.sub new file mode 100644 index 00000000000..c31cde9784c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_438.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.438.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_438.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.438.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_439.sub b/test/ntuple_qcd_700_1000/batch/condor_439.sub new file mode 100644 index 00000000000..92772eec934 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_439.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.439.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_439.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.439.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_44.sub b/test/ntuple_qcd_700_1000/batch/condor_44.sub new file mode 100644 index 00000000000..cd5c4e9849f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_44.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.44.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_44.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.44.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_440.sub b/test/ntuple_qcd_700_1000/batch/condor_440.sub new file mode 100644 index 00000000000..f5becf749e2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_440.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.440.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_440.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.440.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_441.sub b/test/ntuple_qcd_700_1000/batch/condor_441.sub new file mode 100644 index 00000000000..b135487fef9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_441.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.441.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_441.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.441.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_442.sub b/test/ntuple_qcd_700_1000/batch/condor_442.sub new file mode 100644 index 00000000000..05087ae60ad --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_442.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.442.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_442.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.442.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_443.sub b/test/ntuple_qcd_700_1000/batch/condor_443.sub new file mode 100644 index 00000000000..543cea2a05a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_443.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.443.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_443.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.443.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_444.sub b/test/ntuple_qcd_700_1000/batch/condor_444.sub new file mode 100644 index 00000000000..55372a29529 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_444.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.444.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_444.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.444.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_445.sub b/test/ntuple_qcd_700_1000/batch/condor_445.sub new file mode 100644 index 00000000000..f23daacdc23 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_445.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.445.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_445.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.445.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_446.sub b/test/ntuple_qcd_700_1000/batch/condor_446.sub new file mode 100644 index 00000000000..7340625ab9d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_446.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.446.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_446.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.446.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_447.sub b/test/ntuple_qcd_700_1000/batch/condor_447.sub new file mode 100644 index 00000000000..2d03bf95464 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_447.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.447.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_447.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.447.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_448.sub b/test/ntuple_qcd_700_1000/batch/condor_448.sub new file mode 100644 index 00000000000..88f14fc53e4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_448.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.448.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_448.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.448.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_449.sub b/test/ntuple_qcd_700_1000/batch/condor_449.sub new file mode 100644 index 00000000000..d816b07334b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_449.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.449.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_449.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.449.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_45.sub b/test/ntuple_qcd_700_1000/batch/condor_45.sub new file mode 100644 index 00000000000..8d3fd338e49 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_45.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.45.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_45.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.45.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_450.sub b/test/ntuple_qcd_700_1000/batch/condor_450.sub new file mode 100644 index 00000000000..f93ceeb5ac1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_450.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.450.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_450.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.450.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_451.sub b/test/ntuple_qcd_700_1000/batch/condor_451.sub new file mode 100644 index 00000000000..68d0c6d450b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_451.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.451.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_451.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.451.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_452.sub b/test/ntuple_qcd_700_1000/batch/condor_452.sub new file mode 100644 index 00000000000..1c35b6fdf50 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_452.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.452.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_452.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.452.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_453.sub b/test/ntuple_qcd_700_1000/batch/condor_453.sub new file mode 100644 index 00000000000..75da051b3d4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_453.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.453.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_453.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.453.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_454.sub b/test/ntuple_qcd_700_1000/batch/condor_454.sub new file mode 100644 index 00000000000..db2a64add73 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_454.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.454.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_454.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.454.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_455.sub b/test/ntuple_qcd_700_1000/batch/condor_455.sub new file mode 100644 index 00000000000..439a6f5ed15 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_455.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.455.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_455.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.455.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_456.sub b/test/ntuple_qcd_700_1000/batch/condor_456.sub new file mode 100644 index 00000000000..e8f78850ddc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_456.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.456.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_456.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.456.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_457.sub b/test/ntuple_qcd_700_1000/batch/condor_457.sub new file mode 100644 index 00000000000..325aa3910b2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_457.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.457.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_457.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.457.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_458.sub b/test/ntuple_qcd_700_1000/batch/condor_458.sub new file mode 100644 index 00000000000..468a1c4f348 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_458.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.458.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_458.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.458.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_459.sub b/test/ntuple_qcd_700_1000/batch/condor_459.sub new file mode 100644 index 00000000000..2fd14c3c35a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_459.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.459.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_459.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.459.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_46.sub b/test/ntuple_qcd_700_1000/batch/condor_46.sub new file mode 100644 index 00000000000..bcbeaea4321 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_46.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.46.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_46.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.46.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_460.sub b/test/ntuple_qcd_700_1000/batch/condor_460.sub new file mode 100644 index 00000000000..f6e06e24ff1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_460.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.460.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_460.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.460.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_461.sub b/test/ntuple_qcd_700_1000/batch/condor_461.sub new file mode 100644 index 00000000000..17bc9537adb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_461.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.461.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_461.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.461.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_462.sub b/test/ntuple_qcd_700_1000/batch/condor_462.sub new file mode 100644 index 00000000000..da047cc391f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_462.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.462.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_462.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.462.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_463.sub b/test/ntuple_qcd_700_1000/batch/condor_463.sub new file mode 100644 index 00000000000..fb158565b87 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_463.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.463.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_463.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.463.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_464.sub b/test/ntuple_qcd_700_1000/batch/condor_464.sub new file mode 100644 index 00000000000..8350e6707b2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_464.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.464.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_464.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.464.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_465.sub b/test/ntuple_qcd_700_1000/batch/condor_465.sub new file mode 100644 index 00000000000..5ca90e80e44 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_465.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.465.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_465.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.465.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_466.sub b/test/ntuple_qcd_700_1000/batch/condor_466.sub new file mode 100644 index 00000000000..158cb7d27d4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_466.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.466.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_466.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.466.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_467.sub b/test/ntuple_qcd_700_1000/batch/condor_467.sub new file mode 100644 index 00000000000..3c54b493d98 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_467.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.467.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_467.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.467.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_468.sub b/test/ntuple_qcd_700_1000/batch/condor_468.sub new file mode 100644 index 00000000000..2585aacc1d6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_468.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.468.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_468.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.468.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_469.sub b/test/ntuple_qcd_700_1000/batch/condor_469.sub new file mode 100644 index 00000000000..c4a500353fd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_469.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.469.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_469.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.469.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_47.sub b/test/ntuple_qcd_700_1000/batch/condor_47.sub new file mode 100644 index 00000000000..70d94ef9db4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_47.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.47.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_47.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.47.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_470.sub b/test/ntuple_qcd_700_1000/batch/condor_470.sub new file mode 100644 index 00000000000..2c677b020ca --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_470.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.470.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_470.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.470.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_471.sub b/test/ntuple_qcd_700_1000/batch/condor_471.sub new file mode 100644 index 00000000000..000bc550179 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_471.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.471.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_471.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.471.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_472.sub b/test/ntuple_qcd_700_1000/batch/condor_472.sub new file mode 100644 index 00000000000..73df716547a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_472.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.472.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_472.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.472.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_473.sub b/test/ntuple_qcd_700_1000/batch/condor_473.sub new file mode 100644 index 00000000000..fa9e8b227ec --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_473.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.473.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_473.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.473.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_474.sub b/test/ntuple_qcd_700_1000/batch/condor_474.sub new file mode 100644 index 00000000000..bac2fe32e7e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_474.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.474.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_474.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.474.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_475.sub b/test/ntuple_qcd_700_1000/batch/condor_475.sub new file mode 100644 index 00000000000..a1b2d4581b2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_475.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.475.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_475.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.475.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_476.sub b/test/ntuple_qcd_700_1000/batch/condor_476.sub new file mode 100644 index 00000000000..fb030dd49a7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_476.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.476.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_476.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.476.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_477.sub b/test/ntuple_qcd_700_1000/batch/condor_477.sub new file mode 100644 index 00000000000..0184535334f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_477.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.477.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_477.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.477.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_478.sub b/test/ntuple_qcd_700_1000/batch/condor_478.sub new file mode 100644 index 00000000000..088e43865cf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_478.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.478.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_478.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.478.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_479.sub b/test/ntuple_qcd_700_1000/batch/condor_479.sub new file mode 100644 index 00000000000..de774d793fd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_479.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.479.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_479.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.479.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_48.sub b/test/ntuple_qcd_700_1000/batch/condor_48.sub new file mode 100644 index 00000000000..c610e77aa33 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_48.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.48.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_48.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.48.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_480.sub b/test/ntuple_qcd_700_1000/batch/condor_480.sub new file mode 100644 index 00000000000..0bfdcee3370 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_480.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.480.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_480.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.480.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_481.sub b/test/ntuple_qcd_700_1000/batch/condor_481.sub new file mode 100644 index 00000000000..7d0ac177914 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_481.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.481.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_481.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.481.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_482.sub b/test/ntuple_qcd_700_1000/batch/condor_482.sub new file mode 100644 index 00000000000..efbce965b7d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_482.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.482.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_482.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.482.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_483.sub b/test/ntuple_qcd_700_1000/batch/condor_483.sub new file mode 100644 index 00000000000..7bec0a6b12a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_483.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.483.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_483.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.483.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_484.sub b/test/ntuple_qcd_700_1000/batch/condor_484.sub new file mode 100644 index 00000000000..8adcf03efa8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_484.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.484.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_484.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.484.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_485.sub b/test/ntuple_qcd_700_1000/batch/condor_485.sub new file mode 100644 index 00000000000..54a69b4ddad --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_485.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.485.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_485.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.485.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_486.sub b/test/ntuple_qcd_700_1000/batch/condor_486.sub new file mode 100644 index 00000000000..a9f3cce9568 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_486.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.486.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_486.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.486.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_487.sub b/test/ntuple_qcd_700_1000/batch/condor_487.sub new file mode 100644 index 00000000000..aca756a69ff --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_487.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.487.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_487.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.487.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_488.sub b/test/ntuple_qcd_700_1000/batch/condor_488.sub new file mode 100644 index 00000000000..e920b8fd655 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_488.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.488.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_488.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.488.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_489.sub b/test/ntuple_qcd_700_1000/batch/condor_489.sub new file mode 100644 index 00000000000..ac2491c1716 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_489.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.489.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_489.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.489.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_49.sub b/test/ntuple_qcd_700_1000/batch/condor_49.sub new file mode 100644 index 00000000000..35a753b2d04 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_49.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.49.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_49.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.49.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_490.sub b/test/ntuple_qcd_700_1000/batch/condor_490.sub new file mode 100644 index 00000000000..67c240d06af --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_490.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.490.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_490.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.490.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_491.sub b/test/ntuple_qcd_700_1000/batch/condor_491.sub new file mode 100644 index 00000000000..bda8bca6f56 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_491.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.491.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_491.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.491.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_492.sub b/test/ntuple_qcd_700_1000/batch/condor_492.sub new file mode 100644 index 00000000000..d7338a11128 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_492.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.492.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_492.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.492.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_493.sub b/test/ntuple_qcd_700_1000/batch/condor_493.sub new file mode 100644 index 00000000000..afa16b8e044 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_493.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.493.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_493.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.493.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_494.sub b/test/ntuple_qcd_700_1000/batch/condor_494.sub new file mode 100644 index 00000000000..7f9d6cd5c1c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_494.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.494.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_494.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.494.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_495.sub b/test/ntuple_qcd_700_1000/batch/condor_495.sub new file mode 100644 index 00000000000..056a665c74a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_495.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.495.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_495.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.495.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_496.sub b/test/ntuple_qcd_700_1000/batch/condor_496.sub new file mode 100644 index 00000000000..c597a978869 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_496.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.496.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_496.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.496.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_497.sub b/test/ntuple_qcd_700_1000/batch/condor_497.sub new file mode 100644 index 00000000000..7343d06b1c8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_497.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.497.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_497.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.497.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_498.sub b/test/ntuple_qcd_700_1000/batch/condor_498.sub new file mode 100644 index 00000000000..32077ad1099 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_498.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.498.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_498.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.498.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_499.sub b/test/ntuple_qcd_700_1000/batch/condor_499.sub new file mode 100644 index 00000000000..bcdc1b7943d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_499.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.499.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_499.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.499.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_5.sub b/test/ntuple_qcd_700_1000/batch/condor_5.sub new file mode 100644 index 00000000000..0c304aed47a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_50.sub b/test/ntuple_qcd_700_1000/batch/condor_50.sub new file mode 100644 index 00000000000..f24fc47b1d3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_50.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.50.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_50.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.50.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_51.sub b/test/ntuple_qcd_700_1000/batch/condor_51.sub new file mode 100644 index 00000000000..873180408b0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_51.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.51.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_51.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.51.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_52.sub b/test/ntuple_qcd_700_1000/batch/condor_52.sub new file mode 100644 index 00000000000..604f0b34a81 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_52.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.52.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_52.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.52.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_53.sub b/test/ntuple_qcd_700_1000/batch/condor_53.sub new file mode 100644 index 00000000000..69cc45f4e6f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_53.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.53.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_53.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.53.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_54.sub b/test/ntuple_qcd_700_1000/batch/condor_54.sub new file mode 100644 index 00000000000..fb85263d405 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_54.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.54.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_54.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.54.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_55.sub b/test/ntuple_qcd_700_1000/batch/condor_55.sub new file mode 100644 index 00000000000..297d2bab37c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_55.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.55.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_55.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.55.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_56.sub b/test/ntuple_qcd_700_1000/batch/condor_56.sub new file mode 100644 index 00000000000..787ccf4b0dd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_56.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.56.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_56.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.56.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_57.sub b/test/ntuple_qcd_700_1000/batch/condor_57.sub new file mode 100644 index 00000000000..a3ce83a5fe4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_57.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.57.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_57.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.57.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_58.sub b/test/ntuple_qcd_700_1000/batch/condor_58.sub new file mode 100644 index 00000000000..7e0b97140e1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_58.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.58.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_58.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.58.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_59.sub b/test/ntuple_qcd_700_1000/batch/condor_59.sub new file mode 100644 index 00000000000..89a739c7fab --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_59.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.59.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_59.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.59.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_6.sub b/test/ntuple_qcd_700_1000/batch/condor_6.sub new file mode 100644 index 00000000000..4bada401bdd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_60.sub b/test/ntuple_qcd_700_1000/batch/condor_60.sub new file mode 100644 index 00000000000..c2d8c1749cd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_60.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.60.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_60.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.60.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_61.sub b/test/ntuple_qcd_700_1000/batch/condor_61.sub new file mode 100644 index 00000000000..85c4229dbac --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_61.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.61.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_61.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.61.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_62.sub b/test/ntuple_qcd_700_1000/batch/condor_62.sub new file mode 100644 index 00000000000..b05d179ac5b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_62.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.62.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_62.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.62.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_63.sub b/test/ntuple_qcd_700_1000/batch/condor_63.sub new file mode 100644 index 00000000000..02d11d4c00e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_63.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.63.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_63.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.63.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_64.sub b/test/ntuple_qcd_700_1000/batch/condor_64.sub new file mode 100644 index 00000000000..cf7ad9e4725 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_64.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.64.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_64.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.64.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_65.sub b/test/ntuple_qcd_700_1000/batch/condor_65.sub new file mode 100644 index 00000000000..975953c7da8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_65.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.65.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_65.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.65.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_66.sub b/test/ntuple_qcd_700_1000/batch/condor_66.sub new file mode 100644 index 00000000000..4083e83313b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_66.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.66.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_66.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.66.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_67.sub b/test/ntuple_qcd_700_1000/batch/condor_67.sub new file mode 100644 index 00000000000..b3e1323857b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_67.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.67.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_67.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.67.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_68.sub b/test/ntuple_qcd_700_1000/batch/condor_68.sub new file mode 100644 index 00000000000..d67e66bdb4c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_68.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.68.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_68.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.68.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_69.sub b/test/ntuple_qcd_700_1000/batch/condor_69.sub new file mode 100644 index 00000000000..488ccb7ac4c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_69.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.69.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_69.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.69.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_7.sub b/test/ntuple_qcd_700_1000/batch/condor_7.sub new file mode 100644 index 00000000000..e418c61bdef --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_70.sub b/test/ntuple_qcd_700_1000/batch/condor_70.sub new file mode 100644 index 00000000000..af7d60d78b0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_70.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.70.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_70.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.70.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_71.sub b/test/ntuple_qcd_700_1000/batch/condor_71.sub new file mode 100644 index 00000000000..21fc634aad5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_71.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.71.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_71.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.71.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_72.sub b/test/ntuple_qcd_700_1000/batch/condor_72.sub new file mode 100644 index 00000000000..2eaddc6419a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_72.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.72.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_72.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.72.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_73.sub b/test/ntuple_qcd_700_1000/batch/condor_73.sub new file mode 100644 index 00000000000..d05b0fc533a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_73.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.73.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_73.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.73.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_74.sub b/test/ntuple_qcd_700_1000/batch/condor_74.sub new file mode 100644 index 00000000000..3d3794a8623 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_74.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.74.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_74.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.74.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_75.sub b/test/ntuple_qcd_700_1000/batch/condor_75.sub new file mode 100644 index 00000000000..5c36dd00867 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_75.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.75.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_75.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.75.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_76.sub b/test/ntuple_qcd_700_1000/batch/condor_76.sub new file mode 100644 index 00000000000..6e8d9ccd87b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_76.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.76.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_76.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.76.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_77.sub b/test/ntuple_qcd_700_1000/batch/condor_77.sub new file mode 100644 index 00000000000..489a8f46f65 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_77.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.77.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_77.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.77.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_78.sub b/test/ntuple_qcd_700_1000/batch/condor_78.sub new file mode 100644 index 00000000000..4a7ab075965 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_78.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.78.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_78.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.78.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_79.sub b/test/ntuple_qcd_700_1000/batch/condor_79.sub new file mode 100644 index 00000000000..fb1f4eddd7b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_79.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.79.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_79.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.79.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_8.sub b/test/ntuple_qcd_700_1000/batch/condor_8.sub new file mode 100644 index 00000000000..ef80d2adef6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_80.sub b/test/ntuple_qcd_700_1000/batch/condor_80.sub new file mode 100644 index 00000000000..b2cbd9185c7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_80.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.80.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_80.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.80.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_81.sub b/test/ntuple_qcd_700_1000/batch/condor_81.sub new file mode 100644 index 00000000000..8ad618abaa2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_81.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.81.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_81.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.81.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_82.sub b/test/ntuple_qcd_700_1000/batch/condor_82.sub new file mode 100644 index 00000000000..495841aa5be --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_82.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.82.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_82.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.82.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_83.sub b/test/ntuple_qcd_700_1000/batch/condor_83.sub new file mode 100644 index 00000000000..f54095dd926 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_83.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.83.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_83.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.83.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_84.sub b/test/ntuple_qcd_700_1000/batch/condor_84.sub new file mode 100644 index 00000000000..c9abbb7fece --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_84.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.84.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_84.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.84.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_85.sub b/test/ntuple_qcd_700_1000/batch/condor_85.sub new file mode 100644 index 00000000000..a74cd4a24a7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_85.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.85.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_85.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.85.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_86.sub b/test/ntuple_qcd_700_1000/batch/condor_86.sub new file mode 100644 index 00000000000..54385d0f2aa --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_86.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.86.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_86.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.86.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_87.sub b/test/ntuple_qcd_700_1000/batch/condor_87.sub new file mode 100644 index 00000000000..263bc1134df --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_87.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.87.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_87.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.87.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_88.sub b/test/ntuple_qcd_700_1000/batch/condor_88.sub new file mode 100644 index 00000000000..28bb9039004 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_88.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.88.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_88.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.88.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_89.sub b/test/ntuple_qcd_700_1000/batch/condor_89.sub new file mode 100644 index 00000000000..c15472e927d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_89.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.89.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_89.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.89.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_9.sub b/test/ntuple_qcd_700_1000/batch/condor_9.sub new file mode 100644 index 00000000000..147d6bdfec0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_90.sub b/test/ntuple_qcd_700_1000/batch/condor_90.sub new file mode 100644 index 00000000000..ed33b9c51cf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_90.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.90.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_90.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.90.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_91.sub b/test/ntuple_qcd_700_1000/batch/condor_91.sub new file mode 100644 index 00000000000..425796ac896 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_91.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.91.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_91.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.91.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_92.sub b/test/ntuple_qcd_700_1000/batch/condor_92.sub new file mode 100644 index 00000000000..6747dd3055e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_92.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.92.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_92.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.92.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_93.sub b/test/ntuple_qcd_700_1000/batch/condor_93.sub new file mode 100644 index 00000000000..04fc592c766 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_93.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.93.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_93.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.93.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_94.sub b/test/ntuple_qcd_700_1000/batch/condor_94.sub new file mode 100644 index 00000000000..24e71bd566d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_94.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.94.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_94.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.94.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_95.sub b/test/ntuple_qcd_700_1000/batch/condor_95.sub new file mode 100644 index 00000000000..c8db7f8332b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_95.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.95.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_95.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.95.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_96.sub b/test/ntuple_qcd_700_1000/batch/condor_96.sub new file mode 100644 index 00000000000..9b5a4f6d103 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_96.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.96.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_96.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.96.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_97.sub b/test/ntuple_qcd_700_1000/batch/condor_97.sub new file mode 100644 index 00000000000..280cf93b0d4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_97.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.97.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_97.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.97.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_98.sub b/test/ntuple_qcd_700_1000/batch/condor_98.sub new file mode 100644 index 00000000000..6ed7da2f3f3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_98.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.98.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_98.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.98.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_99.sub b/test/ntuple_qcd_700_1000/batch/condor_99.sub new file mode 100644 index 00000000000..5f740863bff --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/condor_99.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.99.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_99.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 2000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.99.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/nJobs.500 b/test/ntuple_qcd_700_1000/batch/nJobs.500 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test/ntuple_qcd_700_1000/batch/sge_0.sh b/test/ntuple_qcd_700_1000/batch/sge_0.sh new file mode 100755 index 00000000000..ee43489f37b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_0.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_1.sh b/test/ntuple_qcd_700_1000/batch/sge_1.sh new file mode 100755 index 00000000000..5fa5fa37b4b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_1.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_10.sh b/test/ntuple_qcd_700_1000/batch/sge_10.sh new file mode 100755 index 00000000000..c73ae609155 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_10.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_100.sh b/test/ntuple_qcd_700_1000/batch/sge_100.sh new file mode 100755 index 00000000000..4c9b55e5f53 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_100.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=100 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_100.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_101.sh b/test/ntuple_qcd_700_1000/batch/sge_101.sh new file mode 100755 index 00000000000..3dec96ef3de --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_101.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=101 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_101.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_102.sh b/test/ntuple_qcd_700_1000/batch/sge_102.sh new file mode 100755 index 00000000000..34ad9dd3c74 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_102.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=102 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_102.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_103.sh b/test/ntuple_qcd_700_1000/batch/sge_103.sh new file mode 100755 index 00000000000..2440d90b31e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_103.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=103 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_103.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_104.sh b/test/ntuple_qcd_700_1000/batch/sge_104.sh new file mode 100755 index 00000000000..5bc31228d63 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_104.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=104 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_104.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_105.sh b/test/ntuple_qcd_700_1000/batch/sge_105.sh new file mode 100755 index 00000000000..4b6220acc0b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_105.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=105 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_105.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_106.sh b/test/ntuple_qcd_700_1000/batch/sge_106.sh new file mode 100755 index 00000000000..85f583de60f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_106.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=106 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_106.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_107.sh b/test/ntuple_qcd_700_1000/batch/sge_107.sh new file mode 100755 index 00000000000..3c223276088 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_107.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=107 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_107.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_108.sh b/test/ntuple_qcd_700_1000/batch/sge_108.sh new file mode 100755 index 00000000000..4d267010354 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_108.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=108 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_108.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_109.sh b/test/ntuple_qcd_700_1000/batch/sge_109.sh new file mode 100755 index 00000000000..03239035dde --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_109.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=109 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_109.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_11.sh b/test/ntuple_qcd_700_1000/batch/sge_11.sh new file mode 100755 index 00000000000..b2e54bf7e0f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_11.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_110.sh b/test/ntuple_qcd_700_1000/batch/sge_110.sh new file mode 100755 index 00000000000..e54ef000972 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_110.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=110 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_110.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_111.sh b/test/ntuple_qcd_700_1000/batch/sge_111.sh new file mode 100755 index 00000000000..b4e4da08a10 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_111.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=111 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_111.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_112.sh b/test/ntuple_qcd_700_1000/batch/sge_112.sh new file mode 100755 index 00000000000..3c380ff874d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_112.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=112 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_112.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_113.sh b/test/ntuple_qcd_700_1000/batch/sge_113.sh new file mode 100755 index 00000000000..e518df43380 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_113.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=113 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_113.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_114.sh b/test/ntuple_qcd_700_1000/batch/sge_114.sh new file mode 100755 index 00000000000..3cccb404a42 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_114.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=114 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_114.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_115.sh b/test/ntuple_qcd_700_1000/batch/sge_115.sh new file mode 100755 index 00000000000..8d0065504f0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_115.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=115 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_115.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_116.sh b/test/ntuple_qcd_700_1000/batch/sge_116.sh new file mode 100755 index 00000000000..d0d28b4ae95 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_116.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=116 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_116.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_117.sh b/test/ntuple_qcd_700_1000/batch/sge_117.sh new file mode 100755 index 00000000000..982140eeda1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_117.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=117 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_117.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_118.sh b/test/ntuple_qcd_700_1000/batch/sge_118.sh new file mode 100755 index 00000000000..eba91e0b58f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_118.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=118 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_118.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_119.sh b/test/ntuple_qcd_700_1000/batch/sge_119.sh new file mode 100755 index 00000000000..f71e8c56316 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_119.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=119 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_119.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_12.sh b/test/ntuple_qcd_700_1000/batch/sge_12.sh new file mode 100755 index 00000000000..62f596693b6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_12.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_120.sh b/test/ntuple_qcd_700_1000/batch/sge_120.sh new file mode 100755 index 00000000000..23cb800b34d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_120.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=120 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_120.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_121.sh b/test/ntuple_qcd_700_1000/batch/sge_121.sh new file mode 100755 index 00000000000..5b2bb44d316 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_121.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=121 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_121.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_122.sh b/test/ntuple_qcd_700_1000/batch/sge_122.sh new file mode 100755 index 00000000000..71239f89fcb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_122.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=122 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_122.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_123.sh b/test/ntuple_qcd_700_1000/batch/sge_123.sh new file mode 100755 index 00000000000..389651a5b13 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_123.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=123 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_123.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_124.sh b/test/ntuple_qcd_700_1000/batch/sge_124.sh new file mode 100755 index 00000000000..81336d13715 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_124.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=124 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_124.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_125.sh b/test/ntuple_qcd_700_1000/batch/sge_125.sh new file mode 100755 index 00000000000..737fcc13a8e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_125.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=125 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_125.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_126.sh b/test/ntuple_qcd_700_1000/batch/sge_126.sh new file mode 100755 index 00000000000..bf23c6a031b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_126.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=126 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_126.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_127.sh b/test/ntuple_qcd_700_1000/batch/sge_127.sh new file mode 100755 index 00000000000..9eb0c0a3472 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_127.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=127 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_127.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_128.sh b/test/ntuple_qcd_700_1000/batch/sge_128.sh new file mode 100755 index 00000000000..f8cc5edadc2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_128.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=128 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_128.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_129.sh b/test/ntuple_qcd_700_1000/batch/sge_129.sh new file mode 100755 index 00000000000..01ff08bb8ec --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_129.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=129 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_129.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_13.sh b/test/ntuple_qcd_700_1000/batch/sge_13.sh new file mode 100755 index 00000000000..eeedf6b6879 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_13.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_130.sh b/test/ntuple_qcd_700_1000/batch/sge_130.sh new file mode 100755 index 00000000000..5d906a09387 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_130.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=130 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_130.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_131.sh b/test/ntuple_qcd_700_1000/batch/sge_131.sh new file mode 100755 index 00000000000..59e1a277e9f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_131.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=131 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_131.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_132.sh b/test/ntuple_qcd_700_1000/batch/sge_132.sh new file mode 100755 index 00000000000..00893be0e3f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_132.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=132 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_132.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_133.sh b/test/ntuple_qcd_700_1000/batch/sge_133.sh new file mode 100755 index 00000000000..08d67e528d4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_133.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=133 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_133.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_134.sh b/test/ntuple_qcd_700_1000/batch/sge_134.sh new file mode 100755 index 00000000000..f3cee6d601c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_134.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=134 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_134.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_135.sh b/test/ntuple_qcd_700_1000/batch/sge_135.sh new file mode 100755 index 00000000000..7849b08fa65 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_135.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=135 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_135.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_136.sh b/test/ntuple_qcd_700_1000/batch/sge_136.sh new file mode 100755 index 00000000000..92c238a17fe --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_136.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=136 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_136.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_137.sh b/test/ntuple_qcd_700_1000/batch/sge_137.sh new file mode 100755 index 00000000000..897b3cb9a15 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_137.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=137 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_137.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_138.sh b/test/ntuple_qcd_700_1000/batch/sge_138.sh new file mode 100755 index 00000000000..938d9fcb62c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_138.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=138 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_138.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_139.sh b/test/ntuple_qcd_700_1000/batch/sge_139.sh new file mode 100755 index 00000000000..2282ed0744d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_139.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=139 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_139.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_14.sh b/test/ntuple_qcd_700_1000/batch/sge_14.sh new file mode 100755 index 00000000000..e3a82417778 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_14.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_140.sh b/test/ntuple_qcd_700_1000/batch/sge_140.sh new file mode 100755 index 00000000000..00f1e2878a4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_140.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=140 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_140.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_141.sh b/test/ntuple_qcd_700_1000/batch/sge_141.sh new file mode 100755 index 00000000000..d12026e679a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_141.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=141 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_141.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_142.sh b/test/ntuple_qcd_700_1000/batch/sge_142.sh new file mode 100755 index 00000000000..f77adf541ae --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_142.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=142 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_142.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_143.sh b/test/ntuple_qcd_700_1000/batch/sge_143.sh new file mode 100755 index 00000000000..30b8d96b4dc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_143.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=143 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_143.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_144.sh b/test/ntuple_qcd_700_1000/batch/sge_144.sh new file mode 100755 index 00000000000..043c72c627c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_144.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=144 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_144.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_145.sh b/test/ntuple_qcd_700_1000/batch/sge_145.sh new file mode 100755 index 00000000000..61216e40f22 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_145.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=145 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_145.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_146.sh b/test/ntuple_qcd_700_1000/batch/sge_146.sh new file mode 100755 index 00000000000..e506267d98a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_146.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=146 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_146.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_147.sh b/test/ntuple_qcd_700_1000/batch/sge_147.sh new file mode 100755 index 00000000000..180e53def50 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_147.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=147 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_147.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_148.sh b/test/ntuple_qcd_700_1000/batch/sge_148.sh new file mode 100755 index 00000000000..061baf94432 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_148.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=148 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_148.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_149.sh b/test/ntuple_qcd_700_1000/batch/sge_149.sh new file mode 100755 index 00000000000..44d56c7634f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_149.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=149 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_149.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_15.sh b/test/ntuple_qcd_700_1000/batch/sge_15.sh new file mode 100755 index 00000000000..c564fc2ba04 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_15.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=15 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_15.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_150.sh b/test/ntuple_qcd_700_1000/batch/sge_150.sh new file mode 100755 index 00000000000..1d0c2118bd9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_150.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=150 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_150.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_151.sh b/test/ntuple_qcd_700_1000/batch/sge_151.sh new file mode 100755 index 00000000000..16f77b239e8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_151.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=151 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_151.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_152.sh b/test/ntuple_qcd_700_1000/batch/sge_152.sh new file mode 100755 index 00000000000..6e9fd327936 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_152.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=152 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_152.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_153.sh b/test/ntuple_qcd_700_1000/batch/sge_153.sh new file mode 100755 index 00000000000..eaebc9aaef5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_153.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=153 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_153.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_154.sh b/test/ntuple_qcd_700_1000/batch/sge_154.sh new file mode 100755 index 00000000000..3f386961b42 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_154.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=154 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_154.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_155.sh b/test/ntuple_qcd_700_1000/batch/sge_155.sh new file mode 100755 index 00000000000..bdf4fd4e55e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_155.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=155 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_155.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_156.sh b/test/ntuple_qcd_700_1000/batch/sge_156.sh new file mode 100755 index 00000000000..12ffc95a09c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_156.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=156 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_156.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_157.sh b/test/ntuple_qcd_700_1000/batch/sge_157.sh new file mode 100755 index 00000000000..d279c8dc426 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_157.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=157 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_157.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_158.sh b/test/ntuple_qcd_700_1000/batch/sge_158.sh new file mode 100755 index 00000000000..e0c7f0b9f32 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_158.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=158 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_158.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_159.sh b/test/ntuple_qcd_700_1000/batch/sge_159.sh new file mode 100755 index 00000000000..a57790af628 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_159.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=159 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_159.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_16.sh b/test/ntuple_qcd_700_1000/batch/sge_16.sh new file mode 100755 index 00000000000..62049ac4e02 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_16.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=16 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_16.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_160.sh b/test/ntuple_qcd_700_1000/batch/sge_160.sh new file mode 100755 index 00000000000..1201a5d076d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_160.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=160 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_160.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_161.sh b/test/ntuple_qcd_700_1000/batch/sge_161.sh new file mode 100755 index 00000000000..ee299a6c24e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_161.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=161 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_161.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_162.sh b/test/ntuple_qcd_700_1000/batch/sge_162.sh new file mode 100755 index 00000000000..0e2a3b5809c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_162.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=162 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_162.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_163.sh b/test/ntuple_qcd_700_1000/batch/sge_163.sh new file mode 100755 index 00000000000..c121b74632e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_163.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=163 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_163.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_164.sh b/test/ntuple_qcd_700_1000/batch/sge_164.sh new file mode 100755 index 00000000000..95d4b719c05 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_164.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=164 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_164.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_165.sh b/test/ntuple_qcd_700_1000/batch/sge_165.sh new file mode 100755 index 00000000000..6ac3c1edf20 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_165.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=165 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_165.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_166.sh b/test/ntuple_qcd_700_1000/batch/sge_166.sh new file mode 100755 index 00000000000..8db5c1440ac --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_166.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=166 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_166.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_167.sh b/test/ntuple_qcd_700_1000/batch/sge_167.sh new file mode 100755 index 00000000000..cc27654666c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_167.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=167 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_167.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_168.sh b/test/ntuple_qcd_700_1000/batch/sge_168.sh new file mode 100755 index 00000000000..bccdedce202 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_168.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=168 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_168.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_169.sh b/test/ntuple_qcd_700_1000/batch/sge_169.sh new file mode 100755 index 00000000000..550fb77dc21 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_169.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=169 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_169.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_17.sh b/test/ntuple_qcd_700_1000/batch/sge_17.sh new file mode 100755 index 00000000000..c1205e136e8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_17.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=17 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_17.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_170.sh b/test/ntuple_qcd_700_1000/batch/sge_170.sh new file mode 100755 index 00000000000..3414f7c24bc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_170.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=170 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_170.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_171.sh b/test/ntuple_qcd_700_1000/batch/sge_171.sh new file mode 100755 index 00000000000..4f5e35168f2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_171.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=171 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_171.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_172.sh b/test/ntuple_qcd_700_1000/batch/sge_172.sh new file mode 100755 index 00000000000..dde1a497fe4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_172.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=172 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_172.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_173.sh b/test/ntuple_qcd_700_1000/batch/sge_173.sh new file mode 100755 index 00000000000..046a8dc55b1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_173.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=173 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_173.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_174.sh b/test/ntuple_qcd_700_1000/batch/sge_174.sh new file mode 100755 index 00000000000..b231d3edd5e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_174.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=174 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_174.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_175.sh b/test/ntuple_qcd_700_1000/batch/sge_175.sh new file mode 100755 index 00000000000..b15c205654b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_175.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=175 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_175.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_176.sh b/test/ntuple_qcd_700_1000/batch/sge_176.sh new file mode 100755 index 00000000000..8811b3dc685 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_176.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=176 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_176.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_177.sh b/test/ntuple_qcd_700_1000/batch/sge_177.sh new file mode 100755 index 00000000000..a3be438a468 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_177.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=177 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_177.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_178.sh b/test/ntuple_qcd_700_1000/batch/sge_178.sh new file mode 100755 index 00000000000..fc7a4c8c0b1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_178.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=178 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_178.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_179.sh b/test/ntuple_qcd_700_1000/batch/sge_179.sh new file mode 100755 index 00000000000..6f8603e1487 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_179.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=179 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_179.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_18.sh b/test/ntuple_qcd_700_1000/batch/sge_18.sh new file mode 100755 index 00000000000..cb1f4443c7a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_18.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=18 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_18.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_180.sh b/test/ntuple_qcd_700_1000/batch/sge_180.sh new file mode 100755 index 00000000000..2bd03f7769d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_180.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=180 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_180.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_181.sh b/test/ntuple_qcd_700_1000/batch/sge_181.sh new file mode 100755 index 00000000000..01049ae2267 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_181.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=181 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_181.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_182.sh b/test/ntuple_qcd_700_1000/batch/sge_182.sh new file mode 100755 index 00000000000..d4aeadc634e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_182.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=182 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_182.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_183.sh b/test/ntuple_qcd_700_1000/batch/sge_183.sh new file mode 100755 index 00000000000..a2f5aa0a691 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_183.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=183 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_183.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_184.sh b/test/ntuple_qcd_700_1000/batch/sge_184.sh new file mode 100755 index 00000000000..751b09ecef9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_184.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=184 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_184.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_185.sh b/test/ntuple_qcd_700_1000/batch/sge_185.sh new file mode 100755 index 00000000000..f3074600022 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_185.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=185 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_185.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_186.sh b/test/ntuple_qcd_700_1000/batch/sge_186.sh new file mode 100755 index 00000000000..1070a2c62de --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_186.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=186 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_186.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_187.sh b/test/ntuple_qcd_700_1000/batch/sge_187.sh new file mode 100755 index 00000000000..0d352ed0f01 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_187.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=187 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_187.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_188.sh b/test/ntuple_qcd_700_1000/batch/sge_188.sh new file mode 100755 index 00000000000..e46ed8de0bd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_188.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=188 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_188.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_189.sh b/test/ntuple_qcd_700_1000/batch/sge_189.sh new file mode 100755 index 00000000000..482f4d3dd5a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_189.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=189 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_189.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_19.sh b/test/ntuple_qcd_700_1000/batch/sge_19.sh new file mode 100755 index 00000000000..0e284f2ab4d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_19.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=19 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_19.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_190.sh b/test/ntuple_qcd_700_1000/batch/sge_190.sh new file mode 100755 index 00000000000..33b67240352 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_190.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=190 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_190.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_191.sh b/test/ntuple_qcd_700_1000/batch/sge_191.sh new file mode 100755 index 00000000000..da9dd3621a5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_191.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=191 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_191.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_192.sh b/test/ntuple_qcd_700_1000/batch/sge_192.sh new file mode 100755 index 00000000000..6714c76ac59 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_192.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=192 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_192.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_193.sh b/test/ntuple_qcd_700_1000/batch/sge_193.sh new file mode 100755 index 00000000000..dea26ab61c8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_193.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=193 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_193.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_194.sh b/test/ntuple_qcd_700_1000/batch/sge_194.sh new file mode 100755 index 00000000000..b07d0d2e924 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_194.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=194 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_194.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_195.sh b/test/ntuple_qcd_700_1000/batch/sge_195.sh new file mode 100755 index 00000000000..12df3c85529 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_195.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=195 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_195.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_196.sh b/test/ntuple_qcd_700_1000/batch/sge_196.sh new file mode 100755 index 00000000000..d93e9a3d68e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_196.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=196 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_196.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_197.sh b/test/ntuple_qcd_700_1000/batch/sge_197.sh new file mode 100755 index 00000000000..21247f6ddf6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_197.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=197 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_197.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_198.sh b/test/ntuple_qcd_700_1000/batch/sge_198.sh new file mode 100755 index 00000000000..63bdf91ee5b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_198.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=198 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_198.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_199.sh b/test/ntuple_qcd_700_1000/batch/sge_199.sh new file mode 100755 index 00000000000..c85a2fe4805 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_199.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=199 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_199.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_2.sh b/test/ntuple_qcd_700_1000/batch/sge_2.sh new file mode 100755 index 00000000000..a64bda9aa4b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_2.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_20.sh b/test/ntuple_qcd_700_1000/batch/sge_20.sh new file mode 100755 index 00000000000..9c1ca6651a8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_20.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=20 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_20.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_200.sh b/test/ntuple_qcd_700_1000/batch/sge_200.sh new file mode 100755 index 00000000000..f0dcdf01d15 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_200.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=200 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_200.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_201.sh b/test/ntuple_qcd_700_1000/batch/sge_201.sh new file mode 100755 index 00000000000..c393d0850eb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_201.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=201 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_201.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_202.sh b/test/ntuple_qcd_700_1000/batch/sge_202.sh new file mode 100755 index 00000000000..6c976c5c9e1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_202.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=202 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_202.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_203.sh b/test/ntuple_qcd_700_1000/batch/sge_203.sh new file mode 100755 index 00000000000..f97bc21aa02 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_203.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=203 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_203.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_204.sh b/test/ntuple_qcd_700_1000/batch/sge_204.sh new file mode 100755 index 00000000000..d04ff65dcf5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_204.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=204 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_204.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_205.sh b/test/ntuple_qcd_700_1000/batch/sge_205.sh new file mode 100755 index 00000000000..c037a919037 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_205.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=205 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_205.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_206.sh b/test/ntuple_qcd_700_1000/batch/sge_206.sh new file mode 100755 index 00000000000..49616605a1a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_206.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=206 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_206.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_207.sh b/test/ntuple_qcd_700_1000/batch/sge_207.sh new file mode 100755 index 00000000000..7a6fbbad73b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_207.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=207 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_207.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_208.sh b/test/ntuple_qcd_700_1000/batch/sge_208.sh new file mode 100755 index 00000000000..aef0ca3d2e7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_208.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=208 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_208.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_209.sh b/test/ntuple_qcd_700_1000/batch/sge_209.sh new file mode 100755 index 00000000000..958f9544790 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_209.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=209 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_209.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_21.sh b/test/ntuple_qcd_700_1000/batch/sge_21.sh new file mode 100755 index 00000000000..52711c80d31 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_21.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=21 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_21.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_210.sh b/test/ntuple_qcd_700_1000/batch/sge_210.sh new file mode 100755 index 00000000000..fd538954d09 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_210.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=210 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_210.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_211.sh b/test/ntuple_qcd_700_1000/batch/sge_211.sh new file mode 100755 index 00000000000..1cf08843df6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_211.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=211 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_211.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_212.sh b/test/ntuple_qcd_700_1000/batch/sge_212.sh new file mode 100755 index 00000000000..770d2bc8e84 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_212.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=212 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_212.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_213.sh b/test/ntuple_qcd_700_1000/batch/sge_213.sh new file mode 100755 index 00000000000..269a7e05b8d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_213.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=213 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_213.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_214.sh b/test/ntuple_qcd_700_1000/batch/sge_214.sh new file mode 100755 index 00000000000..a5f6c277f9e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_214.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=214 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_214.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_215.sh b/test/ntuple_qcd_700_1000/batch/sge_215.sh new file mode 100755 index 00000000000..2c8cc9f0351 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_215.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=215 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_215.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_216.sh b/test/ntuple_qcd_700_1000/batch/sge_216.sh new file mode 100755 index 00000000000..58c0a6ffa90 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_216.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=216 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_216.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_217.sh b/test/ntuple_qcd_700_1000/batch/sge_217.sh new file mode 100755 index 00000000000..9c4a3074f4a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_217.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=217 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_217.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_218.sh b/test/ntuple_qcd_700_1000/batch/sge_218.sh new file mode 100755 index 00000000000..ac74b2abbfb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_218.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=218 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_218.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_219.sh b/test/ntuple_qcd_700_1000/batch/sge_219.sh new file mode 100755 index 00000000000..ef32a9489e8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_219.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=219 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_219.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_22.sh b/test/ntuple_qcd_700_1000/batch/sge_22.sh new file mode 100755 index 00000000000..dfa7a61382e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_22.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=22 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_22.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_220.sh b/test/ntuple_qcd_700_1000/batch/sge_220.sh new file mode 100755 index 00000000000..c592a5cedc2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_220.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=220 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_220.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_221.sh b/test/ntuple_qcd_700_1000/batch/sge_221.sh new file mode 100755 index 00000000000..d3befedaef2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_221.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=221 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_221.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_222.sh b/test/ntuple_qcd_700_1000/batch/sge_222.sh new file mode 100755 index 00000000000..034edd92823 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_222.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=222 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_222.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_223.sh b/test/ntuple_qcd_700_1000/batch/sge_223.sh new file mode 100755 index 00000000000..26a1ec783ef --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_223.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=223 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_223.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_224.sh b/test/ntuple_qcd_700_1000/batch/sge_224.sh new file mode 100755 index 00000000000..d3354bd2cbf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_224.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=224 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_224.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_225.sh b/test/ntuple_qcd_700_1000/batch/sge_225.sh new file mode 100755 index 00000000000..9dbb09f7c87 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_225.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=225 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_225.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_226.sh b/test/ntuple_qcd_700_1000/batch/sge_226.sh new file mode 100755 index 00000000000..22e09f04106 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_226.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=226 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_226.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_227.sh b/test/ntuple_qcd_700_1000/batch/sge_227.sh new file mode 100755 index 00000000000..9997a0b5d9c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_227.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=227 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_227.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_228.sh b/test/ntuple_qcd_700_1000/batch/sge_228.sh new file mode 100755 index 00000000000..92f1392f6b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_228.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=228 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_228.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_229.sh b/test/ntuple_qcd_700_1000/batch/sge_229.sh new file mode 100755 index 00000000000..08ff630c046 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_229.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=229 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_229.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_23.sh b/test/ntuple_qcd_700_1000/batch/sge_23.sh new file mode 100755 index 00000000000..5d5f0bf55d4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_23.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=23 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_23.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_230.sh b/test/ntuple_qcd_700_1000/batch/sge_230.sh new file mode 100755 index 00000000000..c3c1474a686 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_230.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=230 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_230.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_231.sh b/test/ntuple_qcd_700_1000/batch/sge_231.sh new file mode 100755 index 00000000000..be231786d6c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_231.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=231 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_231.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_232.sh b/test/ntuple_qcd_700_1000/batch/sge_232.sh new file mode 100755 index 00000000000..4ff3709d835 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_232.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=232 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_232.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_233.sh b/test/ntuple_qcd_700_1000/batch/sge_233.sh new file mode 100755 index 00000000000..0440cd9dfc6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_233.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=233 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_233.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_234.sh b/test/ntuple_qcd_700_1000/batch/sge_234.sh new file mode 100755 index 00000000000..ceed04459e8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_234.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=234 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_234.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_235.sh b/test/ntuple_qcd_700_1000/batch/sge_235.sh new file mode 100755 index 00000000000..30b8d6b4fb8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_235.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=235 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_235.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_236.sh b/test/ntuple_qcd_700_1000/batch/sge_236.sh new file mode 100755 index 00000000000..44d4e31fc58 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_236.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=236 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_236.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_237.sh b/test/ntuple_qcd_700_1000/batch/sge_237.sh new file mode 100755 index 00000000000..d525b32c121 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_237.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=237 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_237.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_238.sh b/test/ntuple_qcd_700_1000/batch/sge_238.sh new file mode 100755 index 00000000000..9f650e97bed --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_238.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=238 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_238.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_239.sh b/test/ntuple_qcd_700_1000/batch/sge_239.sh new file mode 100755 index 00000000000..6593f3d80b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_239.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=239 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_239.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_24.sh b/test/ntuple_qcd_700_1000/batch/sge_24.sh new file mode 100755 index 00000000000..8f3ee59f9d8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_24.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=24 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_24.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_240.sh b/test/ntuple_qcd_700_1000/batch/sge_240.sh new file mode 100755 index 00000000000..2d30d7045b1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_240.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=240 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_240.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_241.sh b/test/ntuple_qcd_700_1000/batch/sge_241.sh new file mode 100755 index 00000000000..d052483fd08 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_241.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=241 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_241.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_242.sh b/test/ntuple_qcd_700_1000/batch/sge_242.sh new file mode 100755 index 00000000000..14bbc22506e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_242.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=242 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_242.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_243.sh b/test/ntuple_qcd_700_1000/batch/sge_243.sh new file mode 100755 index 00000000000..8bf1a45f0fb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_243.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=243 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_243.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_244.sh b/test/ntuple_qcd_700_1000/batch/sge_244.sh new file mode 100755 index 00000000000..ca48a07af0d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_244.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=244 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_244.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_245.sh b/test/ntuple_qcd_700_1000/batch/sge_245.sh new file mode 100755 index 00000000000..ad92fa4a26b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_245.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=245 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_245.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_246.sh b/test/ntuple_qcd_700_1000/batch/sge_246.sh new file mode 100755 index 00000000000..7108fe821f5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_246.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=246 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_246.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_247.sh b/test/ntuple_qcd_700_1000/batch/sge_247.sh new file mode 100755 index 00000000000..669809c3f0f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_247.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=247 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_247.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_248.sh b/test/ntuple_qcd_700_1000/batch/sge_248.sh new file mode 100755 index 00000000000..af4b861ae1c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_248.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=248 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_248.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_249.sh b/test/ntuple_qcd_700_1000/batch/sge_249.sh new file mode 100755 index 00000000000..057c80bfa29 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_249.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=249 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_249.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_25.sh b/test/ntuple_qcd_700_1000/batch/sge_25.sh new file mode 100755 index 00000000000..745130c6508 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_25.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=25 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_25.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_250.sh b/test/ntuple_qcd_700_1000/batch/sge_250.sh new file mode 100755 index 00000000000..2b9ecb017e9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_250.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=250 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_250.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_251.sh b/test/ntuple_qcd_700_1000/batch/sge_251.sh new file mode 100755 index 00000000000..2da395c6abf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_251.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=251 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_251.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_252.sh b/test/ntuple_qcd_700_1000/batch/sge_252.sh new file mode 100755 index 00000000000..c2ca8ff3993 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_252.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=252 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_252.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_253.sh b/test/ntuple_qcd_700_1000/batch/sge_253.sh new file mode 100755 index 00000000000..0a9a3a485cf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_253.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=253 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_253.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_254.sh b/test/ntuple_qcd_700_1000/batch/sge_254.sh new file mode 100755 index 00000000000..d1e6f3ece2b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_254.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=254 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_254.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_255.sh b/test/ntuple_qcd_700_1000/batch/sge_255.sh new file mode 100755 index 00000000000..887274be499 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_255.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=255 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_255.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_256.sh b/test/ntuple_qcd_700_1000/batch/sge_256.sh new file mode 100755 index 00000000000..508d5d5ed39 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_256.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=256 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_256.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_257.sh b/test/ntuple_qcd_700_1000/batch/sge_257.sh new file mode 100755 index 00000000000..be87a66167d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_257.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=257 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_257.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_258.sh b/test/ntuple_qcd_700_1000/batch/sge_258.sh new file mode 100755 index 00000000000..af2aa8e6929 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_258.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=258 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_258.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_259.sh b/test/ntuple_qcd_700_1000/batch/sge_259.sh new file mode 100755 index 00000000000..d3627463c03 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_259.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=259 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_259.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_26.sh b/test/ntuple_qcd_700_1000/batch/sge_26.sh new file mode 100755 index 00000000000..79f49d43e58 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_26.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=26 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_26.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_260.sh b/test/ntuple_qcd_700_1000/batch/sge_260.sh new file mode 100755 index 00000000000..0c15b57728b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_260.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=260 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_260.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_261.sh b/test/ntuple_qcd_700_1000/batch/sge_261.sh new file mode 100755 index 00000000000..79b847f1b7e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_261.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=261 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_261.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_262.sh b/test/ntuple_qcd_700_1000/batch/sge_262.sh new file mode 100755 index 00000000000..0de804947a4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_262.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=262 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_262.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_263.sh b/test/ntuple_qcd_700_1000/batch/sge_263.sh new file mode 100755 index 00000000000..5e9cb70a562 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_263.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=263 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_263.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_264.sh b/test/ntuple_qcd_700_1000/batch/sge_264.sh new file mode 100755 index 00000000000..c0033ada293 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_264.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=264 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_264.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_265.sh b/test/ntuple_qcd_700_1000/batch/sge_265.sh new file mode 100755 index 00000000000..ee872007ed8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_265.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=265 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_265.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_266.sh b/test/ntuple_qcd_700_1000/batch/sge_266.sh new file mode 100755 index 00000000000..8d45fb5afce --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_266.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=266 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_266.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_267.sh b/test/ntuple_qcd_700_1000/batch/sge_267.sh new file mode 100755 index 00000000000..e8c04499624 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_267.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=267 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_267.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_268.sh b/test/ntuple_qcd_700_1000/batch/sge_268.sh new file mode 100755 index 00000000000..fb039d891c4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_268.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=268 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_268.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_269.sh b/test/ntuple_qcd_700_1000/batch/sge_269.sh new file mode 100755 index 00000000000..d612cd5fdd8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_269.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=269 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_269.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_27.sh b/test/ntuple_qcd_700_1000/batch/sge_27.sh new file mode 100755 index 00000000000..5ec2a7a6b3e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_27.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=27 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_27.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_270.sh b/test/ntuple_qcd_700_1000/batch/sge_270.sh new file mode 100755 index 00000000000..7d59039acdf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_270.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=270 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_270.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_271.sh b/test/ntuple_qcd_700_1000/batch/sge_271.sh new file mode 100755 index 00000000000..9f152b8bd2f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_271.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=271 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_271.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_272.sh b/test/ntuple_qcd_700_1000/batch/sge_272.sh new file mode 100755 index 00000000000..92ac4772e98 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_272.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=272 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_272.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_273.sh b/test/ntuple_qcd_700_1000/batch/sge_273.sh new file mode 100755 index 00000000000..dc4b91d8d02 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_273.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=273 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_273.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_274.sh b/test/ntuple_qcd_700_1000/batch/sge_274.sh new file mode 100755 index 00000000000..0dec39a3c39 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_274.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=274 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_274.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_275.sh b/test/ntuple_qcd_700_1000/batch/sge_275.sh new file mode 100755 index 00000000000..62d00ea3e21 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_275.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=275 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_275.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_276.sh b/test/ntuple_qcd_700_1000/batch/sge_276.sh new file mode 100755 index 00000000000..168db0f6f1b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_276.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=276 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_276.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_277.sh b/test/ntuple_qcd_700_1000/batch/sge_277.sh new file mode 100755 index 00000000000..094c02e21cc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_277.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=277 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_277.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_278.sh b/test/ntuple_qcd_700_1000/batch/sge_278.sh new file mode 100755 index 00000000000..104e66631b0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_278.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=278 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_278.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_279.sh b/test/ntuple_qcd_700_1000/batch/sge_279.sh new file mode 100755 index 00000000000..b83dad86fcc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_279.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=279 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_279.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_28.sh b/test/ntuple_qcd_700_1000/batch/sge_28.sh new file mode 100755 index 00000000000..38d7b890d11 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_28.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=28 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_28.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_280.sh b/test/ntuple_qcd_700_1000/batch/sge_280.sh new file mode 100755 index 00000000000..3270a73746a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_280.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=280 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_280.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_281.sh b/test/ntuple_qcd_700_1000/batch/sge_281.sh new file mode 100755 index 00000000000..de083b29f92 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_281.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=281 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_281.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_282.sh b/test/ntuple_qcd_700_1000/batch/sge_282.sh new file mode 100755 index 00000000000..9a307f4834b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_282.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=282 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_282.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_283.sh b/test/ntuple_qcd_700_1000/batch/sge_283.sh new file mode 100755 index 00000000000..343b7fa2c01 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_283.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=283 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_283.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_284.sh b/test/ntuple_qcd_700_1000/batch/sge_284.sh new file mode 100755 index 00000000000..211d8271076 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_284.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=284 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_284.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_285.sh b/test/ntuple_qcd_700_1000/batch/sge_285.sh new file mode 100755 index 00000000000..a88da426f8d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_285.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=285 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_285.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_286.sh b/test/ntuple_qcd_700_1000/batch/sge_286.sh new file mode 100755 index 00000000000..745afed5e38 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_286.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=286 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_286.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_287.sh b/test/ntuple_qcd_700_1000/batch/sge_287.sh new file mode 100755 index 00000000000..5d33d12c865 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_287.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=287 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_287.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_288.sh b/test/ntuple_qcd_700_1000/batch/sge_288.sh new file mode 100755 index 00000000000..f8b66f41b66 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_288.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=288 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_288.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_289.sh b/test/ntuple_qcd_700_1000/batch/sge_289.sh new file mode 100755 index 00000000000..9b16a1ac979 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_289.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=289 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_289.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_29.sh b/test/ntuple_qcd_700_1000/batch/sge_29.sh new file mode 100755 index 00000000000..4440ac93f19 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_29.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=29 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_29.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_290.sh b/test/ntuple_qcd_700_1000/batch/sge_290.sh new file mode 100755 index 00000000000..0a0d198684d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_290.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=290 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_290.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_291.sh b/test/ntuple_qcd_700_1000/batch/sge_291.sh new file mode 100755 index 00000000000..e1386df0c41 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_291.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=291 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_291.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_292.sh b/test/ntuple_qcd_700_1000/batch/sge_292.sh new file mode 100755 index 00000000000..b4bc5546707 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_292.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=292 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_292.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_293.sh b/test/ntuple_qcd_700_1000/batch/sge_293.sh new file mode 100755 index 00000000000..21c4f451f50 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_293.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=293 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_293.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_294.sh b/test/ntuple_qcd_700_1000/batch/sge_294.sh new file mode 100755 index 00000000000..0ad5d67a983 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_294.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=294 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_294.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_295.sh b/test/ntuple_qcd_700_1000/batch/sge_295.sh new file mode 100755 index 00000000000..84dffd65628 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_295.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=295 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_295.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_296.sh b/test/ntuple_qcd_700_1000/batch/sge_296.sh new file mode 100755 index 00000000000..c0d7e634074 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_296.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=296 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_296.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_297.sh b/test/ntuple_qcd_700_1000/batch/sge_297.sh new file mode 100755 index 00000000000..929e7292d6e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_297.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=297 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_297.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_298.sh b/test/ntuple_qcd_700_1000/batch/sge_298.sh new file mode 100755 index 00000000000..cd7765a15b1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_298.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=298 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_298.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_299.sh b/test/ntuple_qcd_700_1000/batch/sge_299.sh new file mode 100755 index 00000000000..812fab7f582 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_299.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=299 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_299.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_3.sh b/test/ntuple_qcd_700_1000/batch/sge_3.sh new file mode 100755 index 00000000000..571c6fa9482 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_3.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_30.sh b/test/ntuple_qcd_700_1000/batch/sge_30.sh new file mode 100755 index 00000000000..882340f672d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_30.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=30 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_30.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_300.sh b/test/ntuple_qcd_700_1000/batch/sge_300.sh new file mode 100755 index 00000000000..bee5622d543 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_300.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=300 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_300.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_301.sh b/test/ntuple_qcd_700_1000/batch/sge_301.sh new file mode 100755 index 00000000000..b9ebca38d12 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_301.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=301 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_301.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_302.sh b/test/ntuple_qcd_700_1000/batch/sge_302.sh new file mode 100755 index 00000000000..58de489b707 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_302.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=302 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_302.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_303.sh b/test/ntuple_qcd_700_1000/batch/sge_303.sh new file mode 100755 index 00000000000..78783607e7d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_303.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=303 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_303.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_304.sh b/test/ntuple_qcd_700_1000/batch/sge_304.sh new file mode 100755 index 00000000000..baec4c492f7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_304.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=304 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_304.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_305.sh b/test/ntuple_qcd_700_1000/batch/sge_305.sh new file mode 100755 index 00000000000..ddd3274c2cd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_305.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=305 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_305.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_306.sh b/test/ntuple_qcd_700_1000/batch/sge_306.sh new file mode 100755 index 00000000000..ebed14d958b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_306.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=306 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_306.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_307.sh b/test/ntuple_qcd_700_1000/batch/sge_307.sh new file mode 100755 index 00000000000..f58e0b02ab6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_307.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=307 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_307.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_308.sh b/test/ntuple_qcd_700_1000/batch/sge_308.sh new file mode 100755 index 00000000000..6a03f4a4235 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_308.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=308 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_308.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_309.sh b/test/ntuple_qcd_700_1000/batch/sge_309.sh new file mode 100755 index 00000000000..00e588efebf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_309.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=309 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_309.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_31.sh b/test/ntuple_qcd_700_1000/batch/sge_31.sh new file mode 100755 index 00000000000..01a4a88e1ca --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_31.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=31 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_31.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_310.sh b/test/ntuple_qcd_700_1000/batch/sge_310.sh new file mode 100755 index 00000000000..dd496d13fba --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_310.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=310 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_310.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_311.sh b/test/ntuple_qcd_700_1000/batch/sge_311.sh new file mode 100755 index 00000000000..4600cfc04fb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_311.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=311 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_311.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_312.sh b/test/ntuple_qcd_700_1000/batch/sge_312.sh new file mode 100755 index 00000000000..af9cbfb73b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_312.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=312 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_312.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_313.sh b/test/ntuple_qcd_700_1000/batch/sge_313.sh new file mode 100755 index 00000000000..775c77ed6b9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_313.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=313 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_313.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_314.sh b/test/ntuple_qcd_700_1000/batch/sge_314.sh new file mode 100755 index 00000000000..5365f2a0dc3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_314.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=314 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_314.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_315.sh b/test/ntuple_qcd_700_1000/batch/sge_315.sh new file mode 100755 index 00000000000..a94197d41df --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_315.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=315 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_315.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_316.sh b/test/ntuple_qcd_700_1000/batch/sge_316.sh new file mode 100755 index 00000000000..c901f6f44e3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_316.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=316 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_316.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_317.sh b/test/ntuple_qcd_700_1000/batch/sge_317.sh new file mode 100755 index 00000000000..431c8ff6f7c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_317.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=317 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_317.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_318.sh b/test/ntuple_qcd_700_1000/batch/sge_318.sh new file mode 100755 index 00000000000..b6bc043406b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_318.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=318 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_318.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_319.sh b/test/ntuple_qcd_700_1000/batch/sge_319.sh new file mode 100755 index 00000000000..9bdcaa2d241 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_319.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=319 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_319.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_32.sh b/test/ntuple_qcd_700_1000/batch/sge_32.sh new file mode 100755 index 00000000000..e441ac23fc5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_32.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=32 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_32.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_320.sh b/test/ntuple_qcd_700_1000/batch/sge_320.sh new file mode 100755 index 00000000000..d7ad5a9bef7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_320.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=320 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_320.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_321.sh b/test/ntuple_qcd_700_1000/batch/sge_321.sh new file mode 100755 index 00000000000..e1374088de3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_321.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=321 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_321.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_322.sh b/test/ntuple_qcd_700_1000/batch/sge_322.sh new file mode 100755 index 00000000000..50034766244 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_322.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=322 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_322.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_323.sh b/test/ntuple_qcd_700_1000/batch/sge_323.sh new file mode 100755 index 00000000000..5506398086c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_323.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=323 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_323.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_324.sh b/test/ntuple_qcd_700_1000/batch/sge_324.sh new file mode 100755 index 00000000000..a4615282994 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_324.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=324 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_324.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_325.sh b/test/ntuple_qcd_700_1000/batch/sge_325.sh new file mode 100755 index 00000000000..5da83cd62e4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_325.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=325 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_325.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_326.sh b/test/ntuple_qcd_700_1000/batch/sge_326.sh new file mode 100755 index 00000000000..61298665c83 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_326.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=326 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_326.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_327.sh b/test/ntuple_qcd_700_1000/batch/sge_327.sh new file mode 100755 index 00000000000..4192681f28e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_327.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=327 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_327.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_328.sh b/test/ntuple_qcd_700_1000/batch/sge_328.sh new file mode 100755 index 00000000000..973915433d1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_328.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=328 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_328.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_329.sh b/test/ntuple_qcd_700_1000/batch/sge_329.sh new file mode 100755 index 00000000000..7e8b38ca7cf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_329.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=329 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_329.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_33.sh b/test/ntuple_qcd_700_1000/batch/sge_33.sh new file mode 100755 index 00000000000..f1c5b63cdc6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_33.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=33 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_33.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_330.sh b/test/ntuple_qcd_700_1000/batch/sge_330.sh new file mode 100755 index 00000000000..04c7254247d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_330.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=330 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_330.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_331.sh b/test/ntuple_qcd_700_1000/batch/sge_331.sh new file mode 100755 index 00000000000..188be1307d1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_331.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=331 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_331.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_332.sh b/test/ntuple_qcd_700_1000/batch/sge_332.sh new file mode 100755 index 00000000000..6463a64d67b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_332.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=332 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_332.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_333.sh b/test/ntuple_qcd_700_1000/batch/sge_333.sh new file mode 100755 index 00000000000..bdeefd6c792 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_333.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=333 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_333.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_334.sh b/test/ntuple_qcd_700_1000/batch/sge_334.sh new file mode 100755 index 00000000000..265bf43e392 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_334.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=334 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_334.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_335.sh b/test/ntuple_qcd_700_1000/batch/sge_335.sh new file mode 100755 index 00000000000..fba8c6f547d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_335.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=335 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_335.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_336.sh b/test/ntuple_qcd_700_1000/batch/sge_336.sh new file mode 100755 index 00000000000..1801b0f32e0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_336.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=336 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_336.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_337.sh b/test/ntuple_qcd_700_1000/batch/sge_337.sh new file mode 100755 index 00000000000..ae1725b8782 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_337.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=337 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_337.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_338.sh b/test/ntuple_qcd_700_1000/batch/sge_338.sh new file mode 100755 index 00000000000..dc6b73a671c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_338.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=338 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_338.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_339.sh b/test/ntuple_qcd_700_1000/batch/sge_339.sh new file mode 100755 index 00000000000..74ea92bbda2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_339.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=339 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_339.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_34.sh b/test/ntuple_qcd_700_1000/batch/sge_34.sh new file mode 100755 index 00000000000..90c258bd885 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_34.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=34 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_34.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_340.sh b/test/ntuple_qcd_700_1000/batch/sge_340.sh new file mode 100755 index 00000000000..a899ccf978f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_340.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=340 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_340.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_341.sh b/test/ntuple_qcd_700_1000/batch/sge_341.sh new file mode 100755 index 00000000000..240a2a106cb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_341.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=341 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_341.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_342.sh b/test/ntuple_qcd_700_1000/batch/sge_342.sh new file mode 100755 index 00000000000..ad538119a76 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_342.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=342 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_342.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_343.sh b/test/ntuple_qcd_700_1000/batch/sge_343.sh new file mode 100755 index 00000000000..d9b44ace06f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_343.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=343 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_343.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_344.sh b/test/ntuple_qcd_700_1000/batch/sge_344.sh new file mode 100755 index 00000000000..8768bb5dd5c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_344.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=344 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_344.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_345.sh b/test/ntuple_qcd_700_1000/batch/sge_345.sh new file mode 100755 index 00000000000..aec5ae1d7a6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_345.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=345 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_345.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_346.sh b/test/ntuple_qcd_700_1000/batch/sge_346.sh new file mode 100755 index 00000000000..b9b20c61dc5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_346.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=346 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_346.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_347.sh b/test/ntuple_qcd_700_1000/batch/sge_347.sh new file mode 100755 index 00000000000..81cd4a4f190 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_347.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=347 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_347.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_348.sh b/test/ntuple_qcd_700_1000/batch/sge_348.sh new file mode 100755 index 00000000000..c08ee759344 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_348.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=348 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_348.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_349.sh b/test/ntuple_qcd_700_1000/batch/sge_349.sh new file mode 100755 index 00000000000..121a30a3413 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_349.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=349 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_349.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_35.sh b/test/ntuple_qcd_700_1000/batch/sge_35.sh new file mode 100755 index 00000000000..708dfda7d55 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_35.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=35 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_35.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_350.sh b/test/ntuple_qcd_700_1000/batch/sge_350.sh new file mode 100755 index 00000000000..177221c908e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_350.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=350 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_350.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_351.sh b/test/ntuple_qcd_700_1000/batch/sge_351.sh new file mode 100755 index 00000000000..fc56c4c51b2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_351.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=351 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_351.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_352.sh b/test/ntuple_qcd_700_1000/batch/sge_352.sh new file mode 100755 index 00000000000..62c5982b9ee --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_352.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=352 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_352.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_353.sh b/test/ntuple_qcd_700_1000/batch/sge_353.sh new file mode 100755 index 00000000000..04e60363f7b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_353.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=353 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_353.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_354.sh b/test/ntuple_qcd_700_1000/batch/sge_354.sh new file mode 100755 index 00000000000..763f2de0fce --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_354.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=354 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_354.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_355.sh b/test/ntuple_qcd_700_1000/batch/sge_355.sh new file mode 100755 index 00000000000..c6c26b1c128 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_355.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=355 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_355.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_356.sh b/test/ntuple_qcd_700_1000/batch/sge_356.sh new file mode 100755 index 00000000000..4382c54f848 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_356.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=356 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_356.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_357.sh b/test/ntuple_qcd_700_1000/batch/sge_357.sh new file mode 100755 index 00000000000..eed0a73cbd0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_357.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=357 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_357.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_358.sh b/test/ntuple_qcd_700_1000/batch/sge_358.sh new file mode 100755 index 00000000000..feef9b6896f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_358.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=358 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_358.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_359.sh b/test/ntuple_qcd_700_1000/batch/sge_359.sh new file mode 100755 index 00000000000..c768bfe342b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_359.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=359 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_359.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_36.sh b/test/ntuple_qcd_700_1000/batch/sge_36.sh new file mode 100755 index 00000000000..6213248177e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_36.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=36 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_36.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_360.sh b/test/ntuple_qcd_700_1000/batch/sge_360.sh new file mode 100755 index 00000000000..01649e2f953 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_360.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=360 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_360.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_361.sh b/test/ntuple_qcd_700_1000/batch/sge_361.sh new file mode 100755 index 00000000000..1d214304b21 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_361.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=361 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_361.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_362.sh b/test/ntuple_qcd_700_1000/batch/sge_362.sh new file mode 100755 index 00000000000..f3dc1013d89 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_362.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=362 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_362.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_363.sh b/test/ntuple_qcd_700_1000/batch/sge_363.sh new file mode 100755 index 00000000000..706eab9c023 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_363.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=363 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_363.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_364.sh b/test/ntuple_qcd_700_1000/batch/sge_364.sh new file mode 100755 index 00000000000..4f84b1f8a04 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_364.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=364 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_364.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_365.sh b/test/ntuple_qcd_700_1000/batch/sge_365.sh new file mode 100755 index 00000000000..39c3676712d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_365.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=365 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_365.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_366.sh b/test/ntuple_qcd_700_1000/batch/sge_366.sh new file mode 100755 index 00000000000..04476df9f7f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_366.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=366 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_366.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_367.sh b/test/ntuple_qcd_700_1000/batch/sge_367.sh new file mode 100755 index 00000000000..f4d01592635 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_367.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=367 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_367.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_368.sh b/test/ntuple_qcd_700_1000/batch/sge_368.sh new file mode 100755 index 00000000000..6b44b2b6367 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_368.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=368 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_368.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_369.sh b/test/ntuple_qcd_700_1000/batch/sge_369.sh new file mode 100755 index 00000000000..51099330f31 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_369.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=369 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_369.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_37.sh b/test/ntuple_qcd_700_1000/batch/sge_37.sh new file mode 100755 index 00000000000..0aef422e3b4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_37.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=37 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_37.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_370.sh b/test/ntuple_qcd_700_1000/batch/sge_370.sh new file mode 100755 index 00000000000..49972bb5aba --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_370.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=370 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_370.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_371.sh b/test/ntuple_qcd_700_1000/batch/sge_371.sh new file mode 100755 index 00000000000..b2ee53d19ff --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_371.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=371 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_371.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_372.sh b/test/ntuple_qcd_700_1000/batch/sge_372.sh new file mode 100755 index 00000000000..fd9632dea41 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_372.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=372 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_372.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_373.sh b/test/ntuple_qcd_700_1000/batch/sge_373.sh new file mode 100755 index 00000000000..f05881c4310 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_373.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=373 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_373.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_374.sh b/test/ntuple_qcd_700_1000/batch/sge_374.sh new file mode 100755 index 00000000000..fa44656d2d2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_374.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=374 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_374.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_375.sh b/test/ntuple_qcd_700_1000/batch/sge_375.sh new file mode 100755 index 00000000000..28b72784f71 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_375.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=375 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_375.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_376.sh b/test/ntuple_qcd_700_1000/batch/sge_376.sh new file mode 100755 index 00000000000..a1b14d118f0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_376.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=376 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_376.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_377.sh b/test/ntuple_qcd_700_1000/batch/sge_377.sh new file mode 100755 index 00000000000..bfb4859cc60 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_377.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=377 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_377.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_378.sh b/test/ntuple_qcd_700_1000/batch/sge_378.sh new file mode 100755 index 00000000000..ca875575446 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_378.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=378 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_378.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_379.sh b/test/ntuple_qcd_700_1000/batch/sge_379.sh new file mode 100755 index 00000000000..5e64ca22750 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_379.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=379 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_379.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_38.sh b/test/ntuple_qcd_700_1000/batch/sge_38.sh new file mode 100755 index 00000000000..ba2c72904f3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_38.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=38 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_38.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_380.sh b/test/ntuple_qcd_700_1000/batch/sge_380.sh new file mode 100755 index 00000000000..45df812ef01 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_380.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=380 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_380.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_381.sh b/test/ntuple_qcd_700_1000/batch/sge_381.sh new file mode 100755 index 00000000000..47324a905ca --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_381.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=381 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_381.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_382.sh b/test/ntuple_qcd_700_1000/batch/sge_382.sh new file mode 100755 index 00000000000..6478a0b5879 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_382.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=382 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_382.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_383.sh b/test/ntuple_qcd_700_1000/batch/sge_383.sh new file mode 100755 index 00000000000..688b9198ce0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_383.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=383 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_383.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_384.sh b/test/ntuple_qcd_700_1000/batch/sge_384.sh new file mode 100755 index 00000000000..c369a37cd49 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_384.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=384 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_384.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_385.sh b/test/ntuple_qcd_700_1000/batch/sge_385.sh new file mode 100755 index 00000000000..0ee0f5e56ae --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_385.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=385 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_385.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_386.sh b/test/ntuple_qcd_700_1000/batch/sge_386.sh new file mode 100755 index 00000000000..69b523e5da3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_386.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=386 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_386.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_387.sh b/test/ntuple_qcd_700_1000/batch/sge_387.sh new file mode 100755 index 00000000000..b0ee209eb66 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_387.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=387 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_387.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_388.sh b/test/ntuple_qcd_700_1000/batch/sge_388.sh new file mode 100755 index 00000000000..bab33fe0713 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_388.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=388 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_388.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_389.sh b/test/ntuple_qcd_700_1000/batch/sge_389.sh new file mode 100755 index 00000000000..75e576c88ce --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_389.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=389 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_389.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_39.sh b/test/ntuple_qcd_700_1000/batch/sge_39.sh new file mode 100755 index 00000000000..230fe64c0e5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_39.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=39 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_39.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_390.sh b/test/ntuple_qcd_700_1000/batch/sge_390.sh new file mode 100755 index 00000000000..5e91f6a2904 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_390.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=390 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_390.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_391.sh b/test/ntuple_qcd_700_1000/batch/sge_391.sh new file mode 100755 index 00000000000..1b7d00c7e79 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_391.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=391 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_391.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_392.sh b/test/ntuple_qcd_700_1000/batch/sge_392.sh new file mode 100755 index 00000000000..899a4c58d12 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_392.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=392 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_392.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_393.sh b/test/ntuple_qcd_700_1000/batch/sge_393.sh new file mode 100755 index 00000000000..d5ca6ca268c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_393.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=393 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_393.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_394.sh b/test/ntuple_qcd_700_1000/batch/sge_394.sh new file mode 100755 index 00000000000..df082eb861f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_394.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=394 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_394.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_395.sh b/test/ntuple_qcd_700_1000/batch/sge_395.sh new file mode 100755 index 00000000000..80a894fe450 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_395.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=395 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_395.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_396.sh b/test/ntuple_qcd_700_1000/batch/sge_396.sh new file mode 100755 index 00000000000..347aa9c9059 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_396.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=396 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_396.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_397.sh b/test/ntuple_qcd_700_1000/batch/sge_397.sh new file mode 100755 index 00000000000..1e4773ad087 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_397.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=397 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_397.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_398.sh b/test/ntuple_qcd_700_1000/batch/sge_398.sh new file mode 100755 index 00000000000..92b0ce6f1bf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_398.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=398 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_398.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_399.sh b/test/ntuple_qcd_700_1000/batch/sge_399.sh new file mode 100755 index 00000000000..3a3a73af169 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_399.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=399 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_399.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_4.sh b/test/ntuple_qcd_700_1000/batch/sge_4.sh new file mode 100755 index 00000000000..b3d73c6c9c4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_4.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_40.sh b/test/ntuple_qcd_700_1000/batch/sge_40.sh new file mode 100755 index 00000000000..8b0552bb8bd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_40.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=40 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_40.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_400.sh b/test/ntuple_qcd_700_1000/batch/sge_400.sh new file mode 100755 index 00000000000..e5440955ea2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_400.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=400 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_400.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_401.sh b/test/ntuple_qcd_700_1000/batch/sge_401.sh new file mode 100755 index 00000000000..70974c53312 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_401.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=401 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_401.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_402.sh b/test/ntuple_qcd_700_1000/batch/sge_402.sh new file mode 100755 index 00000000000..579746c1119 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_402.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=402 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_402.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_403.sh b/test/ntuple_qcd_700_1000/batch/sge_403.sh new file mode 100755 index 00000000000..cd5679c5455 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_403.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=403 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_403.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_404.sh b/test/ntuple_qcd_700_1000/batch/sge_404.sh new file mode 100755 index 00000000000..d49ec40ecd2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_404.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=404 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_404.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_405.sh b/test/ntuple_qcd_700_1000/batch/sge_405.sh new file mode 100755 index 00000000000..87b9edd994e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_405.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=405 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_405.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_406.sh b/test/ntuple_qcd_700_1000/batch/sge_406.sh new file mode 100755 index 00000000000..10efc93502d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_406.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=406 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_406.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_407.sh b/test/ntuple_qcd_700_1000/batch/sge_407.sh new file mode 100755 index 00000000000..e4c347c0bc4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_407.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=407 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_407.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_408.sh b/test/ntuple_qcd_700_1000/batch/sge_408.sh new file mode 100755 index 00000000000..543158034f6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_408.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=408 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_408.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_409.sh b/test/ntuple_qcd_700_1000/batch/sge_409.sh new file mode 100755 index 00000000000..65cd9aa2597 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_409.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=409 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_409.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_41.sh b/test/ntuple_qcd_700_1000/batch/sge_41.sh new file mode 100755 index 00000000000..077975b5abf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_41.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=41 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_41.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_410.sh b/test/ntuple_qcd_700_1000/batch/sge_410.sh new file mode 100755 index 00000000000..84931fca1f7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_410.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=410 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_410.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_411.sh b/test/ntuple_qcd_700_1000/batch/sge_411.sh new file mode 100755 index 00000000000..f98713fac94 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_411.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=411 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_411.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_412.sh b/test/ntuple_qcd_700_1000/batch/sge_412.sh new file mode 100755 index 00000000000..d88c6955def --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_412.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=412 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_412.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_413.sh b/test/ntuple_qcd_700_1000/batch/sge_413.sh new file mode 100755 index 00000000000..8326ee70465 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_413.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=413 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_413.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_414.sh b/test/ntuple_qcd_700_1000/batch/sge_414.sh new file mode 100755 index 00000000000..d0b3466df95 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_414.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=414 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_414.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_415.sh b/test/ntuple_qcd_700_1000/batch/sge_415.sh new file mode 100755 index 00000000000..9056531c7d3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_415.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=415 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_415.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_416.sh b/test/ntuple_qcd_700_1000/batch/sge_416.sh new file mode 100755 index 00000000000..21c8b3a7336 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_416.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=416 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_416.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_417.sh b/test/ntuple_qcd_700_1000/batch/sge_417.sh new file mode 100755 index 00000000000..c1ceeb69d0c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_417.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=417 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_417.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_418.sh b/test/ntuple_qcd_700_1000/batch/sge_418.sh new file mode 100755 index 00000000000..f0082c37fc9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_418.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=418 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_418.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_419.sh b/test/ntuple_qcd_700_1000/batch/sge_419.sh new file mode 100755 index 00000000000..668bb8189ad --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_419.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=419 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_419.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_42.sh b/test/ntuple_qcd_700_1000/batch/sge_42.sh new file mode 100755 index 00000000000..4d1806e362b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_42.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=42 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_42.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_420.sh b/test/ntuple_qcd_700_1000/batch/sge_420.sh new file mode 100755 index 00000000000..99dc2b95455 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_420.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=420 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_420.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_421.sh b/test/ntuple_qcd_700_1000/batch/sge_421.sh new file mode 100755 index 00000000000..76b97eec2a5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_421.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=421 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_421.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_422.sh b/test/ntuple_qcd_700_1000/batch/sge_422.sh new file mode 100755 index 00000000000..a2fabe903ed --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_422.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=422 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_422.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_423.sh b/test/ntuple_qcd_700_1000/batch/sge_423.sh new file mode 100755 index 00000000000..36c2218d787 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_423.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=423 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_423.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_424.sh b/test/ntuple_qcd_700_1000/batch/sge_424.sh new file mode 100755 index 00000000000..dd5889d14ac --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_424.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=424 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_424.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_425.sh b/test/ntuple_qcd_700_1000/batch/sge_425.sh new file mode 100755 index 00000000000..cd9008d16e7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_425.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=425 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_425.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_426.sh b/test/ntuple_qcd_700_1000/batch/sge_426.sh new file mode 100755 index 00000000000..d6c0c71f2df --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_426.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=426 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_426.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_427.sh b/test/ntuple_qcd_700_1000/batch/sge_427.sh new file mode 100755 index 00000000000..d563a442b71 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_427.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=427 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_427.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_428.sh b/test/ntuple_qcd_700_1000/batch/sge_428.sh new file mode 100755 index 00000000000..ea8de369329 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_428.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=428 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_428.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_429.sh b/test/ntuple_qcd_700_1000/batch/sge_429.sh new file mode 100755 index 00000000000..c749a5fd8ec --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_429.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=429 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_429.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_43.sh b/test/ntuple_qcd_700_1000/batch/sge_43.sh new file mode 100755 index 00000000000..272ed0f754b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_43.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=43 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_43.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_430.sh b/test/ntuple_qcd_700_1000/batch/sge_430.sh new file mode 100755 index 00000000000..e6b9f08e2d9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_430.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=430 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_430.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_431.sh b/test/ntuple_qcd_700_1000/batch/sge_431.sh new file mode 100755 index 00000000000..cf5e3c16aa5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_431.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=431 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_431.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_432.sh b/test/ntuple_qcd_700_1000/batch/sge_432.sh new file mode 100755 index 00000000000..d1f340da580 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_432.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=432 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_432.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_433.sh b/test/ntuple_qcd_700_1000/batch/sge_433.sh new file mode 100755 index 00000000000..7c9d34fcc9f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_433.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=433 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_433.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_434.sh b/test/ntuple_qcd_700_1000/batch/sge_434.sh new file mode 100755 index 00000000000..587d6696015 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_434.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=434 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_434.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_435.sh b/test/ntuple_qcd_700_1000/batch/sge_435.sh new file mode 100755 index 00000000000..33c94dcd800 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_435.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=435 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_435.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_436.sh b/test/ntuple_qcd_700_1000/batch/sge_436.sh new file mode 100755 index 00000000000..b5447a469eb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_436.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=436 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_436.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_437.sh b/test/ntuple_qcd_700_1000/batch/sge_437.sh new file mode 100755 index 00000000000..09137516d53 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_437.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=437 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_437.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_438.sh b/test/ntuple_qcd_700_1000/batch/sge_438.sh new file mode 100755 index 00000000000..0fa8ad59cb6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_438.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=438 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_438.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_439.sh b/test/ntuple_qcd_700_1000/batch/sge_439.sh new file mode 100755 index 00000000000..ba2d2fbfa4b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_439.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=439 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_439.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_44.sh b/test/ntuple_qcd_700_1000/batch/sge_44.sh new file mode 100755 index 00000000000..6bb283dbee2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_44.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=44 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_44.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_440.sh b/test/ntuple_qcd_700_1000/batch/sge_440.sh new file mode 100755 index 00000000000..30c6caa4155 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_440.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=440 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_440.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_441.sh b/test/ntuple_qcd_700_1000/batch/sge_441.sh new file mode 100755 index 00000000000..6838bde5b50 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_441.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=441 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_441.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_442.sh b/test/ntuple_qcd_700_1000/batch/sge_442.sh new file mode 100755 index 00000000000..62fedf565da --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_442.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=442 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_442.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_443.sh b/test/ntuple_qcd_700_1000/batch/sge_443.sh new file mode 100755 index 00000000000..58600e3412b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_443.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=443 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_443.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_444.sh b/test/ntuple_qcd_700_1000/batch/sge_444.sh new file mode 100755 index 00000000000..b77169d5813 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_444.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=444 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_444.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_445.sh b/test/ntuple_qcd_700_1000/batch/sge_445.sh new file mode 100755 index 00000000000..0e0df54fbf2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_445.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=445 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_445.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_446.sh b/test/ntuple_qcd_700_1000/batch/sge_446.sh new file mode 100755 index 00000000000..cbd5ae8ddcc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_446.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=446 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_446.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_447.sh b/test/ntuple_qcd_700_1000/batch/sge_447.sh new file mode 100755 index 00000000000..f64e4ebfb0e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_447.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=447 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_447.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_448.sh b/test/ntuple_qcd_700_1000/batch/sge_448.sh new file mode 100755 index 00000000000..06a2c403faf --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_448.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=448 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_448.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_449.sh b/test/ntuple_qcd_700_1000/batch/sge_449.sh new file mode 100755 index 00000000000..9d0dc49194a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_449.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=449 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_449.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_45.sh b/test/ntuple_qcd_700_1000/batch/sge_45.sh new file mode 100755 index 00000000000..7c488e5f4b5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_45.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=45 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_45.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_450.sh b/test/ntuple_qcd_700_1000/batch/sge_450.sh new file mode 100755 index 00000000000..e11eb99fa2d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_450.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=450 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_450.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_451.sh b/test/ntuple_qcd_700_1000/batch/sge_451.sh new file mode 100755 index 00000000000..a77e12eeff1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_451.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=451 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_451.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_452.sh b/test/ntuple_qcd_700_1000/batch/sge_452.sh new file mode 100755 index 00000000000..cd1c53aea79 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_452.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=452 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_452.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_453.sh b/test/ntuple_qcd_700_1000/batch/sge_453.sh new file mode 100755 index 00000000000..b6aef5e3706 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_453.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=453 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_453.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_454.sh b/test/ntuple_qcd_700_1000/batch/sge_454.sh new file mode 100755 index 00000000000..ef78adaa6ab --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_454.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=454 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_454.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_455.sh b/test/ntuple_qcd_700_1000/batch/sge_455.sh new file mode 100755 index 00000000000..b230578f375 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_455.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=455 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_455.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_456.sh b/test/ntuple_qcd_700_1000/batch/sge_456.sh new file mode 100755 index 00000000000..3dd200c7ef5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_456.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=456 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_456.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_457.sh b/test/ntuple_qcd_700_1000/batch/sge_457.sh new file mode 100755 index 00000000000..2a26ea3f8ea --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_457.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=457 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_457.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_458.sh b/test/ntuple_qcd_700_1000/batch/sge_458.sh new file mode 100755 index 00000000000..c87b18dd24e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_458.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=458 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_458.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_459.sh b/test/ntuple_qcd_700_1000/batch/sge_459.sh new file mode 100755 index 00000000000..729b4f504e9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_459.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=459 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_459.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_46.sh b/test/ntuple_qcd_700_1000/batch/sge_46.sh new file mode 100755 index 00000000000..e56f9e4824c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_46.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=46 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_46.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_460.sh b/test/ntuple_qcd_700_1000/batch/sge_460.sh new file mode 100755 index 00000000000..1c5377a2fd2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_460.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=460 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_460.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_461.sh b/test/ntuple_qcd_700_1000/batch/sge_461.sh new file mode 100755 index 00000000000..bdca7a42612 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_461.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=461 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_461.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_462.sh b/test/ntuple_qcd_700_1000/batch/sge_462.sh new file mode 100755 index 00000000000..d2ccaf44bf8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_462.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=462 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_462.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_463.sh b/test/ntuple_qcd_700_1000/batch/sge_463.sh new file mode 100755 index 00000000000..35497a7487c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_463.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=463 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_463.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_464.sh b/test/ntuple_qcd_700_1000/batch/sge_464.sh new file mode 100755 index 00000000000..5236e97d70c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_464.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=464 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_464.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_465.sh b/test/ntuple_qcd_700_1000/batch/sge_465.sh new file mode 100755 index 00000000000..cd239f48f0f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_465.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=465 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_465.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_466.sh b/test/ntuple_qcd_700_1000/batch/sge_466.sh new file mode 100755 index 00000000000..bef19cd1f6f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_466.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=466 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_466.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_467.sh b/test/ntuple_qcd_700_1000/batch/sge_467.sh new file mode 100755 index 00000000000..d80221a89d1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_467.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=467 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_467.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_468.sh b/test/ntuple_qcd_700_1000/batch/sge_468.sh new file mode 100755 index 00000000000..524062cff01 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_468.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=468 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_468.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_469.sh b/test/ntuple_qcd_700_1000/batch/sge_469.sh new file mode 100755 index 00000000000..ce2dd49c882 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_469.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=469 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_469.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_47.sh b/test/ntuple_qcd_700_1000/batch/sge_47.sh new file mode 100755 index 00000000000..385d0ddd29b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_47.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=47 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_47.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_470.sh b/test/ntuple_qcd_700_1000/batch/sge_470.sh new file mode 100755 index 00000000000..814bca2066f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_470.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=470 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_470.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_471.sh b/test/ntuple_qcd_700_1000/batch/sge_471.sh new file mode 100755 index 00000000000..b09a8e43790 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_471.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=471 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_471.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_472.sh b/test/ntuple_qcd_700_1000/batch/sge_472.sh new file mode 100755 index 00000000000..094512524fd --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_472.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=472 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_472.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_473.sh b/test/ntuple_qcd_700_1000/batch/sge_473.sh new file mode 100755 index 00000000000..3a368b7d1ce --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_473.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=473 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_473.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_474.sh b/test/ntuple_qcd_700_1000/batch/sge_474.sh new file mode 100755 index 00000000000..5f6d1bc6993 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_474.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=474 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_474.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_475.sh b/test/ntuple_qcd_700_1000/batch/sge_475.sh new file mode 100755 index 00000000000..c5f6798f5dc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_475.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=475 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_475.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_476.sh b/test/ntuple_qcd_700_1000/batch/sge_476.sh new file mode 100755 index 00000000000..2030b5fdbe8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_476.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=476 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_476.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_477.sh b/test/ntuple_qcd_700_1000/batch/sge_477.sh new file mode 100755 index 00000000000..9218f1deb69 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_477.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=477 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_477.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_478.sh b/test/ntuple_qcd_700_1000/batch/sge_478.sh new file mode 100755 index 00000000000..fe466845544 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_478.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=478 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_478.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_479.sh b/test/ntuple_qcd_700_1000/batch/sge_479.sh new file mode 100755 index 00000000000..105dbb1cee5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_479.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=479 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_479.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_48.sh b/test/ntuple_qcd_700_1000/batch/sge_48.sh new file mode 100755 index 00000000000..c501fd8da34 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_48.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=48 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_48.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_480.sh b/test/ntuple_qcd_700_1000/batch/sge_480.sh new file mode 100755 index 00000000000..0bb8e00582d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_480.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=480 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_480.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_481.sh b/test/ntuple_qcd_700_1000/batch/sge_481.sh new file mode 100755 index 00000000000..55ed708707c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_481.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=481 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_481.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_482.sh b/test/ntuple_qcd_700_1000/batch/sge_482.sh new file mode 100755 index 00000000000..42ba4da026d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_482.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=482 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_482.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_483.sh b/test/ntuple_qcd_700_1000/batch/sge_483.sh new file mode 100755 index 00000000000..866c24a6d16 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_483.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=483 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_483.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_484.sh b/test/ntuple_qcd_700_1000/batch/sge_484.sh new file mode 100755 index 00000000000..04a25cf059e --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_484.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=484 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_484.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_485.sh b/test/ntuple_qcd_700_1000/batch/sge_485.sh new file mode 100755 index 00000000000..df138c971fc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_485.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=485 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_485.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_486.sh b/test/ntuple_qcd_700_1000/batch/sge_486.sh new file mode 100755 index 00000000000..c484dca3eae --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_486.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=486 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_486.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_487.sh b/test/ntuple_qcd_700_1000/batch/sge_487.sh new file mode 100755 index 00000000000..4fbceb31535 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_487.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=487 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_487.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_488.sh b/test/ntuple_qcd_700_1000/batch/sge_488.sh new file mode 100755 index 00000000000..6f077f57708 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_488.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=488 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_488.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_489.sh b/test/ntuple_qcd_700_1000/batch/sge_489.sh new file mode 100755 index 00000000000..8f91d361c3a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_489.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=489 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_489.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_49.sh b/test/ntuple_qcd_700_1000/batch/sge_49.sh new file mode 100755 index 00000000000..320b200636c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_49.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=49 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_49.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_490.sh b/test/ntuple_qcd_700_1000/batch/sge_490.sh new file mode 100755 index 00000000000..a8409989f3c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_490.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=490 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_490.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_491.sh b/test/ntuple_qcd_700_1000/batch/sge_491.sh new file mode 100755 index 00000000000..a1693e7013c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_491.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=491 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_491.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_492.sh b/test/ntuple_qcd_700_1000/batch/sge_492.sh new file mode 100755 index 00000000000..78872f32990 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_492.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=492 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_492.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_493.sh b/test/ntuple_qcd_700_1000/batch/sge_493.sh new file mode 100755 index 00000000000..5e3c0aa9344 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_493.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=493 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_493.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_494.sh b/test/ntuple_qcd_700_1000/batch/sge_494.sh new file mode 100755 index 00000000000..79dbb728e42 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_494.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=494 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_494.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_495.sh b/test/ntuple_qcd_700_1000/batch/sge_495.sh new file mode 100755 index 00000000000..6306fcf91df --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_495.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=495 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_495.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_496.sh b/test/ntuple_qcd_700_1000/batch/sge_496.sh new file mode 100755 index 00000000000..4e4bb71f709 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_496.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=496 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_496.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_497.sh b/test/ntuple_qcd_700_1000/batch/sge_497.sh new file mode 100755 index 00000000000..a85592ed9b4 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_497.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=497 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_497.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_498.sh b/test/ntuple_qcd_700_1000/batch/sge_498.sh new file mode 100755 index 00000000000..9e35d3a1ce2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_498.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=498 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_498.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_499.sh b/test/ntuple_qcd_700_1000/batch/sge_499.sh new file mode 100755 index 00000000000..3f5bd565ca3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_499.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=499 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_499.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_5.sh b/test/ntuple_qcd_700_1000/batch/sge_5.sh new file mode 100755 index 00000000000..898226167d0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_5.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_50.sh b/test/ntuple_qcd_700_1000/batch/sge_50.sh new file mode 100755 index 00000000000..ac0fe3815f2 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_50.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=50 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_50.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_51.sh b/test/ntuple_qcd_700_1000/batch/sge_51.sh new file mode 100755 index 00000000000..ea5c7af2289 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_51.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=51 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_51.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_52.sh b/test/ntuple_qcd_700_1000/batch/sge_52.sh new file mode 100755 index 00000000000..9ba0804fadb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_52.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=52 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_52.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_53.sh b/test/ntuple_qcd_700_1000/batch/sge_53.sh new file mode 100755 index 00000000000..228a65d9471 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_53.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=53 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_53.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_54.sh b/test/ntuple_qcd_700_1000/batch/sge_54.sh new file mode 100755 index 00000000000..a97ad4f139a --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_54.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=54 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_54.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_55.sh b/test/ntuple_qcd_700_1000/batch/sge_55.sh new file mode 100755 index 00000000000..49730e9fc3c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_55.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=55 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_55.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_56.sh b/test/ntuple_qcd_700_1000/batch/sge_56.sh new file mode 100755 index 00000000000..86853ef2f24 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_56.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=56 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_56.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_57.sh b/test/ntuple_qcd_700_1000/batch/sge_57.sh new file mode 100755 index 00000000000..817d7cbd2e8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_57.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=57 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_57.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_58.sh b/test/ntuple_qcd_700_1000/batch/sge_58.sh new file mode 100755 index 00000000000..0b8bc2c95b1 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_58.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=58 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_58.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_59.sh b/test/ntuple_qcd_700_1000/batch/sge_59.sh new file mode 100755 index 00000000000..b064db770d7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_59.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=59 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_59.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_6.sh b/test/ntuple_qcd_700_1000/batch/sge_6.sh new file mode 100755 index 00000000000..4b93d3cb283 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_6.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_60.sh b/test/ntuple_qcd_700_1000/batch/sge_60.sh new file mode 100755 index 00000000000..b4732215023 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_60.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=60 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_60.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_61.sh b/test/ntuple_qcd_700_1000/batch/sge_61.sh new file mode 100755 index 00000000000..e4d01f1d901 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_61.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=61 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_61.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_62.sh b/test/ntuple_qcd_700_1000/batch/sge_62.sh new file mode 100755 index 00000000000..fc35656ccfc --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_62.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=62 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_62.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_63.sh b/test/ntuple_qcd_700_1000/batch/sge_63.sh new file mode 100755 index 00000000000..54256bf7d7f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_63.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=63 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_63.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_64.sh b/test/ntuple_qcd_700_1000/batch/sge_64.sh new file mode 100755 index 00000000000..b98b9fd5de7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_64.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=64 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_64.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_65.sh b/test/ntuple_qcd_700_1000/batch/sge_65.sh new file mode 100755 index 00000000000..e71b2874eaa --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_65.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=65 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_65.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_66.sh b/test/ntuple_qcd_700_1000/batch/sge_66.sh new file mode 100755 index 00000000000..2f3ed40720c --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_66.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=66 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_66.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_67.sh b/test/ntuple_qcd_700_1000/batch/sge_67.sh new file mode 100755 index 00000000000..f11fa87d07b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_67.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=67 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_67.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_68.sh b/test/ntuple_qcd_700_1000/batch/sge_68.sh new file mode 100755 index 00000000000..85debceb38f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_68.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=68 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_68.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_69.sh b/test/ntuple_qcd_700_1000/batch/sge_69.sh new file mode 100755 index 00000000000..756da96e072 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_69.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=69 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_69.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_7.sh b/test/ntuple_qcd_700_1000/batch/sge_7.sh new file mode 100755 index 00000000000..a973fe6e40f --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_7.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_70.sh b/test/ntuple_qcd_700_1000/batch/sge_70.sh new file mode 100755 index 00000000000..f829a165e37 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_70.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=70 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_70.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_71.sh b/test/ntuple_qcd_700_1000/batch/sge_71.sh new file mode 100755 index 00000000000..db5b35efe83 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_71.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=71 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_71.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_72.sh b/test/ntuple_qcd_700_1000/batch/sge_72.sh new file mode 100755 index 00000000000..fd0cf336681 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_72.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=72 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_72.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_73.sh b/test/ntuple_qcd_700_1000/batch/sge_73.sh new file mode 100755 index 00000000000..696453f9775 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_73.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=73 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_73.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_74.sh b/test/ntuple_qcd_700_1000/batch/sge_74.sh new file mode 100755 index 00000000000..1a7d4dad8a3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_74.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=74 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_74.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_75.sh b/test/ntuple_qcd_700_1000/batch/sge_75.sh new file mode 100755 index 00000000000..98df8f79976 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_75.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=75 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_75.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_76.sh b/test/ntuple_qcd_700_1000/batch/sge_76.sh new file mode 100755 index 00000000000..bd17fb75bc3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_76.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=76 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_76.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_77.sh b/test/ntuple_qcd_700_1000/batch/sge_77.sh new file mode 100755 index 00000000000..16b5d2e49d9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_77.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=77 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_77.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_78.sh b/test/ntuple_qcd_700_1000/batch/sge_78.sh new file mode 100755 index 00000000000..bea83db1594 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_78.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=78 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_78.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_79.sh b/test/ntuple_qcd_700_1000/batch/sge_79.sh new file mode 100755 index 00000000000..7717e7766d9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_79.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=79 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_79.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_8.sh b/test/ntuple_qcd_700_1000/batch/sge_8.sh new file mode 100755 index 00000000000..0b55691a418 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_8.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_80.sh b/test/ntuple_qcd_700_1000/batch/sge_80.sh new file mode 100755 index 00000000000..c3f9064cbbb --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_80.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=80 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_80.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_81.sh b/test/ntuple_qcd_700_1000/batch/sge_81.sh new file mode 100755 index 00000000000..77b59e4d1b0 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_81.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=81 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_81.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_82.sh b/test/ntuple_qcd_700_1000/batch/sge_82.sh new file mode 100755 index 00000000000..954a7ce8bb7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_82.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=82 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_82.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_83.sh b/test/ntuple_qcd_700_1000/batch/sge_83.sh new file mode 100755 index 00000000000..538b46faae7 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_83.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=83 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_83.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_84.sh b/test/ntuple_qcd_700_1000/batch/sge_84.sh new file mode 100755 index 00000000000..a8611fa1382 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_84.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=84 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_84.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_85.sh b/test/ntuple_qcd_700_1000/batch/sge_85.sh new file mode 100755 index 00000000000..f3c8b0a6a06 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_85.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=85 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_85.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_86.sh b/test/ntuple_qcd_700_1000/batch/sge_86.sh new file mode 100755 index 00000000000..0dda1a22f6d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_86.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=86 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_86.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_87.sh b/test/ntuple_qcd_700_1000/batch/sge_87.sh new file mode 100755 index 00000000000..a05f5d9f467 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_87.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=87 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_87.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_88.sh b/test/ntuple_qcd_700_1000/batch/sge_88.sh new file mode 100755 index 00000000000..7471c33bcf5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_88.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=88 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_88.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_89.sh b/test/ntuple_qcd_700_1000/batch/sge_89.sh new file mode 100755 index 00000000000..4017cd560ed --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_89.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=89 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_89.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_9.sh b/test/ntuple_qcd_700_1000/batch/sge_9.sh new file mode 100755 index 00000000000..f45ad256ec5 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_9.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_90.sh b/test/ntuple_qcd_700_1000/batch/sge_90.sh new file mode 100755 index 00000000000..0d6d121e14d --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_90.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=90 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_90.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_91.sh b/test/ntuple_qcd_700_1000/batch/sge_91.sh new file mode 100755 index 00000000000..63ecb0b97f8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_91.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=91 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_91.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_92.sh b/test/ntuple_qcd_700_1000/batch/sge_92.sh new file mode 100755 index 00000000000..8be76dc08ff --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_92.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=92 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_92.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_93.sh b/test/ntuple_qcd_700_1000/batch/sge_93.sh new file mode 100755 index 00000000000..91d970ed526 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_93.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=93 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_93.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_94.sh b/test/ntuple_qcd_700_1000/batch/sge_94.sh new file mode 100755 index 00000000000..042a655bb52 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_94.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=94 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_94.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_95.sh b/test/ntuple_qcd_700_1000/batch/sge_95.sh new file mode 100755 index 00000000000..e7cf48264c9 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_95.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=95 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_95.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_96.sh b/test/ntuple_qcd_700_1000/batch/sge_96.sh new file mode 100755 index 00000000000..933dbda74c8 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_96.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=96 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_96.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_97.sh b/test/ntuple_qcd_700_1000/batch/sge_97.sh new file mode 100755 index 00000000000..ba70ef3e197 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_97.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=97 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_97.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_98.sh b/test/ntuple_qcd_700_1000/batch/sge_98.sh new file mode 100755 index 00000000000..5a1b06a356b --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_98.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=98 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_98.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_99.sh b/test/ntuple_qcd_700_1000/batch/sge_99.sh new file mode 100755 index 00000000000..9dd93418c69 --- /dev/null +++ b/test/ntuple_qcd_700_1000/batch/sge_99.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ +export JOB=99 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_99.root + +/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batchscript.sh b/test/ntuple_qcd_700_1000/batchscript.sh new file mode 100755 index 00000000000..b4b87a814fe --- /dev/null +++ b/test/ntuple_qcd_700_1000/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_qcd_700_1000" +cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/condor.sub b/test/ntuple_qcd_700_1000/condor.sub new file mode 100644 index 00000000000..b835bc11105 --- /dev/null +++ b/test/ntuple_qcd_700_1000/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 2000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 500 + \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/helper b/test/ntuple_qcd_700_1000/helper new file mode 120000 index 00000000000..c98ed23cda3 --- /dev/null +++ b/test/ntuple_qcd_700_1000/helper @@ -0,0 +1 @@ +/tmp/ademoor/5944/ntuple_qcd_700_1000/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/output b/test/ntuple_qcd_700_1000/output new file mode 120000 index 00000000000..fbfe00294e6 --- /dev/null +++ b/test/ntuple_qcd_700_1000/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/sge_sub.sh b/test/ntuple_qcd_700_1000/sge_sub.sh new file mode 100755 index 00000000000..a7ce2426d26 --- /dev/null +++ b/test/ntuple_qcd_700_1000/sge_sub.sh @@ -0,0 +1,500 @@ +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_14.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_15.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_16.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_17.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_18.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_19.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_20.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_21.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_22.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_23.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_24.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_25.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_26.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_27.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_28.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_29.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_30.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_31.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_32.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_33.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_34.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_35.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_36.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_37.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_38.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_39.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_40.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_41.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_42.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_43.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_44.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_45.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_46.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_47.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_48.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_49.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_50.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_51.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_52.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_53.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_54.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_55.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_56.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_57.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_58.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_59.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_60.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_61.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_62.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_63.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_64.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_65.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_66.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_67.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_68.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_69.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_70.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_71.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_72.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_73.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_74.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_75.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_76.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_77.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_78.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_79.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_80.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_81.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_82.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_83.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_84.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_85.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_86.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_87.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_88.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_89.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_90.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_91.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_92.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_93.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_94.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_95.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_96.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_97.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_98.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_99.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_100.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_101.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_102.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_103.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_104.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_105.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_106.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_107.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_108.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_109.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_110.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_111.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_112.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_113.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_114.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_115.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_116.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_117.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_118.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_119.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_120.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_121.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_122.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_123.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_124.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_125.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_126.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_127.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_128.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_129.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_130.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_131.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_132.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_133.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_134.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_135.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_136.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_137.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_138.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_139.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_140.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_141.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_142.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_143.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_144.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_145.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_146.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_147.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_148.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_149.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_150.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_151.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_152.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_153.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_154.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_155.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_156.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_157.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_158.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_159.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_160.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_161.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_162.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_163.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_164.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_165.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_166.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_167.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_168.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_169.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_170.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_171.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_172.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_173.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_174.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_175.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_176.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_177.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_178.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_179.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_180.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_181.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_182.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_183.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_184.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_185.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_186.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_187.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_188.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_189.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_190.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_191.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_192.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_193.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_194.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_195.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_196.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_197.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_198.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_199.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_200.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_201.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_202.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_203.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_204.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_205.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_206.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_207.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_208.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_209.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_210.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_211.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_212.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_213.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_214.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_215.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_216.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_217.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_218.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_219.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_220.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_221.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_222.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_223.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_224.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_225.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_226.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_227.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_228.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_229.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_230.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_231.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_232.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_233.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_234.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_235.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_236.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_237.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_238.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_239.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_240.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_241.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_242.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_243.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_244.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_245.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_246.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_247.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_248.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_249.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_250.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_251.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_252.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_253.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_254.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_255.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_256.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_257.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_258.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_259.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_260.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_261.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_262.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_263.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_264.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_265.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_266.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_267.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_268.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_269.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_270.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_271.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_272.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_273.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_274.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_275.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_276.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_277.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_278.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_279.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_280.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_281.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_282.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_283.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_284.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_285.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_286.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_287.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_288.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_289.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_290.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_291.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_292.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_293.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_294.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_295.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_296.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_297.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_298.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_299.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_300.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_301.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_302.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_303.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_304.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_305.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_306.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_307.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_308.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_309.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_310.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_311.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_312.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_313.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_314.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_315.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_316.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_317.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_318.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_319.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_320.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_321.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_322.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_323.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_324.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_325.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_326.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_327.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_328.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_329.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_330.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_331.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_332.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_333.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_334.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_335.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_336.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_337.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_338.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_339.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_340.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_341.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_342.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_343.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_344.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_345.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_346.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_347.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_348.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_349.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_350.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_351.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_352.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_353.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_354.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_355.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_356.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_357.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_358.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_359.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_360.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_361.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_362.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_363.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_364.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_365.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_366.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_367.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_368.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_369.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_370.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_371.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_372.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_373.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_374.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_375.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_376.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_377.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_378.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_379.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_380.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_381.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_382.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_383.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_384.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_385.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_386.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_387.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_388.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_389.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_390.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_391.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_392.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_393.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_394.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_395.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_396.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_397.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_398.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_399.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_400.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_401.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_402.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_403.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_404.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_405.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_406.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_407.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_408.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_409.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_410.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_411.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_412.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_413.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_414.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_415.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_416.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_417.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_418.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_419.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_420.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_421.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_422.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_423.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_424.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_425.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_426.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_427.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_428.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_429.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_430.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_431.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_432.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_433.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_434.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_435.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_436.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_437.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_438.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_439.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_440.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_441.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_442.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_443.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_444.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_445.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_446.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_447.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_448.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_449.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_450.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_451.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_452.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_453.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_454.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_455.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_456.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_457.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_458.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_459.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_460.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_461.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_462.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_463.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_464.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_465.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_466.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_467.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_468.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_469.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_470.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_471.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_472.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_473.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_474.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_475.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_476.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_477.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_478.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_479.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_480.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_481.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_482.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_483.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_484.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_485.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_486.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_487.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_488.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_489.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_490.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_491.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_492.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_493.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_494.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_495.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_496.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_497.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_498.sh +qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_499.sh From a7e6d7ef8b1e365d4a4b3ed785fa81b60bd4d454 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Thu, 28 Apr 2022 14:28:36 +0200 Subject: [PATCH 07/21] Delete test directory --- test/DeepNtuplizer.py | 313 ----------- test/ntuple_bulk_grav_1/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_bulk_grav_1/batch/condor_0.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_1.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_10.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_100.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_101.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_102.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_103.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_104.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_105.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_106.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_107.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_108.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_109.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_11.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_110.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_111.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_112.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_113.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_114.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_115.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_116.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_117.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_118.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_119.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_12.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_120.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_121.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_122.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_123.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_124.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_125.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_126.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_127.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_128.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_129.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_13.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_130.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_131.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_132.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_133.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_134.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_135.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_136.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_137.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_138.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_139.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_14.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_140.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_141.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_142.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_143.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_144.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_145.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_146.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_147.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_148.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_149.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_15.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_150.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_151.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_152.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_153.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_154.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_155.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_156.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_157.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_158.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_159.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_16.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_160.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_161.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_162.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_163.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_164.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_165.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_166.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_167.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_168.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_169.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_17.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_170.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_171.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_172.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_173.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_174.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_175.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_176.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_177.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_178.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_179.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_18.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_180.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_181.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_182.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_183.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_184.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_185.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_186.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_187.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_188.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_189.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_19.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_190.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_191.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_192.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_193.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_194.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_195.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_196.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_197.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_198.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_199.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_2.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_20.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_200.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_201.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_21.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_22.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_23.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_24.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_25.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_26.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_27.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_28.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_29.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_3.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_30.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_31.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_32.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_33.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_34.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_35.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_36.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_37.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_38.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_39.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_4.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_40.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_41.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_42.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_43.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_44.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_45.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_46.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_47.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_48.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_49.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_5.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_50.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_51.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_52.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_53.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_54.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_55.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_56.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_57.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_58.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_59.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_6.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_60.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_61.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_62.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_63.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_64.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_65.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_66.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_67.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_68.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_69.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_7.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_70.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_71.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_72.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_73.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_74.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_75.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_76.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_77.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_78.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_79.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_8.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_80.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_81.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_82.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_83.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_84.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_85.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_86.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_87.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_88.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_89.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_9.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_90.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_91.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_92.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_93.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_94.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_95.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_96.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_97.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_98.sub | 13 - test/ntuple_bulk_grav_1/batch/condor_99.sub | 13 - test/ntuple_bulk_grav_1/batch/nJobs.202 | 0 test/ntuple_bulk_grav_1/batch/sge_0.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_1.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_10.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_100.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_101.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_102.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_103.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_104.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_105.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_106.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_107.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_108.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_109.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_11.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_110.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_111.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_112.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_113.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_114.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_115.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_116.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_117.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_118.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_119.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_12.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_120.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_121.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_122.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_123.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_124.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_125.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_126.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_127.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_128.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_129.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_13.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_130.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_131.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_132.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_133.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_134.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_135.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_136.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_137.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_138.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_139.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_14.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_140.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_141.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_142.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_143.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_144.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_145.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_146.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_147.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_148.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_149.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_15.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_150.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_151.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_152.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_153.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_154.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_155.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_156.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_157.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_158.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_159.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_16.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_160.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_161.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_162.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_163.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_164.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_165.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_166.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_167.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_168.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_169.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_17.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_170.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_171.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_172.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_173.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_174.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_175.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_176.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_177.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_178.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_179.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_18.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_180.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_181.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_182.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_183.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_184.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_185.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_186.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_187.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_188.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_189.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_19.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_190.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_191.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_192.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_193.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_194.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_195.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_196.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_197.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_198.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_199.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_2.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_20.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_200.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_201.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_21.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_22.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_23.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_24.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_25.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_26.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_27.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_28.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_29.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_3.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_30.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_31.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_32.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_33.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_34.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_35.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_36.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_37.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_38.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_39.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_4.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_40.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_41.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_42.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_43.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_44.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_45.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_46.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_47.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_48.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_49.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_5.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_50.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_51.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_52.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_53.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_54.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_55.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_56.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_57.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_58.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_59.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_6.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_60.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_61.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_62.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_63.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_64.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_65.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_66.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_67.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_68.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_69.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_7.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_70.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_71.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_72.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_73.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_74.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_75.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_76.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_77.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_78.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_79.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_8.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_80.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_81.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_82.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_83.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_84.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_85.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_86.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_87.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_88.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_89.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_9.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_90.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_91.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_92.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_93.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_94.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_95.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_96.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_97.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_98.sh | 28 - test/ntuple_bulk_grav_1/batch/sge_99.sh | 28 - test/ntuple_bulk_grav_1/batchscript.sh | 51 -- test/ntuple_bulk_grav_1/condor.sub | 13 - test/ntuple_bulk_grav_1/helper | 1 - test/ntuple_bulk_grav_1/output | 1 - test/ntuple_bulk_grav_1/sge_sub.sh | 202 ------- test/ntuple_bulk_grav_2/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_bulk_grav_2/batch/condor_0.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_1.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_10.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_100.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_101.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_102.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_103.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_104.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_105.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_106.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_107.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_108.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_109.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_11.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_110.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_111.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_112.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_113.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_114.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_115.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_116.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_117.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_118.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_119.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_12.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_120.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_121.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_122.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_123.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_124.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_125.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_126.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_127.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_128.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_129.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_13.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_130.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_131.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_132.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_133.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_134.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_135.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_136.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_137.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_138.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_139.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_14.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_140.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_141.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_142.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_143.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_144.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_145.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_146.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_147.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_148.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_149.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_15.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_150.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_151.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_152.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_153.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_154.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_155.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_156.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_157.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_158.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_159.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_16.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_160.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_161.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_162.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_163.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_164.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_165.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_166.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_167.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_168.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_169.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_17.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_170.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_171.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_172.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_173.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_174.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_175.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_176.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_177.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_178.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_179.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_18.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_19.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_2.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_20.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_21.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_22.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_23.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_24.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_25.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_26.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_27.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_28.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_29.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_3.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_30.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_31.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_32.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_33.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_34.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_35.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_36.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_37.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_38.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_39.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_4.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_40.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_41.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_42.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_43.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_44.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_45.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_46.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_47.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_48.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_49.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_5.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_50.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_51.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_52.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_53.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_54.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_55.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_56.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_57.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_58.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_59.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_6.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_60.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_61.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_62.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_63.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_64.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_65.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_66.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_67.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_68.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_69.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_7.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_70.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_71.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_72.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_73.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_74.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_75.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_76.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_77.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_78.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_79.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_8.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_80.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_81.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_82.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_83.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_84.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_85.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_86.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_87.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_88.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_89.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_9.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_90.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_91.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_92.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_93.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_94.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_95.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_96.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_97.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_98.sub | 13 - test/ntuple_bulk_grav_2/batch/condor_99.sub | 13 - test/ntuple_bulk_grav_2/batch/nJobs.180 | 0 test/ntuple_bulk_grav_2/batch/sge_0.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_1.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_10.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_100.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_101.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_102.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_103.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_104.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_105.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_106.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_107.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_108.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_109.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_11.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_110.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_111.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_112.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_113.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_114.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_115.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_116.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_117.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_118.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_119.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_12.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_120.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_121.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_122.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_123.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_124.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_125.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_126.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_127.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_128.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_129.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_13.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_130.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_131.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_132.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_133.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_134.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_135.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_136.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_137.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_138.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_139.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_14.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_140.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_141.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_142.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_143.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_144.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_145.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_146.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_147.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_148.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_149.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_15.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_150.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_151.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_152.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_153.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_154.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_155.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_156.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_157.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_158.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_159.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_16.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_160.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_161.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_162.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_163.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_164.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_165.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_166.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_167.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_168.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_169.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_17.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_170.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_171.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_172.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_173.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_174.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_175.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_176.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_177.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_178.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_179.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_18.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_19.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_2.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_20.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_21.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_22.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_23.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_24.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_25.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_26.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_27.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_28.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_29.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_3.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_30.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_31.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_32.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_33.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_34.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_35.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_36.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_37.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_38.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_39.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_4.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_40.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_41.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_42.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_43.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_44.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_45.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_46.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_47.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_48.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_49.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_5.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_50.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_51.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_52.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_53.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_54.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_55.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_56.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_57.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_58.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_59.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_6.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_60.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_61.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_62.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_63.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_64.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_65.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_66.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_67.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_68.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_69.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_7.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_70.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_71.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_72.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_73.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_74.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_75.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_76.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_77.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_78.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_79.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_8.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_80.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_81.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_82.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_83.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_84.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_85.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_86.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_87.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_88.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_89.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_9.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_90.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_91.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_92.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_93.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_94.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_95.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_96.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_97.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_98.sh | 28 - test/ntuple_bulk_grav_2/batch/sge_99.sh | 28 - test/ntuple_bulk_grav_2/batchscript.sh | 51 -- test/ntuple_bulk_grav_2/condor.sub | 13 - test/ntuple_bulk_grav_2/helper | 1 - test/ntuple_bulk_grav_2/output | 1 - test/ntuple_bulk_grav_2/sge_sub.sh | 180 ------- test/ntuple_bulk_grav_3/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_bulk_grav_3/batch/condor_0.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_1.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_10.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_100.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_101.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_102.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_103.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_104.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_105.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_106.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_107.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_108.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_109.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_11.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_110.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_111.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_112.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_113.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_114.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_115.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_116.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_117.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_118.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_119.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_12.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_120.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_121.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_122.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_123.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_124.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_125.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_126.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_127.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_128.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_129.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_13.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_130.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_131.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_132.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_133.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_134.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_135.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_136.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_137.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_138.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_139.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_14.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_140.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_141.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_142.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_143.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_144.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_145.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_146.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_147.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_148.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_149.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_15.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_150.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_151.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_152.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_153.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_154.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_155.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_156.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_157.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_158.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_159.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_16.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_160.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_161.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_162.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_163.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_164.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_165.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_166.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_167.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_168.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_169.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_17.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_170.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_171.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_172.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_173.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_174.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_175.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_176.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_177.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_178.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_179.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_18.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_180.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_181.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_182.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_19.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_2.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_20.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_21.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_22.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_23.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_24.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_25.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_26.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_27.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_28.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_29.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_3.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_30.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_31.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_32.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_33.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_34.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_35.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_36.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_37.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_38.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_39.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_4.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_40.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_41.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_42.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_43.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_44.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_45.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_46.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_47.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_48.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_49.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_5.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_50.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_51.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_52.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_53.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_54.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_55.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_56.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_57.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_58.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_59.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_6.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_60.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_61.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_62.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_63.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_64.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_65.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_66.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_67.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_68.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_69.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_7.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_70.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_71.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_72.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_73.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_74.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_75.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_76.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_77.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_78.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_79.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_8.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_80.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_81.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_82.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_83.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_84.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_85.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_86.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_87.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_88.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_89.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_9.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_90.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_91.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_92.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_93.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_94.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_95.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_96.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_97.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_98.sub | 13 - test/ntuple_bulk_grav_3/batch/condor_99.sub | 13 - test/ntuple_bulk_grav_3/batch/nJobs.183 | 0 test/ntuple_bulk_grav_3/batch/sge_0.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_1.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_10.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_100.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_101.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_102.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_103.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_104.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_105.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_106.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_107.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_108.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_109.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_11.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_110.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_111.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_112.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_113.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_114.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_115.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_116.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_117.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_118.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_119.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_12.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_120.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_121.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_122.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_123.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_124.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_125.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_126.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_127.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_128.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_129.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_13.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_130.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_131.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_132.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_133.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_134.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_135.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_136.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_137.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_138.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_139.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_14.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_140.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_141.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_142.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_143.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_144.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_145.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_146.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_147.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_148.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_149.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_15.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_150.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_151.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_152.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_153.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_154.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_155.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_156.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_157.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_158.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_159.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_16.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_160.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_161.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_162.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_163.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_164.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_165.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_166.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_167.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_168.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_169.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_17.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_170.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_171.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_172.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_173.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_174.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_175.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_176.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_177.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_178.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_179.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_18.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_180.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_181.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_182.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_19.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_2.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_20.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_21.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_22.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_23.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_24.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_25.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_26.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_27.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_28.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_29.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_3.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_30.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_31.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_32.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_33.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_34.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_35.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_36.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_37.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_38.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_39.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_4.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_40.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_41.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_42.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_43.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_44.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_45.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_46.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_47.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_48.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_49.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_5.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_50.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_51.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_52.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_53.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_54.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_55.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_56.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_57.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_58.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_59.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_6.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_60.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_61.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_62.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_63.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_64.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_65.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_66.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_67.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_68.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_69.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_7.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_70.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_71.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_72.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_73.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_74.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_75.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_76.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_77.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_78.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_79.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_8.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_80.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_81.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_82.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_83.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_84.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_85.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_86.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_87.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_88.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_89.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_9.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_90.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_91.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_92.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_93.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_94.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_95.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_96.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_97.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_98.sh | 28 - test/ntuple_bulk_grav_3/batch/sge_99.sh | 28 - test/ntuple_bulk_grav_3/batchscript.sh | 51 -- test/ntuple_bulk_grav_3/condor.sub | 13 - test/ntuple_bulk_grav_3/helper | 1 - test/ntuple_bulk_grav_3/output | 1 - test/ntuple_bulk_grav_3/sge_sub.sh | 183 ------- test/ntuple_qcd_1000_1500/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_1000_1500/batch/condor_0.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_1.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_10.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_100.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_101.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_102.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_103.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_104.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_105.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_106.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_107.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_108.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_109.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_11.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_110.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_111.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_112.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_113.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_114.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_115.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_116.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_117.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_118.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_119.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_12.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_120.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_121.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_122.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_123.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_124.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_125.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_126.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_127.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_128.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_129.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_13.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_130.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_131.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_132.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_133.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_134.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_135.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_136.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_137.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_138.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_139.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_14.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_140.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_141.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_142.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_143.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_144.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_145.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_146.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_147.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_148.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_149.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_15.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_150.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_151.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_152.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_153.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_154.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_155.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_156.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_157.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_158.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_159.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_16.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_160.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_161.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_162.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_163.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_164.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_165.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_166.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_167.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_168.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_169.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_17.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_170.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_171.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_172.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_173.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_174.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_175.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_176.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_177.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_178.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_179.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_18.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_180.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_181.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_182.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_183.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_184.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_185.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_186.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_187.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_188.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_189.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_19.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_190.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_191.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_192.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_193.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_194.sub | 13 - .../ntuple_qcd_1000_1500/batch/condor_195.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_2.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_20.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_21.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_22.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_23.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_24.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_25.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_26.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_27.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_28.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_29.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_3.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_30.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_31.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_32.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_33.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_34.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_35.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_36.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_37.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_38.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_39.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_4.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_40.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_41.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_42.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_43.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_44.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_45.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_46.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_47.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_48.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_49.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_5.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_50.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_51.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_52.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_53.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_54.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_55.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_56.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_57.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_58.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_59.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_6.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_60.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_61.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_62.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_63.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_64.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_65.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_66.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_67.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_68.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_69.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_7.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_70.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_71.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_72.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_73.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_74.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_75.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_76.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_77.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_78.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_79.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_8.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_80.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_81.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_82.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_83.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_84.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_85.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_86.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_87.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_88.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_89.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_9.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_90.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_91.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_92.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_93.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_94.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_95.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_96.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_97.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_98.sub | 13 - test/ntuple_qcd_1000_1500/batch/condor_99.sub | 13 - test/ntuple_qcd_1000_1500/batch/nJobs.196 | 0 test/ntuple_qcd_1000_1500/batch/sge_0.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_1.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_10.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_100.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_101.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_102.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_103.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_104.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_105.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_106.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_107.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_108.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_109.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_11.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_110.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_111.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_112.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_113.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_114.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_115.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_116.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_117.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_118.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_119.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_12.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_120.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_121.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_122.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_123.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_124.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_125.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_126.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_127.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_128.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_129.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_13.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_130.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_131.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_132.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_133.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_134.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_135.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_136.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_137.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_138.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_139.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_14.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_140.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_141.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_142.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_143.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_144.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_145.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_146.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_147.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_148.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_149.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_15.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_150.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_151.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_152.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_153.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_154.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_155.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_156.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_157.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_158.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_159.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_16.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_160.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_161.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_162.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_163.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_164.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_165.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_166.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_167.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_168.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_169.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_17.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_170.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_171.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_172.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_173.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_174.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_175.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_176.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_177.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_178.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_179.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_18.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_180.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_181.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_182.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_183.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_184.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_185.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_186.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_187.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_188.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_189.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_19.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_190.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_191.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_192.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_193.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_194.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_195.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_2.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_20.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_21.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_22.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_23.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_24.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_25.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_26.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_27.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_28.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_29.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_3.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_30.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_31.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_32.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_33.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_34.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_35.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_36.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_37.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_38.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_39.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_4.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_40.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_41.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_42.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_43.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_44.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_45.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_46.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_47.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_48.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_49.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_5.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_50.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_51.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_52.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_53.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_54.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_55.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_56.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_57.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_58.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_59.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_6.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_60.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_61.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_62.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_63.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_64.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_65.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_66.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_67.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_68.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_69.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_7.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_70.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_71.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_72.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_73.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_74.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_75.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_76.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_77.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_78.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_79.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_8.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_80.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_81.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_82.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_83.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_84.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_85.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_86.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_87.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_88.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_89.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_9.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_90.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_91.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_92.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_93.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_94.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_95.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_96.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_97.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_98.sh | 28 - test/ntuple_qcd_1000_1500/batch/sge_99.sh | 28 - test/ntuple_qcd_1000_1500/batchscript.sh | 51 -- test/ntuple_qcd_1000_1500/condor.sub | 13 - test/ntuple_qcd_1000_1500/helper | 1 - test/ntuple_qcd_1000_1500/output | 1 - test/ntuple_qcd_1000_1500/sge_sub.sh | 196 ------- test/ntuple_qcd_100_200/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_100_200/batch/condor_0.sub | 13 - test/ntuple_qcd_100_200/batch/condor_1.sub | 13 - test/ntuple_qcd_100_200/batch/condor_10.sub | 13 - test/ntuple_qcd_100_200/batch/condor_100.sub | 13 - test/ntuple_qcd_100_200/batch/condor_101.sub | 13 - test/ntuple_qcd_100_200/batch/condor_102.sub | 13 - test/ntuple_qcd_100_200/batch/condor_103.sub | 13 - test/ntuple_qcd_100_200/batch/condor_104.sub | 13 - test/ntuple_qcd_100_200/batch/condor_105.sub | 13 - test/ntuple_qcd_100_200/batch/condor_106.sub | 13 - test/ntuple_qcd_100_200/batch/condor_107.sub | 13 - test/ntuple_qcd_100_200/batch/condor_108.sub | 13 - test/ntuple_qcd_100_200/batch/condor_109.sub | 13 - test/ntuple_qcd_100_200/batch/condor_11.sub | 13 - test/ntuple_qcd_100_200/batch/condor_110.sub | 13 - test/ntuple_qcd_100_200/batch/condor_111.sub | 13 - test/ntuple_qcd_100_200/batch/condor_112.sub | 13 - test/ntuple_qcd_100_200/batch/condor_113.sub | 13 - test/ntuple_qcd_100_200/batch/condor_114.sub | 13 - test/ntuple_qcd_100_200/batch/condor_115.sub | 13 - test/ntuple_qcd_100_200/batch/condor_116.sub | 13 - test/ntuple_qcd_100_200/batch/condor_117.sub | 13 - test/ntuple_qcd_100_200/batch/condor_118.sub | 13 - test/ntuple_qcd_100_200/batch/condor_119.sub | 13 - test/ntuple_qcd_100_200/batch/condor_12.sub | 13 - test/ntuple_qcd_100_200/batch/condor_120.sub | 13 - test/ntuple_qcd_100_200/batch/condor_121.sub | 13 - test/ntuple_qcd_100_200/batch/condor_122.sub | 13 - test/ntuple_qcd_100_200/batch/condor_123.sub | 13 - test/ntuple_qcd_100_200/batch/condor_124.sub | 13 - test/ntuple_qcd_100_200/batch/condor_125.sub | 13 - test/ntuple_qcd_100_200/batch/condor_126.sub | 13 - test/ntuple_qcd_100_200/batch/condor_127.sub | 13 - test/ntuple_qcd_100_200/batch/condor_128.sub | 13 - test/ntuple_qcd_100_200/batch/condor_129.sub | 13 - test/ntuple_qcd_100_200/batch/condor_13.sub | 13 - test/ntuple_qcd_100_200/batch/condor_130.sub | 13 - test/ntuple_qcd_100_200/batch/condor_131.sub | 13 - test/ntuple_qcd_100_200/batch/condor_132.sub | 13 - test/ntuple_qcd_100_200/batch/condor_133.sub | 13 - test/ntuple_qcd_100_200/batch/condor_134.sub | 13 - test/ntuple_qcd_100_200/batch/condor_135.sub | 13 - test/ntuple_qcd_100_200/batch/condor_136.sub | 13 - test/ntuple_qcd_100_200/batch/condor_137.sub | 13 - test/ntuple_qcd_100_200/batch/condor_138.sub | 13 - test/ntuple_qcd_100_200/batch/condor_139.sub | 13 - test/ntuple_qcd_100_200/batch/condor_14.sub | 13 - test/ntuple_qcd_100_200/batch/condor_140.sub | 13 - test/ntuple_qcd_100_200/batch/condor_141.sub | 13 - test/ntuple_qcd_100_200/batch/condor_142.sub | 13 - test/ntuple_qcd_100_200/batch/condor_143.sub | 13 - test/ntuple_qcd_100_200/batch/condor_144.sub | 13 - test/ntuple_qcd_100_200/batch/condor_145.sub | 13 - test/ntuple_qcd_100_200/batch/condor_146.sub | 13 - test/ntuple_qcd_100_200/batch/condor_147.sub | 13 - test/ntuple_qcd_100_200/batch/condor_148.sub | 13 - test/ntuple_qcd_100_200/batch/condor_149.sub | 13 - test/ntuple_qcd_100_200/batch/condor_15.sub | 13 - test/ntuple_qcd_100_200/batch/condor_150.sub | 13 - test/ntuple_qcd_100_200/batch/condor_151.sub | 13 - test/ntuple_qcd_100_200/batch/condor_152.sub | 13 - test/ntuple_qcd_100_200/batch/condor_153.sub | 13 - test/ntuple_qcd_100_200/batch/condor_154.sub | 13 - test/ntuple_qcd_100_200/batch/condor_155.sub | 13 - test/ntuple_qcd_100_200/batch/condor_156.sub | 13 - test/ntuple_qcd_100_200/batch/condor_157.sub | 13 - test/ntuple_qcd_100_200/batch/condor_158.sub | 13 - test/ntuple_qcd_100_200/batch/condor_159.sub | 13 - test/ntuple_qcd_100_200/batch/condor_16.sub | 13 - test/ntuple_qcd_100_200/batch/condor_160.sub | 13 - test/ntuple_qcd_100_200/batch/condor_161.sub | 13 - test/ntuple_qcd_100_200/batch/condor_162.sub | 13 - test/ntuple_qcd_100_200/batch/condor_163.sub | 13 - test/ntuple_qcd_100_200/batch/condor_164.sub | 13 - test/ntuple_qcd_100_200/batch/condor_165.sub | 13 - test/ntuple_qcd_100_200/batch/condor_166.sub | 13 - test/ntuple_qcd_100_200/batch/condor_167.sub | 13 - test/ntuple_qcd_100_200/batch/condor_168.sub | 13 - test/ntuple_qcd_100_200/batch/condor_169.sub | 13 - test/ntuple_qcd_100_200/batch/condor_17.sub | 13 - test/ntuple_qcd_100_200/batch/condor_170.sub | 13 - test/ntuple_qcd_100_200/batch/condor_171.sub | 13 - test/ntuple_qcd_100_200/batch/condor_172.sub | 13 - test/ntuple_qcd_100_200/batch/condor_173.sub | 13 - test/ntuple_qcd_100_200/batch/condor_174.sub | 13 - test/ntuple_qcd_100_200/batch/condor_175.sub | 13 - test/ntuple_qcd_100_200/batch/condor_176.sub | 13 - test/ntuple_qcd_100_200/batch/condor_177.sub | 13 - test/ntuple_qcd_100_200/batch/condor_178.sub | 13 - test/ntuple_qcd_100_200/batch/condor_179.sub | 13 - test/ntuple_qcd_100_200/batch/condor_18.sub | 13 - test/ntuple_qcd_100_200/batch/condor_180.sub | 13 - test/ntuple_qcd_100_200/batch/condor_181.sub | 13 - test/ntuple_qcd_100_200/batch/condor_182.sub | 13 - test/ntuple_qcd_100_200/batch/condor_183.sub | 13 - test/ntuple_qcd_100_200/batch/condor_184.sub | 13 - test/ntuple_qcd_100_200/batch/condor_185.sub | 13 - test/ntuple_qcd_100_200/batch/condor_186.sub | 13 - test/ntuple_qcd_100_200/batch/condor_187.sub | 13 - test/ntuple_qcd_100_200/batch/condor_188.sub | 13 - test/ntuple_qcd_100_200/batch/condor_189.sub | 13 - test/ntuple_qcd_100_200/batch/condor_19.sub | 13 - test/ntuple_qcd_100_200/batch/condor_190.sub | 13 - test/ntuple_qcd_100_200/batch/condor_191.sub | 13 - test/ntuple_qcd_100_200/batch/condor_192.sub | 13 - test/ntuple_qcd_100_200/batch/condor_193.sub | 13 - test/ntuple_qcd_100_200/batch/condor_194.sub | 13 - test/ntuple_qcd_100_200/batch/condor_195.sub | 13 - test/ntuple_qcd_100_200/batch/condor_196.sub | 13 - test/ntuple_qcd_100_200/batch/condor_197.sub | 13 - test/ntuple_qcd_100_200/batch/condor_198.sub | 13 - test/ntuple_qcd_100_200/batch/condor_199.sub | 13 - test/ntuple_qcd_100_200/batch/condor_2.sub | 13 - test/ntuple_qcd_100_200/batch/condor_20.sub | 13 - test/ntuple_qcd_100_200/batch/condor_200.sub | 13 - test/ntuple_qcd_100_200/batch/condor_201.sub | 13 - test/ntuple_qcd_100_200/batch/condor_202.sub | 13 - test/ntuple_qcd_100_200/batch/condor_203.sub | 13 - test/ntuple_qcd_100_200/batch/condor_204.sub | 13 - test/ntuple_qcd_100_200/batch/condor_205.sub | 13 - test/ntuple_qcd_100_200/batch/condor_206.sub | 13 - test/ntuple_qcd_100_200/batch/condor_207.sub | 13 - test/ntuple_qcd_100_200/batch/condor_208.sub | 13 - test/ntuple_qcd_100_200/batch/condor_209.sub | 13 - test/ntuple_qcd_100_200/batch/condor_21.sub | 13 - test/ntuple_qcd_100_200/batch/condor_210.sub | 13 - test/ntuple_qcd_100_200/batch/condor_211.sub | 13 - test/ntuple_qcd_100_200/batch/condor_212.sub | 13 - test/ntuple_qcd_100_200/batch/condor_213.sub | 13 - test/ntuple_qcd_100_200/batch/condor_214.sub | 13 - test/ntuple_qcd_100_200/batch/condor_215.sub | 13 - test/ntuple_qcd_100_200/batch/condor_216.sub | 13 - test/ntuple_qcd_100_200/batch/condor_217.sub | 13 - test/ntuple_qcd_100_200/batch/condor_218.sub | 13 - test/ntuple_qcd_100_200/batch/condor_219.sub | 13 - test/ntuple_qcd_100_200/batch/condor_22.sub | 13 - test/ntuple_qcd_100_200/batch/condor_220.sub | 13 - test/ntuple_qcd_100_200/batch/condor_221.sub | 13 - test/ntuple_qcd_100_200/batch/condor_222.sub | 13 - test/ntuple_qcd_100_200/batch/condor_223.sub | 13 - test/ntuple_qcd_100_200/batch/condor_224.sub | 13 - test/ntuple_qcd_100_200/batch/condor_225.sub | 13 - test/ntuple_qcd_100_200/batch/condor_226.sub | 13 - test/ntuple_qcd_100_200/batch/condor_227.sub | 13 - test/ntuple_qcd_100_200/batch/condor_228.sub | 13 - test/ntuple_qcd_100_200/batch/condor_229.sub | 13 - test/ntuple_qcd_100_200/batch/condor_23.sub | 13 - test/ntuple_qcd_100_200/batch/condor_230.sub | 13 - test/ntuple_qcd_100_200/batch/condor_231.sub | 13 - test/ntuple_qcd_100_200/batch/condor_232.sub | 13 - test/ntuple_qcd_100_200/batch/condor_233.sub | 13 - test/ntuple_qcd_100_200/batch/condor_234.sub | 13 - test/ntuple_qcd_100_200/batch/condor_235.sub | 13 - test/ntuple_qcd_100_200/batch/condor_236.sub | 13 - test/ntuple_qcd_100_200/batch/condor_237.sub | 13 - test/ntuple_qcd_100_200/batch/condor_238.sub | 13 - test/ntuple_qcd_100_200/batch/condor_239.sub | 13 - test/ntuple_qcd_100_200/batch/condor_24.sub | 13 - test/ntuple_qcd_100_200/batch/condor_240.sub | 13 - test/ntuple_qcd_100_200/batch/condor_241.sub | 13 - test/ntuple_qcd_100_200/batch/condor_242.sub | 13 - test/ntuple_qcd_100_200/batch/condor_243.sub | 13 - test/ntuple_qcd_100_200/batch/condor_244.sub | 13 - test/ntuple_qcd_100_200/batch/condor_245.sub | 13 - test/ntuple_qcd_100_200/batch/condor_246.sub | 13 - test/ntuple_qcd_100_200/batch/condor_247.sub | 13 - test/ntuple_qcd_100_200/batch/condor_248.sub | 13 - test/ntuple_qcd_100_200/batch/condor_249.sub | 13 - test/ntuple_qcd_100_200/batch/condor_25.sub | 13 - test/ntuple_qcd_100_200/batch/condor_250.sub | 13 - test/ntuple_qcd_100_200/batch/condor_251.sub | 13 - test/ntuple_qcd_100_200/batch/condor_252.sub | 13 - test/ntuple_qcd_100_200/batch/condor_253.sub | 13 - test/ntuple_qcd_100_200/batch/condor_254.sub | 13 - test/ntuple_qcd_100_200/batch/condor_255.sub | 13 - test/ntuple_qcd_100_200/batch/condor_256.sub | 13 - test/ntuple_qcd_100_200/batch/condor_257.sub | 13 - test/ntuple_qcd_100_200/batch/condor_258.sub | 13 - test/ntuple_qcd_100_200/batch/condor_259.sub | 13 - test/ntuple_qcd_100_200/batch/condor_26.sub | 13 - test/ntuple_qcd_100_200/batch/condor_260.sub | 13 - test/ntuple_qcd_100_200/batch/condor_261.sub | 13 - test/ntuple_qcd_100_200/batch/condor_262.sub | 13 - test/ntuple_qcd_100_200/batch/condor_263.sub | 13 - test/ntuple_qcd_100_200/batch/condor_264.sub | 13 - test/ntuple_qcd_100_200/batch/condor_265.sub | 13 - test/ntuple_qcd_100_200/batch/condor_266.sub | 13 - test/ntuple_qcd_100_200/batch/condor_267.sub | 13 - test/ntuple_qcd_100_200/batch/condor_268.sub | 13 - test/ntuple_qcd_100_200/batch/condor_269.sub | 13 - test/ntuple_qcd_100_200/batch/condor_27.sub | 13 - test/ntuple_qcd_100_200/batch/condor_270.sub | 13 - test/ntuple_qcd_100_200/batch/condor_271.sub | 13 - test/ntuple_qcd_100_200/batch/condor_272.sub | 13 - test/ntuple_qcd_100_200/batch/condor_273.sub | 13 - test/ntuple_qcd_100_200/batch/condor_274.sub | 13 - test/ntuple_qcd_100_200/batch/condor_275.sub | 13 - test/ntuple_qcd_100_200/batch/condor_276.sub | 13 - test/ntuple_qcd_100_200/batch/condor_277.sub | 13 - test/ntuple_qcd_100_200/batch/condor_278.sub | 13 - test/ntuple_qcd_100_200/batch/condor_279.sub | 13 - test/ntuple_qcd_100_200/batch/condor_28.sub | 13 - test/ntuple_qcd_100_200/batch/condor_280.sub | 13 - test/ntuple_qcd_100_200/batch/condor_281.sub | 13 - test/ntuple_qcd_100_200/batch/condor_282.sub | 13 - test/ntuple_qcd_100_200/batch/condor_283.sub | 13 - test/ntuple_qcd_100_200/batch/condor_284.sub | 13 - test/ntuple_qcd_100_200/batch/condor_285.sub | 13 - test/ntuple_qcd_100_200/batch/condor_286.sub | 13 - test/ntuple_qcd_100_200/batch/condor_287.sub | 13 - test/ntuple_qcd_100_200/batch/condor_288.sub | 13 - test/ntuple_qcd_100_200/batch/condor_289.sub | 13 - test/ntuple_qcd_100_200/batch/condor_29.sub | 13 - test/ntuple_qcd_100_200/batch/condor_290.sub | 13 - test/ntuple_qcd_100_200/batch/condor_291.sub | 13 - test/ntuple_qcd_100_200/batch/condor_292.sub | 13 - test/ntuple_qcd_100_200/batch/condor_293.sub | 13 - test/ntuple_qcd_100_200/batch/condor_294.sub | 13 - test/ntuple_qcd_100_200/batch/condor_295.sub | 13 - test/ntuple_qcd_100_200/batch/condor_296.sub | 13 - test/ntuple_qcd_100_200/batch/condor_297.sub | 13 - test/ntuple_qcd_100_200/batch/condor_298.sub | 13 - test/ntuple_qcd_100_200/batch/condor_299.sub | 13 - test/ntuple_qcd_100_200/batch/condor_3.sub | 13 - test/ntuple_qcd_100_200/batch/condor_30.sub | 13 - test/ntuple_qcd_100_200/batch/condor_300.sub | 13 - test/ntuple_qcd_100_200/batch/condor_301.sub | 13 - test/ntuple_qcd_100_200/batch/condor_302.sub | 13 - test/ntuple_qcd_100_200/batch/condor_303.sub | 13 - test/ntuple_qcd_100_200/batch/condor_304.sub | 13 - test/ntuple_qcd_100_200/batch/condor_305.sub | 13 - test/ntuple_qcd_100_200/batch/condor_306.sub | 13 - test/ntuple_qcd_100_200/batch/condor_307.sub | 13 - test/ntuple_qcd_100_200/batch/condor_308.sub | 13 - test/ntuple_qcd_100_200/batch/condor_309.sub | 13 - test/ntuple_qcd_100_200/batch/condor_31.sub | 13 - test/ntuple_qcd_100_200/batch/condor_310.sub | 13 - test/ntuple_qcd_100_200/batch/condor_311.sub | 13 - test/ntuple_qcd_100_200/batch/condor_312.sub | 13 - test/ntuple_qcd_100_200/batch/condor_313.sub | 13 - test/ntuple_qcd_100_200/batch/condor_314.sub | 13 - test/ntuple_qcd_100_200/batch/condor_315.sub | 13 - test/ntuple_qcd_100_200/batch/condor_316.sub | 13 - test/ntuple_qcd_100_200/batch/condor_317.sub | 13 - test/ntuple_qcd_100_200/batch/condor_318.sub | 13 - test/ntuple_qcd_100_200/batch/condor_319.sub | 13 - test/ntuple_qcd_100_200/batch/condor_32.sub | 13 - test/ntuple_qcd_100_200/batch/condor_320.sub | 13 - test/ntuple_qcd_100_200/batch/condor_321.sub | 13 - test/ntuple_qcd_100_200/batch/condor_322.sub | 13 - test/ntuple_qcd_100_200/batch/condor_323.sub | 13 - test/ntuple_qcd_100_200/batch/condor_324.sub | 13 - test/ntuple_qcd_100_200/batch/condor_325.sub | 13 - test/ntuple_qcd_100_200/batch/condor_326.sub | 13 - test/ntuple_qcd_100_200/batch/condor_327.sub | 13 - test/ntuple_qcd_100_200/batch/condor_328.sub | 13 - test/ntuple_qcd_100_200/batch/condor_329.sub | 13 - test/ntuple_qcd_100_200/batch/condor_33.sub | 13 - test/ntuple_qcd_100_200/batch/condor_330.sub | 13 - test/ntuple_qcd_100_200/batch/condor_331.sub | 13 - test/ntuple_qcd_100_200/batch/condor_332.sub | 13 - test/ntuple_qcd_100_200/batch/condor_333.sub | 13 - test/ntuple_qcd_100_200/batch/condor_334.sub | 13 - test/ntuple_qcd_100_200/batch/condor_335.sub | 13 - test/ntuple_qcd_100_200/batch/condor_336.sub | 13 - test/ntuple_qcd_100_200/batch/condor_337.sub | 13 - test/ntuple_qcd_100_200/batch/condor_338.sub | 13 - test/ntuple_qcd_100_200/batch/condor_339.sub | 13 - test/ntuple_qcd_100_200/batch/condor_34.sub | 13 - test/ntuple_qcd_100_200/batch/condor_340.sub | 13 - test/ntuple_qcd_100_200/batch/condor_341.sub | 13 - test/ntuple_qcd_100_200/batch/condor_342.sub | 13 - test/ntuple_qcd_100_200/batch/condor_343.sub | 13 - test/ntuple_qcd_100_200/batch/condor_344.sub | 13 - test/ntuple_qcd_100_200/batch/condor_345.sub | 13 - test/ntuple_qcd_100_200/batch/condor_346.sub | 13 - test/ntuple_qcd_100_200/batch/condor_347.sub | 13 - test/ntuple_qcd_100_200/batch/condor_348.sub | 13 - test/ntuple_qcd_100_200/batch/condor_349.sub | 13 - test/ntuple_qcd_100_200/batch/condor_35.sub | 13 - test/ntuple_qcd_100_200/batch/condor_350.sub | 13 - test/ntuple_qcd_100_200/batch/condor_351.sub | 13 - test/ntuple_qcd_100_200/batch/condor_352.sub | 13 - test/ntuple_qcd_100_200/batch/condor_353.sub | 13 - test/ntuple_qcd_100_200/batch/condor_354.sub | 13 - test/ntuple_qcd_100_200/batch/condor_355.sub | 13 - test/ntuple_qcd_100_200/batch/condor_356.sub | 13 - test/ntuple_qcd_100_200/batch/condor_357.sub | 13 - test/ntuple_qcd_100_200/batch/condor_358.sub | 13 - test/ntuple_qcd_100_200/batch/condor_359.sub | 13 - test/ntuple_qcd_100_200/batch/condor_36.sub | 13 - test/ntuple_qcd_100_200/batch/condor_360.sub | 13 - test/ntuple_qcd_100_200/batch/condor_361.sub | 13 - test/ntuple_qcd_100_200/batch/condor_362.sub | 13 - test/ntuple_qcd_100_200/batch/condor_363.sub | 13 - test/ntuple_qcd_100_200/batch/condor_364.sub | 13 - test/ntuple_qcd_100_200/batch/condor_365.sub | 13 - test/ntuple_qcd_100_200/batch/condor_366.sub | 13 - test/ntuple_qcd_100_200/batch/condor_367.sub | 13 - test/ntuple_qcd_100_200/batch/condor_368.sub | 13 - test/ntuple_qcd_100_200/batch/condor_369.sub | 13 - test/ntuple_qcd_100_200/batch/condor_37.sub | 13 - test/ntuple_qcd_100_200/batch/condor_370.sub | 13 - test/ntuple_qcd_100_200/batch/condor_371.sub | 13 - test/ntuple_qcd_100_200/batch/condor_372.sub | 13 - test/ntuple_qcd_100_200/batch/condor_373.sub | 13 - test/ntuple_qcd_100_200/batch/condor_374.sub | 13 - test/ntuple_qcd_100_200/batch/condor_375.sub | 13 - test/ntuple_qcd_100_200/batch/condor_376.sub | 13 - test/ntuple_qcd_100_200/batch/condor_377.sub | 13 - test/ntuple_qcd_100_200/batch/condor_378.sub | 13 - test/ntuple_qcd_100_200/batch/condor_379.sub | 13 - test/ntuple_qcd_100_200/batch/condor_38.sub | 13 - test/ntuple_qcd_100_200/batch/condor_380.sub | 13 - test/ntuple_qcd_100_200/batch/condor_381.sub | 13 - test/ntuple_qcd_100_200/batch/condor_382.sub | 13 - test/ntuple_qcd_100_200/batch/condor_383.sub | 13 - test/ntuple_qcd_100_200/batch/condor_384.sub | 13 - test/ntuple_qcd_100_200/batch/condor_385.sub | 13 - test/ntuple_qcd_100_200/batch/condor_386.sub | 13 - test/ntuple_qcd_100_200/batch/condor_387.sub | 13 - test/ntuple_qcd_100_200/batch/condor_388.sub | 13 - test/ntuple_qcd_100_200/batch/condor_389.sub | 13 - test/ntuple_qcd_100_200/batch/condor_39.sub | 13 - test/ntuple_qcd_100_200/batch/condor_390.sub | 13 - test/ntuple_qcd_100_200/batch/condor_391.sub | 13 - test/ntuple_qcd_100_200/batch/condor_392.sub | 13 - test/ntuple_qcd_100_200/batch/condor_393.sub | 13 - test/ntuple_qcd_100_200/batch/condor_394.sub | 13 - test/ntuple_qcd_100_200/batch/condor_395.sub | 13 - test/ntuple_qcd_100_200/batch/condor_396.sub | 13 - test/ntuple_qcd_100_200/batch/condor_397.sub | 13 - test/ntuple_qcd_100_200/batch/condor_398.sub | 13 - test/ntuple_qcd_100_200/batch/condor_399.sub | 13 - test/ntuple_qcd_100_200/batch/condor_4.sub | 13 - test/ntuple_qcd_100_200/batch/condor_40.sub | 13 - test/ntuple_qcd_100_200/batch/condor_400.sub | 13 - test/ntuple_qcd_100_200/batch/condor_401.sub | 13 - test/ntuple_qcd_100_200/batch/condor_402.sub | 13 - test/ntuple_qcd_100_200/batch/condor_403.sub | 13 - test/ntuple_qcd_100_200/batch/condor_404.sub | 13 - test/ntuple_qcd_100_200/batch/condor_405.sub | 13 - test/ntuple_qcd_100_200/batch/condor_406.sub | 13 - test/ntuple_qcd_100_200/batch/condor_407.sub | 13 - test/ntuple_qcd_100_200/batch/condor_408.sub | 13 - test/ntuple_qcd_100_200/batch/condor_409.sub | 13 - test/ntuple_qcd_100_200/batch/condor_41.sub | 13 - test/ntuple_qcd_100_200/batch/condor_410.sub | 13 - test/ntuple_qcd_100_200/batch/condor_411.sub | 13 - test/ntuple_qcd_100_200/batch/condor_412.sub | 13 - test/ntuple_qcd_100_200/batch/condor_413.sub | 13 - test/ntuple_qcd_100_200/batch/condor_414.sub | 13 - test/ntuple_qcd_100_200/batch/condor_415.sub | 13 - test/ntuple_qcd_100_200/batch/condor_416.sub | 13 - test/ntuple_qcd_100_200/batch/condor_417.sub | 13 - test/ntuple_qcd_100_200/batch/condor_418.sub | 13 - test/ntuple_qcd_100_200/batch/condor_419.sub | 13 - test/ntuple_qcd_100_200/batch/condor_42.sub | 13 - test/ntuple_qcd_100_200/batch/condor_420.sub | 13 - test/ntuple_qcd_100_200/batch/condor_421.sub | 13 - test/ntuple_qcd_100_200/batch/condor_422.sub | 13 - test/ntuple_qcd_100_200/batch/condor_423.sub | 13 - test/ntuple_qcd_100_200/batch/condor_424.sub | 13 - test/ntuple_qcd_100_200/batch/condor_425.sub | 13 - test/ntuple_qcd_100_200/batch/condor_426.sub | 13 - test/ntuple_qcd_100_200/batch/condor_427.sub | 13 - test/ntuple_qcd_100_200/batch/condor_428.sub | 13 - test/ntuple_qcd_100_200/batch/condor_429.sub | 13 - test/ntuple_qcd_100_200/batch/condor_43.sub | 13 - test/ntuple_qcd_100_200/batch/condor_430.sub | 13 - test/ntuple_qcd_100_200/batch/condor_431.sub | 13 - test/ntuple_qcd_100_200/batch/condor_432.sub | 13 - test/ntuple_qcd_100_200/batch/condor_433.sub | 13 - test/ntuple_qcd_100_200/batch/condor_434.sub | 13 - test/ntuple_qcd_100_200/batch/condor_435.sub | 13 - test/ntuple_qcd_100_200/batch/condor_436.sub | 13 - test/ntuple_qcd_100_200/batch/condor_437.sub | 13 - test/ntuple_qcd_100_200/batch/condor_438.sub | 13 - test/ntuple_qcd_100_200/batch/condor_439.sub | 13 - test/ntuple_qcd_100_200/batch/condor_44.sub | 13 - test/ntuple_qcd_100_200/batch/condor_440.sub | 13 - test/ntuple_qcd_100_200/batch/condor_441.sub | 13 - test/ntuple_qcd_100_200/batch/condor_442.sub | 13 - test/ntuple_qcd_100_200/batch/condor_443.sub | 13 - test/ntuple_qcd_100_200/batch/condor_444.sub | 13 - test/ntuple_qcd_100_200/batch/condor_445.sub | 13 - test/ntuple_qcd_100_200/batch/condor_446.sub | 13 - test/ntuple_qcd_100_200/batch/condor_447.sub | 13 - test/ntuple_qcd_100_200/batch/condor_448.sub | 13 - test/ntuple_qcd_100_200/batch/condor_449.sub | 13 - test/ntuple_qcd_100_200/batch/condor_45.sub | 13 - test/ntuple_qcd_100_200/batch/condor_450.sub | 13 - test/ntuple_qcd_100_200/batch/condor_451.sub | 13 - test/ntuple_qcd_100_200/batch/condor_452.sub | 13 - test/ntuple_qcd_100_200/batch/condor_453.sub | 13 - test/ntuple_qcd_100_200/batch/condor_454.sub | 13 - test/ntuple_qcd_100_200/batch/condor_455.sub | 13 - test/ntuple_qcd_100_200/batch/condor_456.sub | 13 - test/ntuple_qcd_100_200/batch/condor_457.sub | 13 - test/ntuple_qcd_100_200/batch/condor_458.sub | 13 - test/ntuple_qcd_100_200/batch/condor_459.sub | 13 - test/ntuple_qcd_100_200/batch/condor_46.sub | 13 - test/ntuple_qcd_100_200/batch/condor_460.sub | 13 - test/ntuple_qcd_100_200/batch/condor_461.sub | 13 - test/ntuple_qcd_100_200/batch/condor_462.sub | 13 - test/ntuple_qcd_100_200/batch/condor_463.sub | 13 - test/ntuple_qcd_100_200/batch/condor_464.sub | 13 - test/ntuple_qcd_100_200/batch/condor_465.sub | 13 - test/ntuple_qcd_100_200/batch/condor_466.sub | 13 - test/ntuple_qcd_100_200/batch/condor_467.sub | 13 - test/ntuple_qcd_100_200/batch/condor_468.sub | 13 - test/ntuple_qcd_100_200/batch/condor_469.sub | 13 - test/ntuple_qcd_100_200/batch/condor_47.sub | 13 - test/ntuple_qcd_100_200/batch/condor_470.sub | 13 - test/ntuple_qcd_100_200/batch/condor_471.sub | 13 - test/ntuple_qcd_100_200/batch/condor_472.sub | 13 - test/ntuple_qcd_100_200/batch/condor_473.sub | 13 - test/ntuple_qcd_100_200/batch/condor_474.sub | 13 - test/ntuple_qcd_100_200/batch/condor_475.sub | 13 - test/ntuple_qcd_100_200/batch/condor_476.sub | 13 - test/ntuple_qcd_100_200/batch/condor_477.sub | 13 - test/ntuple_qcd_100_200/batch/condor_478.sub | 13 - test/ntuple_qcd_100_200/batch/condor_479.sub | 13 - test/ntuple_qcd_100_200/batch/condor_48.sub | 13 - test/ntuple_qcd_100_200/batch/condor_480.sub | 13 - test/ntuple_qcd_100_200/batch/condor_481.sub | 13 - test/ntuple_qcd_100_200/batch/condor_482.sub | 13 - test/ntuple_qcd_100_200/batch/condor_483.sub | 13 - test/ntuple_qcd_100_200/batch/condor_484.sub | 13 - test/ntuple_qcd_100_200/batch/condor_485.sub | 13 - test/ntuple_qcd_100_200/batch/condor_486.sub | 13 - test/ntuple_qcd_100_200/batch/condor_487.sub | 13 - test/ntuple_qcd_100_200/batch/condor_488.sub | 13 - test/ntuple_qcd_100_200/batch/condor_489.sub | 13 - test/ntuple_qcd_100_200/batch/condor_49.sub | 13 - test/ntuple_qcd_100_200/batch/condor_490.sub | 13 - test/ntuple_qcd_100_200/batch/condor_491.sub | 13 - test/ntuple_qcd_100_200/batch/condor_492.sub | 13 - test/ntuple_qcd_100_200/batch/condor_493.sub | 13 - test/ntuple_qcd_100_200/batch/condor_494.sub | 13 - test/ntuple_qcd_100_200/batch/condor_495.sub | 13 - test/ntuple_qcd_100_200/batch/condor_496.sub | 13 - test/ntuple_qcd_100_200/batch/condor_497.sub | 13 - test/ntuple_qcd_100_200/batch/condor_498.sub | 13 - test/ntuple_qcd_100_200/batch/condor_499.sub | 13 - test/ntuple_qcd_100_200/batch/condor_5.sub | 13 - test/ntuple_qcd_100_200/batch/condor_50.sub | 13 - test/ntuple_qcd_100_200/batch/condor_51.sub | 13 - test/ntuple_qcd_100_200/batch/condor_52.sub | 13 - test/ntuple_qcd_100_200/batch/condor_53.sub | 13 - test/ntuple_qcd_100_200/batch/condor_54.sub | 13 - test/ntuple_qcd_100_200/batch/condor_55.sub | 13 - test/ntuple_qcd_100_200/batch/condor_56.sub | 13 - test/ntuple_qcd_100_200/batch/condor_57.sub | 13 - test/ntuple_qcd_100_200/batch/condor_58.sub | 13 - test/ntuple_qcd_100_200/batch/condor_59.sub | 13 - test/ntuple_qcd_100_200/batch/condor_6.sub | 13 - test/ntuple_qcd_100_200/batch/condor_60.sub | 13 - test/ntuple_qcd_100_200/batch/condor_61.sub | 13 - test/ntuple_qcd_100_200/batch/condor_62.sub | 13 - test/ntuple_qcd_100_200/batch/condor_63.sub | 13 - test/ntuple_qcd_100_200/batch/condor_64.sub | 13 - test/ntuple_qcd_100_200/batch/condor_65.sub | 13 - test/ntuple_qcd_100_200/batch/condor_66.sub | 13 - test/ntuple_qcd_100_200/batch/condor_67.sub | 13 - test/ntuple_qcd_100_200/batch/condor_68.sub | 13 - test/ntuple_qcd_100_200/batch/condor_69.sub | 13 - test/ntuple_qcd_100_200/batch/condor_7.sub | 13 - test/ntuple_qcd_100_200/batch/condor_70.sub | 13 - test/ntuple_qcd_100_200/batch/condor_71.sub | 13 - test/ntuple_qcd_100_200/batch/condor_72.sub | 13 - test/ntuple_qcd_100_200/batch/condor_73.sub | 13 - test/ntuple_qcd_100_200/batch/condor_74.sub | 13 - test/ntuple_qcd_100_200/batch/condor_75.sub | 13 - test/ntuple_qcd_100_200/batch/condor_76.sub | 13 - test/ntuple_qcd_100_200/batch/condor_77.sub | 13 - test/ntuple_qcd_100_200/batch/condor_78.sub | 13 - test/ntuple_qcd_100_200/batch/condor_79.sub | 13 - test/ntuple_qcd_100_200/batch/condor_8.sub | 13 - test/ntuple_qcd_100_200/batch/condor_80.sub | 13 - test/ntuple_qcd_100_200/batch/condor_81.sub | 13 - test/ntuple_qcd_100_200/batch/condor_82.sub | 13 - test/ntuple_qcd_100_200/batch/condor_83.sub | 13 - test/ntuple_qcd_100_200/batch/condor_84.sub | 13 - test/ntuple_qcd_100_200/batch/condor_85.sub | 13 - test/ntuple_qcd_100_200/batch/condor_86.sub | 13 - test/ntuple_qcd_100_200/batch/condor_87.sub | 13 - test/ntuple_qcd_100_200/batch/condor_88.sub | 13 - test/ntuple_qcd_100_200/batch/condor_89.sub | 13 - test/ntuple_qcd_100_200/batch/condor_9.sub | 13 - test/ntuple_qcd_100_200/batch/condor_90.sub | 13 - test/ntuple_qcd_100_200/batch/condor_91.sub | 13 - test/ntuple_qcd_100_200/batch/condor_92.sub | 13 - test/ntuple_qcd_100_200/batch/condor_93.sub | 13 - test/ntuple_qcd_100_200/batch/condor_94.sub | 13 - test/ntuple_qcd_100_200/batch/condor_95.sub | 13 - test/ntuple_qcd_100_200/batch/condor_96.sub | 13 - test/ntuple_qcd_100_200/batch/condor_97.sub | 13 - test/ntuple_qcd_100_200/batch/condor_98.sub | 13 - test/ntuple_qcd_100_200/batch/condor_99.sub | 13 - test/ntuple_qcd_100_200/batch/nJobs.500 | 0 test/ntuple_qcd_100_200/batch/sge_0.sh | 28 - test/ntuple_qcd_100_200/batch/sge_1.sh | 28 - test/ntuple_qcd_100_200/batch/sge_10.sh | 28 - test/ntuple_qcd_100_200/batch/sge_100.sh | 28 - test/ntuple_qcd_100_200/batch/sge_101.sh | 28 - test/ntuple_qcd_100_200/batch/sge_102.sh | 28 - test/ntuple_qcd_100_200/batch/sge_103.sh | 28 - test/ntuple_qcd_100_200/batch/sge_104.sh | 28 - test/ntuple_qcd_100_200/batch/sge_105.sh | 28 - test/ntuple_qcd_100_200/batch/sge_106.sh | 28 - test/ntuple_qcd_100_200/batch/sge_107.sh | 28 - test/ntuple_qcd_100_200/batch/sge_108.sh | 28 - test/ntuple_qcd_100_200/batch/sge_109.sh | 28 - test/ntuple_qcd_100_200/batch/sge_11.sh | 28 - test/ntuple_qcd_100_200/batch/sge_110.sh | 28 - test/ntuple_qcd_100_200/batch/sge_111.sh | 28 - test/ntuple_qcd_100_200/batch/sge_112.sh | 28 - test/ntuple_qcd_100_200/batch/sge_113.sh | 28 - test/ntuple_qcd_100_200/batch/sge_114.sh | 28 - test/ntuple_qcd_100_200/batch/sge_115.sh | 28 - test/ntuple_qcd_100_200/batch/sge_116.sh | 28 - test/ntuple_qcd_100_200/batch/sge_117.sh | 28 - test/ntuple_qcd_100_200/batch/sge_118.sh | 28 - test/ntuple_qcd_100_200/batch/sge_119.sh | 28 - test/ntuple_qcd_100_200/batch/sge_12.sh | 28 - test/ntuple_qcd_100_200/batch/sge_120.sh | 28 - test/ntuple_qcd_100_200/batch/sge_121.sh | 28 - test/ntuple_qcd_100_200/batch/sge_122.sh | 28 - test/ntuple_qcd_100_200/batch/sge_123.sh | 28 - test/ntuple_qcd_100_200/batch/sge_124.sh | 28 - test/ntuple_qcd_100_200/batch/sge_125.sh | 28 - test/ntuple_qcd_100_200/batch/sge_126.sh | 28 - test/ntuple_qcd_100_200/batch/sge_127.sh | 28 - test/ntuple_qcd_100_200/batch/sge_128.sh | 28 - test/ntuple_qcd_100_200/batch/sge_129.sh | 28 - test/ntuple_qcd_100_200/batch/sge_13.sh | 28 - test/ntuple_qcd_100_200/batch/sge_130.sh | 28 - test/ntuple_qcd_100_200/batch/sge_131.sh | 28 - test/ntuple_qcd_100_200/batch/sge_132.sh | 28 - test/ntuple_qcd_100_200/batch/sge_133.sh | 28 - test/ntuple_qcd_100_200/batch/sge_134.sh | 28 - test/ntuple_qcd_100_200/batch/sge_135.sh | 28 - test/ntuple_qcd_100_200/batch/sge_136.sh | 28 - test/ntuple_qcd_100_200/batch/sge_137.sh | 28 - test/ntuple_qcd_100_200/batch/sge_138.sh | 28 - test/ntuple_qcd_100_200/batch/sge_139.sh | 28 - test/ntuple_qcd_100_200/batch/sge_14.sh | 28 - test/ntuple_qcd_100_200/batch/sge_140.sh | 28 - test/ntuple_qcd_100_200/batch/sge_141.sh | 28 - test/ntuple_qcd_100_200/batch/sge_142.sh | 28 - test/ntuple_qcd_100_200/batch/sge_143.sh | 28 - test/ntuple_qcd_100_200/batch/sge_144.sh | 28 - test/ntuple_qcd_100_200/batch/sge_145.sh | 28 - test/ntuple_qcd_100_200/batch/sge_146.sh | 28 - test/ntuple_qcd_100_200/batch/sge_147.sh | 28 - test/ntuple_qcd_100_200/batch/sge_148.sh | 28 - test/ntuple_qcd_100_200/batch/sge_149.sh | 28 - test/ntuple_qcd_100_200/batch/sge_15.sh | 28 - test/ntuple_qcd_100_200/batch/sge_150.sh | 28 - test/ntuple_qcd_100_200/batch/sge_151.sh | 28 - test/ntuple_qcd_100_200/batch/sge_152.sh | 28 - test/ntuple_qcd_100_200/batch/sge_153.sh | 28 - test/ntuple_qcd_100_200/batch/sge_154.sh | 28 - test/ntuple_qcd_100_200/batch/sge_155.sh | 28 - test/ntuple_qcd_100_200/batch/sge_156.sh | 28 - test/ntuple_qcd_100_200/batch/sge_157.sh | 28 - test/ntuple_qcd_100_200/batch/sge_158.sh | 28 - test/ntuple_qcd_100_200/batch/sge_159.sh | 28 - test/ntuple_qcd_100_200/batch/sge_16.sh | 28 - test/ntuple_qcd_100_200/batch/sge_160.sh | 28 - test/ntuple_qcd_100_200/batch/sge_161.sh | 28 - test/ntuple_qcd_100_200/batch/sge_162.sh | 28 - test/ntuple_qcd_100_200/batch/sge_163.sh | 28 - test/ntuple_qcd_100_200/batch/sge_164.sh | 28 - test/ntuple_qcd_100_200/batch/sge_165.sh | 28 - test/ntuple_qcd_100_200/batch/sge_166.sh | 28 - test/ntuple_qcd_100_200/batch/sge_167.sh | 28 - test/ntuple_qcd_100_200/batch/sge_168.sh | 28 - test/ntuple_qcd_100_200/batch/sge_169.sh | 28 - test/ntuple_qcd_100_200/batch/sge_17.sh | 28 - test/ntuple_qcd_100_200/batch/sge_170.sh | 28 - test/ntuple_qcd_100_200/batch/sge_171.sh | 28 - test/ntuple_qcd_100_200/batch/sge_172.sh | 28 - test/ntuple_qcd_100_200/batch/sge_173.sh | 28 - test/ntuple_qcd_100_200/batch/sge_174.sh | 28 - test/ntuple_qcd_100_200/batch/sge_175.sh | 28 - test/ntuple_qcd_100_200/batch/sge_176.sh | 28 - test/ntuple_qcd_100_200/batch/sge_177.sh | 28 - test/ntuple_qcd_100_200/batch/sge_178.sh | 28 - test/ntuple_qcd_100_200/batch/sge_179.sh | 28 - test/ntuple_qcd_100_200/batch/sge_18.sh | 28 - test/ntuple_qcd_100_200/batch/sge_180.sh | 28 - test/ntuple_qcd_100_200/batch/sge_181.sh | 28 - test/ntuple_qcd_100_200/batch/sge_182.sh | 28 - test/ntuple_qcd_100_200/batch/sge_183.sh | 28 - test/ntuple_qcd_100_200/batch/sge_184.sh | 28 - test/ntuple_qcd_100_200/batch/sge_185.sh | 28 - test/ntuple_qcd_100_200/batch/sge_186.sh | 28 - test/ntuple_qcd_100_200/batch/sge_187.sh | 28 - test/ntuple_qcd_100_200/batch/sge_188.sh | 28 - test/ntuple_qcd_100_200/batch/sge_189.sh | 28 - test/ntuple_qcd_100_200/batch/sge_19.sh | 28 - test/ntuple_qcd_100_200/batch/sge_190.sh | 28 - test/ntuple_qcd_100_200/batch/sge_191.sh | 28 - test/ntuple_qcd_100_200/batch/sge_192.sh | 28 - test/ntuple_qcd_100_200/batch/sge_193.sh | 28 - test/ntuple_qcd_100_200/batch/sge_194.sh | 28 - test/ntuple_qcd_100_200/batch/sge_195.sh | 28 - test/ntuple_qcd_100_200/batch/sge_196.sh | 28 - test/ntuple_qcd_100_200/batch/sge_197.sh | 28 - test/ntuple_qcd_100_200/batch/sge_198.sh | 28 - test/ntuple_qcd_100_200/batch/sge_199.sh | 28 - test/ntuple_qcd_100_200/batch/sge_2.sh | 28 - test/ntuple_qcd_100_200/batch/sge_20.sh | 28 - test/ntuple_qcd_100_200/batch/sge_200.sh | 28 - test/ntuple_qcd_100_200/batch/sge_201.sh | 28 - test/ntuple_qcd_100_200/batch/sge_202.sh | 28 - test/ntuple_qcd_100_200/batch/sge_203.sh | 28 - test/ntuple_qcd_100_200/batch/sge_204.sh | 28 - test/ntuple_qcd_100_200/batch/sge_205.sh | 28 - test/ntuple_qcd_100_200/batch/sge_206.sh | 28 - test/ntuple_qcd_100_200/batch/sge_207.sh | 28 - test/ntuple_qcd_100_200/batch/sge_208.sh | 28 - test/ntuple_qcd_100_200/batch/sge_209.sh | 28 - test/ntuple_qcd_100_200/batch/sge_21.sh | 28 - test/ntuple_qcd_100_200/batch/sge_210.sh | 28 - test/ntuple_qcd_100_200/batch/sge_211.sh | 28 - test/ntuple_qcd_100_200/batch/sge_212.sh | 28 - test/ntuple_qcd_100_200/batch/sge_213.sh | 28 - test/ntuple_qcd_100_200/batch/sge_214.sh | 28 - test/ntuple_qcd_100_200/batch/sge_215.sh | 28 - test/ntuple_qcd_100_200/batch/sge_216.sh | 28 - test/ntuple_qcd_100_200/batch/sge_217.sh | 28 - test/ntuple_qcd_100_200/batch/sge_218.sh | 28 - test/ntuple_qcd_100_200/batch/sge_219.sh | 28 - test/ntuple_qcd_100_200/batch/sge_22.sh | 28 - test/ntuple_qcd_100_200/batch/sge_220.sh | 28 - test/ntuple_qcd_100_200/batch/sge_221.sh | 28 - test/ntuple_qcd_100_200/batch/sge_222.sh | 28 - test/ntuple_qcd_100_200/batch/sge_223.sh | 28 - test/ntuple_qcd_100_200/batch/sge_224.sh | 28 - test/ntuple_qcd_100_200/batch/sge_225.sh | 28 - test/ntuple_qcd_100_200/batch/sge_226.sh | 28 - test/ntuple_qcd_100_200/batch/sge_227.sh | 28 - test/ntuple_qcd_100_200/batch/sge_228.sh | 28 - test/ntuple_qcd_100_200/batch/sge_229.sh | 28 - test/ntuple_qcd_100_200/batch/sge_23.sh | 28 - test/ntuple_qcd_100_200/batch/sge_230.sh | 28 - test/ntuple_qcd_100_200/batch/sge_231.sh | 28 - test/ntuple_qcd_100_200/batch/sge_232.sh | 28 - test/ntuple_qcd_100_200/batch/sge_233.sh | 28 - test/ntuple_qcd_100_200/batch/sge_234.sh | 28 - test/ntuple_qcd_100_200/batch/sge_235.sh | 28 - test/ntuple_qcd_100_200/batch/sge_236.sh | 28 - test/ntuple_qcd_100_200/batch/sge_237.sh | 28 - test/ntuple_qcd_100_200/batch/sge_238.sh | 28 - test/ntuple_qcd_100_200/batch/sge_239.sh | 28 - test/ntuple_qcd_100_200/batch/sge_24.sh | 28 - test/ntuple_qcd_100_200/batch/sge_240.sh | 28 - test/ntuple_qcd_100_200/batch/sge_241.sh | 28 - test/ntuple_qcd_100_200/batch/sge_242.sh | 28 - test/ntuple_qcd_100_200/batch/sge_243.sh | 28 - test/ntuple_qcd_100_200/batch/sge_244.sh | 28 - test/ntuple_qcd_100_200/batch/sge_245.sh | 28 - test/ntuple_qcd_100_200/batch/sge_246.sh | 28 - test/ntuple_qcd_100_200/batch/sge_247.sh | 28 - test/ntuple_qcd_100_200/batch/sge_248.sh | 28 - test/ntuple_qcd_100_200/batch/sge_249.sh | 28 - test/ntuple_qcd_100_200/batch/sge_25.sh | 28 - test/ntuple_qcd_100_200/batch/sge_250.sh | 28 - test/ntuple_qcd_100_200/batch/sge_251.sh | 28 - test/ntuple_qcd_100_200/batch/sge_252.sh | 28 - test/ntuple_qcd_100_200/batch/sge_253.sh | 28 - test/ntuple_qcd_100_200/batch/sge_254.sh | 28 - test/ntuple_qcd_100_200/batch/sge_255.sh | 28 - test/ntuple_qcd_100_200/batch/sge_256.sh | 28 - test/ntuple_qcd_100_200/batch/sge_257.sh | 28 - test/ntuple_qcd_100_200/batch/sge_258.sh | 28 - test/ntuple_qcd_100_200/batch/sge_259.sh | 28 - test/ntuple_qcd_100_200/batch/sge_26.sh | 28 - test/ntuple_qcd_100_200/batch/sge_260.sh | 28 - test/ntuple_qcd_100_200/batch/sge_261.sh | 28 - test/ntuple_qcd_100_200/batch/sge_262.sh | 28 - test/ntuple_qcd_100_200/batch/sge_263.sh | 28 - test/ntuple_qcd_100_200/batch/sge_264.sh | 28 - test/ntuple_qcd_100_200/batch/sge_265.sh | 28 - test/ntuple_qcd_100_200/batch/sge_266.sh | 28 - test/ntuple_qcd_100_200/batch/sge_267.sh | 28 - test/ntuple_qcd_100_200/batch/sge_268.sh | 28 - test/ntuple_qcd_100_200/batch/sge_269.sh | 28 - test/ntuple_qcd_100_200/batch/sge_27.sh | 28 - test/ntuple_qcd_100_200/batch/sge_270.sh | 28 - test/ntuple_qcd_100_200/batch/sge_271.sh | 28 - test/ntuple_qcd_100_200/batch/sge_272.sh | 28 - test/ntuple_qcd_100_200/batch/sge_273.sh | 28 - test/ntuple_qcd_100_200/batch/sge_274.sh | 28 - test/ntuple_qcd_100_200/batch/sge_275.sh | 28 - test/ntuple_qcd_100_200/batch/sge_276.sh | 28 - test/ntuple_qcd_100_200/batch/sge_277.sh | 28 - test/ntuple_qcd_100_200/batch/sge_278.sh | 28 - test/ntuple_qcd_100_200/batch/sge_279.sh | 28 - test/ntuple_qcd_100_200/batch/sge_28.sh | 28 - test/ntuple_qcd_100_200/batch/sge_280.sh | 28 - test/ntuple_qcd_100_200/batch/sge_281.sh | 28 - test/ntuple_qcd_100_200/batch/sge_282.sh | 28 - test/ntuple_qcd_100_200/batch/sge_283.sh | 28 - test/ntuple_qcd_100_200/batch/sge_284.sh | 28 - test/ntuple_qcd_100_200/batch/sge_285.sh | 28 - test/ntuple_qcd_100_200/batch/sge_286.sh | 28 - test/ntuple_qcd_100_200/batch/sge_287.sh | 28 - test/ntuple_qcd_100_200/batch/sge_288.sh | 28 - test/ntuple_qcd_100_200/batch/sge_289.sh | 28 - test/ntuple_qcd_100_200/batch/sge_29.sh | 28 - test/ntuple_qcd_100_200/batch/sge_290.sh | 28 - test/ntuple_qcd_100_200/batch/sge_291.sh | 28 - test/ntuple_qcd_100_200/batch/sge_292.sh | 28 - test/ntuple_qcd_100_200/batch/sge_293.sh | 28 - test/ntuple_qcd_100_200/batch/sge_294.sh | 28 - test/ntuple_qcd_100_200/batch/sge_295.sh | 28 - test/ntuple_qcd_100_200/batch/sge_296.sh | 28 - test/ntuple_qcd_100_200/batch/sge_297.sh | 28 - test/ntuple_qcd_100_200/batch/sge_298.sh | 28 - test/ntuple_qcd_100_200/batch/sge_299.sh | 28 - test/ntuple_qcd_100_200/batch/sge_3.sh | 28 - test/ntuple_qcd_100_200/batch/sge_30.sh | 28 - test/ntuple_qcd_100_200/batch/sge_300.sh | 28 - test/ntuple_qcd_100_200/batch/sge_301.sh | 28 - test/ntuple_qcd_100_200/batch/sge_302.sh | 28 - test/ntuple_qcd_100_200/batch/sge_303.sh | 28 - test/ntuple_qcd_100_200/batch/sge_304.sh | 28 - test/ntuple_qcd_100_200/batch/sge_305.sh | 28 - test/ntuple_qcd_100_200/batch/sge_306.sh | 28 - test/ntuple_qcd_100_200/batch/sge_307.sh | 28 - test/ntuple_qcd_100_200/batch/sge_308.sh | 28 - test/ntuple_qcd_100_200/batch/sge_309.sh | 28 - test/ntuple_qcd_100_200/batch/sge_31.sh | 28 - test/ntuple_qcd_100_200/batch/sge_310.sh | 28 - test/ntuple_qcd_100_200/batch/sge_311.sh | 28 - test/ntuple_qcd_100_200/batch/sge_312.sh | 28 - test/ntuple_qcd_100_200/batch/sge_313.sh | 28 - test/ntuple_qcd_100_200/batch/sge_314.sh | 28 - test/ntuple_qcd_100_200/batch/sge_315.sh | 28 - test/ntuple_qcd_100_200/batch/sge_316.sh | 28 - test/ntuple_qcd_100_200/batch/sge_317.sh | 28 - test/ntuple_qcd_100_200/batch/sge_318.sh | 28 - test/ntuple_qcd_100_200/batch/sge_319.sh | 28 - test/ntuple_qcd_100_200/batch/sge_32.sh | 28 - test/ntuple_qcd_100_200/batch/sge_320.sh | 28 - test/ntuple_qcd_100_200/batch/sge_321.sh | 28 - test/ntuple_qcd_100_200/batch/sge_322.sh | 28 - test/ntuple_qcd_100_200/batch/sge_323.sh | 28 - test/ntuple_qcd_100_200/batch/sge_324.sh | 28 - test/ntuple_qcd_100_200/batch/sge_325.sh | 28 - test/ntuple_qcd_100_200/batch/sge_326.sh | 28 - test/ntuple_qcd_100_200/batch/sge_327.sh | 28 - test/ntuple_qcd_100_200/batch/sge_328.sh | 28 - test/ntuple_qcd_100_200/batch/sge_329.sh | 28 - test/ntuple_qcd_100_200/batch/sge_33.sh | 28 - test/ntuple_qcd_100_200/batch/sge_330.sh | 28 - test/ntuple_qcd_100_200/batch/sge_331.sh | 28 - test/ntuple_qcd_100_200/batch/sge_332.sh | 28 - test/ntuple_qcd_100_200/batch/sge_333.sh | 28 - test/ntuple_qcd_100_200/batch/sge_334.sh | 28 - test/ntuple_qcd_100_200/batch/sge_335.sh | 28 - test/ntuple_qcd_100_200/batch/sge_336.sh | 28 - test/ntuple_qcd_100_200/batch/sge_337.sh | 28 - test/ntuple_qcd_100_200/batch/sge_338.sh | 28 - test/ntuple_qcd_100_200/batch/sge_339.sh | 28 - test/ntuple_qcd_100_200/batch/sge_34.sh | 28 - test/ntuple_qcd_100_200/batch/sge_340.sh | 28 - test/ntuple_qcd_100_200/batch/sge_341.sh | 28 - test/ntuple_qcd_100_200/batch/sge_342.sh | 28 - test/ntuple_qcd_100_200/batch/sge_343.sh | 28 - test/ntuple_qcd_100_200/batch/sge_344.sh | 28 - test/ntuple_qcd_100_200/batch/sge_345.sh | 28 - test/ntuple_qcd_100_200/batch/sge_346.sh | 28 - test/ntuple_qcd_100_200/batch/sge_347.sh | 28 - test/ntuple_qcd_100_200/batch/sge_348.sh | 28 - test/ntuple_qcd_100_200/batch/sge_349.sh | 28 - test/ntuple_qcd_100_200/batch/sge_35.sh | 28 - test/ntuple_qcd_100_200/batch/sge_350.sh | 28 - test/ntuple_qcd_100_200/batch/sge_351.sh | 28 - test/ntuple_qcd_100_200/batch/sge_352.sh | 28 - test/ntuple_qcd_100_200/batch/sge_353.sh | 28 - test/ntuple_qcd_100_200/batch/sge_354.sh | 28 - test/ntuple_qcd_100_200/batch/sge_355.sh | 28 - test/ntuple_qcd_100_200/batch/sge_356.sh | 28 - test/ntuple_qcd_100_200/batch/sge_357.sh | 28 - test/ntuple_qcd_100_200/batch/sge_358.sh | 28 - test/ntuple_qcd_100_200/batch/sge_359.sh | 28 - test/ntuple_qcd_100_200/batch/sge_36.sh | 28 - test/ntuple_qcd_100_200/batch/sge_360.sh | 28 - test/ntuple_qcd_100_200/batch/sge_361.sh | 28 - test/ntuple_qcd_100_200/batch/sge_362.sh | 28 - test/ntuple_qcd_100_200/batch/sge_363.sh | 28 - test/ntuple_qcd_100_200/batch/sge_364.sh | 28 - test/ntuple_qcd_100_200/batch/sge_365.sh | 28 - test/ntuple_qcd_100_200/batch/sge_366.sh | 28 - test/ntuple_qcd_100_200/batch/sge_367.sh | 28 - test/ntuple_qcd_100_200/batch/sge_368.sh | 28 - test/ntuple_qcd_100_200/batch/sge_369.sh | 28 - test/ntuple_qcd_100_200/batch/sge_37.sh | 28 - test/ntuple_qcd_100_200/batch/sge_370.sh | 28 - test/ntuple_qcd_100_200/batch/sge_371.sh | 28 - test/ntuple_qcd_100_200/batch/sge_372.sh | 28 - test/ntuple_qcd_100_200/batch/sge_373.sh | 28 - test/ntuple_qcd_100_200/batch/sge_374.sh | 28 - test/ntuple_qcd_100_200/batch/sge_375.sh | 28 - test/ntuple_qcd_100_200/batch/sge_376.sh | 28 - test/ntuple_qcd_100_200/batch/sge_377.sh | 28 - test/ntuple_qcd_100_200/batch/sge_378.sh | 28 - test/ntuple_qcd_100_200/batch/sge_379.sh | 28 - test/ntuple_qcd_100_200/batch/sge_38.sh | 28 - test/ntuple_qcd_100_200/batch/sge_380.sh | 28 - test/ntuple_qcd_100_200/batch/sge_381.sh | 28 - test/ntuple_qcd_100_200/batch/sge_382.sh | 28 - test/ntuple_qcd_100_200/batch/sge_383.sh | 28 - test/ntuple_qcd_100_200/batch/sge_384.sh | 28 - test/ntuple_qcd_100_200/batch/sge_385.sh | 28 - test/ntuple_qcd_100_200/batch/sge_386.sh | 28 - test/ntuple_qcd_100_200/batch/sge_387.sh | 28 - test/ntuple_qcd_100_200/batch/sge_388.sh | 28 - test/ntuple_qcd_100_200/batch/sge_389.sh | 28 - test/ntuple_qcd_100_200/batch/sge_39.sh | 28 - test/ntuple_qcd_100_200/batch/sge_390.sh | 28 - test/ntuple_qcd_100_200/batch/sge_391.sh | 28 - test/ntuple_qcd_100_200/batch/sge_392.sh | 28 - test/ntuple_qcd_100_200/batch/sge_393.sh | 28 - test/ntuple_qcd_100_200/batch/sge_394.sh | 28 - test/ntuple_qcd_100_200/batch/sge_395.sh | 28 - test/ntuple_qcd_100_200/batch/sge_396.sh | 28 - test/ntuple_qcd_100_200/batch/sge_397.sh | 28 - test/ntuple_qcd_100_200/batch/sge_398.sh | 28 - test/ntuple_qcd_100_200/batch/sge_399.sh | 28 - test/ntuple_qcd_100_200/batch/sge_4.sh | 28 - test/ntuple_qcd_100_200/batch/sge_40.sh | 28 - test/ntuple_qcd_100_200/batch/sge_400.sh | 28 - test/ntuple_qcd_100_200/batch/sge_401.sh | 28 - test/ntuple_qcd_100_200/batch/sge_402.sh | 28 - test/ntuple_qcd_100_200/batch/sge_403.sh | 28 - test/ntuple_qcd_100_200/batch/sge_404.sh | 28 - test/ntuple_qcd_100_200/batch/sge_405.sh | 28 - test/ntuple_qcd_100_200/batch/sge_406.sh | 28 - test/ntuple_qcd_100_200/batch/sge_407.sh | 28 - test/ntuple_qcd_100_200/batch/sge_408.sh | 28 - test/ntuple_qcd_100_200/batch/sge_409.sh | 28 - test/ntuple_qcd_100_200/batch/sge_41.sh | 28 - test/ntuple_qcd_100_200/batch/sge_410.sh | 28 - test/ntuple_qcd_100_200/batch/sge_411.sh | 28 - test/ntuple_qcd_100_200/batch/sge_412.sh | 28 - test/ntuple_qcd_100_200/batch/sge_413.sh | 28 - test/ntuple_qcd_100_200/batch/sge_414.sh | 28 - test/ntuple_qcd_100_200/batch/sge_415.sh | 28 - test/ntuple_qcd_100_200/batch/sge_416.sh | 28 - test/ntuple_qcd_100_200/batch/sge_417.sh | 28 - test/ntuple_qcd_100_200/batch/sge_418.sh | 28 - test/ntuple_qcd_100_200/batch/sge_419.sh | 28 - test/ntuple_qcd_100_200/batch/sge_42.sh | 28 - test/ntuple_qcd_100_200/batch/sge_420.sh | 28 - test/ntuple_qcd_100_200/batch/sge_421.sh | 28 - test/ntuple_qcd_100_200/batch/sge_422.sh | 28 - test/ntuple_qcd_100_200/batch/sge_423.sh | 28 - test/ntuple_qcd_100_200/batch/sge_424.sh | 28 - test/ntuple_qcd_100_200/batch/sge_425.sh | 28 - test/ntuple_qcd_100_200/batch/sge_426.sh | 28 - test/ntuple_qcd_100_200/batch/sge_427.sh | 28 - test/ntuple_qcd_100_200/batch/sge_428.sh | 28 - test/ntuple_qcd_100_200/batch/sge_429.sh | 28 - test/ntuple_qcd_100_200/batch/sge_43.sh | 28 - test/ntuple_qcd_100_200/batch/sge_430.sh | 28 - test/ntuple_qcd_100_200/batch/sge_431.sh | 28 - test/ntuple_qcd_100_200/batch/sge_432.sh | 28 - test/ntuple_qcd_100_200/batch/sge_433.sh | 28 - test/ntuple_qcd_100_200/batch/sge_434.sh | 28 - test/ntuple_qcd_100_200/batch/sge_435.sh | 28 - test/ntuple_qcd_100_200/batch/sge_436.sh | 28 - test/ntuple_qcd_100_200/batch/sge_437.sh | 28 - test/ntuple_qcd_100_200/batch/sge_438.sh | 28 - test/ntuple_qcd_100_200/batch/sge_439.sh | 28 - test/ntuple_qcd_100_200/batch/sge_44.sh | 28 - test/ntuple_qcd_100_200/batch/sge_440.sh | 28 - test/ntuple_qcd_100_200/batch/sge_441.sh | 28 - test/ntuple_qcd_100_200/batch/sge_442.sh | 28 - test/ntuple_qcd_100_200/batch/sge_443.sh | 28 - test/ntuple_qcd_100_200/batch/sge_444.sh | 28 - test/ntuple_qcd_100_200/batch/sge_445.sh | 28 - test/ntuple_qcd_100_200/batch/sge_446.sh | 28 - test/ntuple_qcd_100_200/batch/sge_447.sh | 28 - test/ntuple_qcd_100_200/batch/sge_448.sh | 28 - test/ntuple_qcd_100_200/batch/sge_449.sh | 28 - test/ntuple_qcd_100_200/batch/sge_45.sh | 28 - test/ntuple_qcd_100_200/batch/sge_450.sh | 28 - test/ntuple_qcd_100_200/batch/sge_451.sh | 28 - test/ntuple_qcd_100_200/batch/sge_452.sh | 28 - test/ntuple_qcd_100_200/batch/sge_453.sh | 28 - test/ntuple_qcd_100_200/batch/sge_454.sh | 28 - test/ntuple_qcd_100_200/batch/sge_455.sh | 28 - test/ntuple_qcd_100_200/batch/sge_456.sh | 28 - test/ntuple_qcd_100_200/batch/sge_457.sh | 28 - test/ntuple_qcd_100_200/batch/sge_458.sh | 28 - test/ntuple_qcd_100_200/batch/sge_459.sh | 28 - test/ntuple_qcd_100_200/batch/sge_46.sh | 28 - test/ntuple_qcd_100_200/batch/sge_460.sh | 28 - test/ntuple_qcd_100_200/batch/sge_461.sh | 28 - test/ntuple_qcd_100_200/batch/sge_462.sh | 28 - test/ntuple_qcd_100_200/batch/sge_463.sh | 28 - test/ntuple_qcd_100_200/batch/sge_464.sh | 28 - test/ntuple_qcd_100_200/batch/sge_465.sh | 28 - test/ntuple_qcd_100_200/batch/sge_466.sh | 28 - test/ntuple_qcd_100_200/batch/sge_467.sh | 28 - test/ntuple_qcd_100_200/batch/sge_468.sh | 28 - test/ntuple_qcd_100_200/batch/sge_469.sh | 28 - test/ntuple_qcd_100_200/batch/sge_47.sh | 28 - test/ntuple_qcd_100_200/batch/sge_470.sh | 28 - test/ntuple_qcd_100_200/batch/sge_471.sh | 28 - test/ntuple_qcd_100_200/batch/sge_472.sh | 28 - test/ntuple_qcd_100_200/batch/sge_473.sh | 28 - test/ntuple_qcd_100_200/batch/sge_474.sh | 28 - test/ntuple_qcd_100_200/batch/sge_475.sh | 28 - test/ntuple_qcd_100_200/batch/sge_476.sh | 28 - test/ntuple_qcd_100_200/batch/sge_477.sh | 28 - test/ntuple_qcd_100_200/batch/sge_478.sh | 28 - test/ntuple_qcd_100_200/batch/sge_479.sh | 28 - test/ntuple_qcd_100_200/batch/sge_48.sh | 28 - test/ntuple_qcd_100_200/batch/sge_480.sh | 28 - test/ntuple_qcd_100_200/batch/sge_481.sh | 28 - test/ntuple_qcd_100_200/batch/sge_482.sh | 28 - test/ntuple_qcd_100_200/batch/sge_483.sh | 28 - test/ntuple_qcd_100_200/batch/sge_484.sh | 28 - test/ntuple_qcd_100_200/batch/sge_485.sh | 28 - test/ntuple_qcd_100_200/batch/sge_486.sh | 28 - test/ntuple_qcd_100_200/batch/sge_487.sh | 28 - test/ntuple_qcd_100_200/batch/sge_488.sh | 28 - test/ntuple_qcd_100_200/batch/sge_489.sh | 28 - test/ntuple_qcd_100_200/batch/sge_49.sh | 28 - test/ntuple_qcd_100_200/batch/sge_490.sh | 28 - test/ntuple_qcd_100_200/batch/sge_491.sh | 28 - test/ntuple_qcd_100_200/batch/sge_492.sh | 28 - test/ntuple_qcd_100_200/batch/sge_493.sh | 28 - test/ntuple_qcd_100_200/batch/sge_494.sh | 28 - test/ntuple_qcd_100_200/batch/sge_495.sh | 28 - test/ntuple_qcd_100_200/batch/sge_496.sh | 28 - test/ntuple_qcd_100_200/batch/sge_497.sh | 28 - test/ntuple_qcd_100_200/batch/sge_498.sh | 28 - test/ntuple_qcd_100_200/batch/sge_499.sh | 28 - test/ntuple_qcd_100_200/batch/sge_5.sh | 28 - test/ntuple_qcd_100_200/batch/sge_50.sh | 28 - test/ntuple_qcd_100_200/batch/sge_51.sh | 28 - test/ntuple_qcd_100_200/batch/sge_52.sh | 28 - test/ntuple_qcd_100_200/batch/sge_53.sh | 28 - test/ntuple_qcd_100_200/batch/sge_54.sh | 28 - test/ntuple_qcd_100_200/batch/sge_55.sh | 28 - test/ntuple_qcd_100_200/batch/sge_56.sh | 28 - test/ntuple_qcd_100_200/batch/sge_57.sh | 28 - test/ntuple_qcd_100_200/batch/sge_58.sh | 28 - test/ntuple_qcd_100_200/batch/sge_59.sh | 28 - test/ntuple_qcd_100_200/batch/sge_6.sh | 28 - test/ntuple_qcd_100_200/batch/sge_60.sh | 28 - test/ntuple_qcd_100_200/batch/sge_61.sh | 28 - test/ntuple_qcd_100_200/batch/sge_62.sh | 28 - test/ntuple_qcd_100_200/batch/sge_63.sh | 28 - test/ntuple_qcd_100_200/batch/sge_64.sh | 28 - test/ntuple_qcd_100_200/batch/sge_65.sh | 28 - test/ntuple_qcd_100_200/batch/sge_66.sh | 28 - test/ntuple_qcd_100_200/batch/sge_67.sh | 28 - test/ntuple_qcd_100_200/batch/sge_68.sh | 28 - test/ntuple_qcd_100_200/batch/sge_69.sh | 28 - test/ntuple_qcd_100_200/batch/sge_7.sh | 28 - test/ntuple_qcd_100_200/batch/sge_70.sh | 28 - test/ntuple_qcd_100_200/batch/sge_71.sh | 28 - test/ntuple_qcd_100_200/batch/sge_72.sh | 28 - test/ntuple_qcd_100_200/batch/sge_73.sh | 28 - test/ntuple_qcd_100_200/batch/sge_74.sh | 28 - test/ntuple_qcd_100_200/batch/sge_75.sh | 28 - test/ntuple_qcd_100_200/batch/sge_76.sh | 28 - test/ntuple_qcd_100_200/batch/sge_77.sh | 28 - test/ntuple_qcd_100_200/batch/sge_78.sh | 28 - test/ntuple_qcd_100_200/batch/sge_79.sh | 28 - test/ntuple_qcd_100_200/batch/sge_8.sh | 28 - test/ntuple_qcd_100_200/batch/sge_80.sh | 28 - test/ntuple_qcd_100_200/batch/sge_81.sh | 28 - test/ntuple_qcd_100_200/batch/sge_82.sh | 28 - test/ntuple_qcd_100_200/batch/sge_83.sh | 28 - test/ntuple_qcd_100_200/batch/sge_84.sh | 28 - test/ntuple_qcd_100_200/batch/sge_85.sh | 28 - test/ntuple_qcd_100_200/batch/sge_86.sh | 28 - test/ntuple_qcd_100_200/batch/sge_87.sh | 28 - test/ntuple_qcd_100_200/batch/sge_88.sh | 28 - test/ntuple_qcd_100_200/batch/sge_89.sh | 28 - test/ntuple_qcd_100_200/batch/sge_9.sh | 28 - test/ntuple_qcd_100_200/batch/sge_90.sh | 28 - test/ntuple_qcd_100_200/batch/sge_91.sh | 28 - test/ntuple_qcd_100_200/batch/sge_92.sh | 28 - test/ntuple_qcd_100_200/batch/sge_93.sh | 28 - test/ntuple_qcd_100_200/batch/sge_94.sh | 28 - test/ntuple_qcd_100_200/batch/sge_95.sh | 28 - test/ntuple_qcd_100_200/batch/sge_96.sh | 28 - test/ntuple_qcd_100_200/batch/sge_97.sh | 28 - test/ntuple_qcd_100_200/batch/sge_98.sh | 28 - test/ntuple_qcd_100_200/batch/sge_99.sh | 28 - test/ntuple_qcd_100_200/batchscript.sh | 51 -- test/ntuple_qcd_100_200/condor.sub | 13 - test/ntuple_qcd_100_200/helper | 1 - test/ntuple_qcd_100_200/output | 1 - test/ntuple_qcd_100_200/sge_sub.sh | 500 ------------------ test/ntuple_qcd_1500_2000/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_1500_2000/batch/condor_0.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_1.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_10.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_100.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_101.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_102.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_103.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_104.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_105.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_106.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_107.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_108.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_109.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_11.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_110.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_111.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_112.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_113.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_114.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_115.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_116.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_117.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_118.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_119.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_12.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_120.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_121.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_122.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_123.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_124.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_125.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_126.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_127.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_128.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_129.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_13.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_130.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_131.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_132.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_133.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_134.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_135.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_136.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_137.sub | 13 - .../ntuple_qcd_1500_2000/batch/condor_138.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_14.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_15.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_16.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_17.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_18.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_19.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_2.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_20.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_21.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_22.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_23.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_24.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_25.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_26.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_27.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_28.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_29.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_3.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_30.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_31.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_32.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_33.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_34.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_35.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_36.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_37.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_38.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_39.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_4.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_40.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_41.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_42.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_43.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_44.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_45.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_46.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_47.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_48.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_49.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_5.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_50.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_51.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_52.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_53.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_54.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_55.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_56.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_57.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_58.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_59.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_6.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_60.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_61.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_62.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_63.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_64.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_65.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_66.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_67.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_68.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_69.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_7.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_70.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_71.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_72.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_73.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_74.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_75.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_76.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_77.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_78.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_79.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_8.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_80.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_81.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_82.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_83.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_84.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_85.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_86.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_87.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_88.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_89.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_9.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_90.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_91.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_92.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_93.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_94.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_95.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_96.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_97.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_98.sub | 13 - test/ntuple_qcd_1500_2000/batch/condor_99.sub | 13 - test/ntuple_qcd_1500_2000/batch/nJobs.139 | 0 test/ntuple_qcd_1500_2000/batch/sge_0.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_1.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_10.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_100.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_101.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_102.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_103.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_104.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_105.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_106.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_107.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_108.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_109.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_11.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_110.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_111.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_112.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_113.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_114.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_115.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_116.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_117.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_118.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_119.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_12.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_120.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_121.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_122.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_123.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_124.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_125.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_126.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_127.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_128.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_129.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_13.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_130.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_131.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_132.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_133.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_134.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_135.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_136.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_137.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_138.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_14.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_15.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_16.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_17.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_18.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_19.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_2.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_20.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_21.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_22.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_23.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_24.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_25.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_26.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_27.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_28.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_29.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_3.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_30.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_31.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_32.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_33.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_34.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_35.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_36.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_37.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_38.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_39.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_4.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_40.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_41.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_42.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_43.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_44.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_45.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_46.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_47.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_48.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_49.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_5.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_50.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_51.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_52.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_53.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_54.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_55.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_56.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_57.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_58.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_59.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_6.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_60.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_61.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_62.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_63.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_64.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_65.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_66.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_67.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_68.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_69.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_7.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_70.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_71.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_72.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_73.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_74.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_75.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_76.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_77.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_78.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_79.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_8.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_80.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_81.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_82.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_83.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_84.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_85.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_86.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_87.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_88.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_89.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_9.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_90.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_91.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_92.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_93.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_94.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_95.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_96.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_97.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_98.sh | 28 - test/ntuple_qcd_1500_2000/batch/sge_99.sh | 28 - test/ntuple_qcd_1500_2000/batchscript.sh | 51 -- test/ntuple_qcd_1500_2000/condor.sub | 13 - test/ntuple_qcd_1500_2000/helper | 1 - test/ntuple_qcd_1500_2000/output | 1 - test/ntuple_qcd_1500_2000/sge_sub.sh | 139 ----- test/ntuple_qcd_2000_Inf/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_2000_Inf/batch/condor_0.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_1.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_10.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_11.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_12.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_13.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_14.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_15.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_16.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_17.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_18.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_19.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_2.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_20.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_21.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_22.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_23.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_24.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_25.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_26.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_27.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_28.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_29.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_3.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_30.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_31.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_32.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_33.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_34.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_35.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_36.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_37.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_38.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_39.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_4.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_40.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_41.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_42.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_43.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_44.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_45.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_46.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_47.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_48.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_49.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_5.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_50.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_51.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_52.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_53.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_54.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_55.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_56.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_57.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_58.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_59.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_6.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_60.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_61.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_62.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_63.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_64.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_65.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_66.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_67.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_68.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_69.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_7.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_70.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_71.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_72.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_73.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_74.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_75.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_76.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_8.sub | 13 - test/ntuple_qcd_2000_Inf/batch/condor_9.sub | 13 - test/ntuple_qcd_2000_Inf/batch/nJobs.77 | 0 test/ntuple_qcd_2000_Inf/batch/sge_0.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_1.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_10.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_11.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_12.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_13.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_14.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_15.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_16.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_17.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_18.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_19.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_2.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_20.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_21.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_22.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_23.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_24.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_25.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_26.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_27.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_28.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_29.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_3.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_30.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_31.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_32.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_33.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_34.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_35.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_36.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_37.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_38.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_39.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_4.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_40.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_41.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_42.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_43.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_44.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_45.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_46.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_47.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_48.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_49.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_5.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_50.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_51.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_52.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_53.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_54.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_55.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_56.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_57.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_58.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_59.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_6.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_60.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_61.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_62.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_63.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_64.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_65.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_66.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_67.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_68.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_69.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_7.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_70.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_71.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_72.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_73.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_74.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_75.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_76.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_8.sh | 28 - test/ntuple_qcd_2000_Inf/batch/sge_9.sh | 28 - test/ntuple_qcd_2000_Inf/batchscript.sh | 51 -- test/ntuple_qcd_2000_Inf/condor.sub | 13 - test/ntuple_qcd_2000_Inf/helper | 1 - test/ntuple_qcd_2000_Inf/output | 1 - test/ntuple_qcd_2000_Inf/sge_sub.sh | 77 --- test/ntuple_qcd_200_300/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_200_300/batch/condor_0.sub | 13 - test/ntuple_qcd_200_300/batch/condor_1.sub | 13 - test/ntuple_qcd_200_300/batch/condor_10.sub | 13 - test/ntuple_qcd_200_300/batch/condor_100.sub | 13 - test/ntuple_qcd_200_300/batch/condor_101.sub | 13 - test/ntuple_qcd_200_300/batch/condor_102.sub | 13 - test/ntuple_qcd_200_300/batch/condor_103.sub | 13 - test/ntuple_qcd_200_300/batch/condor_104.sub | 13 - test/ntuple_qcd_200_300/batch/condor_105.sub | 13 - test/ntuple_qcd_200_300/batch/condor_106.sub | 13 - test/ntuple_qcd_200_300/batch/condor_107.sub | 13 - test/ntuple_qcd_200_300/batch/condor_108.sub | 13 - test/ntuple_qcd_200_300/batch/condor_109.sub | 13 - test/ntuple_qcd_200_300/batch/condor_11.sub | 13 - test/ntuple_qcd_200_300/batch/condor_110.sub | 13 - test/ntuple_qcd_200_300/batch/condor_111.sub | 13 - test/ntuple_qcd_200_300/batch/condor_112.sub | 13 - test/ntuple_qcd_200_300/batch/condor_113.sub | 13 - test/ntuple_qcd_200_300/batch/condor_114.sub | 13 - test/ntuple_qcd_200_300/batch/condor_115.sub | 13 - test/ntuple_qcd_200_300/batch/condor_116.sub | 13 - test/ntuple_qcd_200_300/batch/condor_117.sub | 13 - test/ntuple_qcd_200_300/batch/condor_118.sub | 13 - test/ntuple_qcd_200_300/batch/condor_119.sub | 13 - test/ntuple_qcd_200_300/batch/condor_12.sub | 13 - test/ntuple_qcd_200_300/batch/condor_120.sub | 13 - test/ntuple_qcd_200_300/batch/condor_121.sub | 13 - test/ntuple_qcd_200_300/batch/condor_122.sub | 13 - test/ntuple_qcd_200_300/batch/condor_123.sub | 13 - test/ntuple_qcd_200_300/batch/condor_124.sub | 13 - test/ntuple_qcd_200_300/batch/condor_125.sub | 13 - test/ntuple_qcd_200_300/batch/condor_126.sub | 13 - test/ntuple_qcd_200_300/batch/condor_127.sub | 13 - test/ntuple_qcd_200_300/batch/condor_128.sub | 13 - test/ntuple_qcd_200_300/batch/condor_129.sub | 13 - test/ntuple_qcd_200_300/batch/condor_13.sub | 13 - test/ntuple_qcd_200_300/batch/condor_130.sub | 13 - test/ntuple_qcd_200_300/batch/condor_131.sub | 13 - test/ntuple_qcd_200_300/batch/condor_132.sub | 13 - test/ntuple_qcd_200_300/batch/condor_133.sub | 13 - test/ntuple_qcd_200_300/batch/condor_134.sub | 13 - test/ntuple_qcd_200_300/batch/condor_135.sub | 13 - test/ntuple_qcd_200_300/batch/condor_136.sub | 13 - test/ntuple_qcd_200_300/batch/condor_137.sub | 13 - test/ntuple_qcd_200_300/batch/condor_138.sub | 13 - test/ntuple_qcd_200_300/batch/condor_139.sub | 13 - test/ntuple_qcd_200_300/batch/condor_14.sub | 13 - test/ntuple_qcd_200_300/batch/condor_140.sub | 13 - test/ntuple_qcd_200_300/batch/condor_141.sub | 13 - test/ntuple_qcd_200_300/batch/condor_142.sub | 13 - test/ntuple_qcd_200_300/batch/condor_143.sub | 13 - test/ntuple_qcd_200_300/batch/condor_144.sub | 13 - test/ntuple_qcd_200_300/batch/condor_145.sub | 13 - test/ntuple_qcd_200_300/batch/condor_146.sub | 13 - test/ntuple_qcd_200_300/batch/condor_147.sub | 13 - test/ntuple_qcd_200_300/batch/condor_148.sub | 13 - test/ntuple_qcd_200_300/batch/condor_149.sub | 13 - test/ntuple_qcd_200_300/batch/condor_15.sub | 13 - test/ntuple_qcd_200_300/batch/condor_150.sub | 13 - test/ntuple_qcd_200_300/batch/condor_151.sub | 13 - test/ntuple_qcd_200_300/batch/condor_152.sub | 13 - test/ntuple_qcd_200_300/batch/condor_153.sub | 13 - test/ntuple_qcd_200_300/batch/condor_154.sub | 13 - test/ntuple_qcd_200_300/batch/condor_155.sub | 13 - test/ntuple_qcd_200_300/batch/condor_156.sub | 13 - test/ntuple_qcd_200_300/batch/condor_157.sub | 13 - test/ntuple_qcd_200_300/batch/condor_158.sub | 13 - test/ntuple_qcd_200_300/batch/condor_159.sub | 13 - test/ntuple_qcd_200_300/batch/condor_16.sub | 13 - test/ntuple_qcd_200_300/batch/condor_160.sub | 13 - test/ntuple_qcd_200_300/batch/condor_161.sub | 13 - test/ntuple_qcd_200_300/batch/condor_162.sub | 13 - test/ntuple_qcd_200_300/batch/condor_163.sub | 13 - test/ntuple_qcd_200_300/batch/condor_164.sub | 13 - test/ntuple_qcd_200_300/batch/condor_165.sub | 13 - test/ntuple_qcd_200_300/batch/condor_166.sub | 13 - test/ntuple_qcd_200_300/batch/condor_167.sub | 13 - test/ntuple_qcd_200_300/batch/condor_168.sub | 13 - test/ntuple_qcd_200_300/batch/condor_169.sub | 13 - test/ntuple_qcd_200_300/batch/condor_17.sub | 13 - test/ntuple_qcd_200_300/batch/condor_170.sub | 13 - test/ntuple_qcd_200_300/batch/condor_171.sub | 13 - test/ntuple_qcd_200_300/batch/condor_172.sub | 13 - test/ntuple_qcd_200_300/batch/condor_173.sub | 13 - test/ntuple_qcd_200_300/batch/condor_174.sub | 13 - test/ntuple_qcd_200_300/batch/condor_175.sub | 13 - test/ntuple_qcd_200_300/batch/condor_176.sub | 13 - test/ntuple_qcd_200_300/batch/condor_177.sub | 13 - test/ntuple_qcd_200_300/batch/condor_178.sub | 13 - test/ntuple_qcd_200_300/batch/condor_179.sub | 13 - test/ntuple_qcd_200_300/batch/condor_18.sub | 13 - test/ntuple_qcd_200_300/batch/condor_180.sub | 13 - test/ntuple_qcd_200_300/batch/condor_181.sub | 13 - test/ntuple_qcd_200_300/batch/condor_182.sub | 13 - test/ntuple_qcd_200_300/batch/condor_183.sub | 13 - test/ntuple_qcd_200_300/batch/condor_184.sub | 13 - test/ntuple_qcd_200_300/batch/condor_185.sub | 13 - test/ntuple_qcd_200_300/batch/condor_186.sub | 13 - test/ntuple_qcd_200_300/batch/condor_187.sub | 13 - test/ntuple_qcd_200_300/batch/condor_188.sub | 13 - test/ntuple_qcd_200_300/batch/condor_189.sub | 13 - test/ntuple_qcd_200_300/batch/condor_19.sub | 13 - test/ntuple_qcd_200_300/batch/condor_190.sub | 13 - test/ntuple_qcd_200_300/batch/condor_191.sub | 13 - test/ntuple_qcd_200_300/batch/condor_192.sub | 13 - test/ntuple_qcd_200_300/batch/condor_193.sub | 13 - test/ntuple_qcd_200_300/batch/condor_194.sub | 13 - test/ntuple_qcd_200_300/batch/condor_195.sub | 13 - test/ntuple_qcd_200_300/batch/condor_196.sub | 13 - test/ntuple_qcd_200_300/batch/condor_197.sub | 13 - test/ntuple_qcd_200_300/batch/condor_198.sub | 13 - test/ntuple_qcd_200_300/batch/condor_199.sub | 13 - test/ntuple_qcd_200_300/batch/condor_2.sub | 13 - test/ntuple_qcd_200_300/batch/condor_20.sub | 13 - test/ntuple_qcd_200_300/batch/condor_200.sub | 13 - test/ntuple_qcd_200_300/batch/condor_201.sub | 13 - test/ntuple_qcd_200_300/batch/condor_202.sub | 13 - test/ntuple_qcd_200_300/batch/condor_203.sub | 13 - test/ntuple_qcd_200_300/batch/condor_204.sub | 13 - test/ntuple_qcd_200_300/batch/condor_205.sub | 13 - test/ntuple_qcd_200_300/batch/condor_206.sub | 13 - test/ntuple_qcd_200_300/batch/condor_207.sub | 13 - test/ntuple_qcd_200_300/batch/condor_208.sub | 13 - test/ntuple_qcd_200_300/batch/condor_209.sub | 13 - test/ntuple_qcd_200_300/batch/condor_21.sub | 13 - test/ntuple_qcd_200_300/batch/condor_210.sub | 13 - test/ntuple_qcd_200_300/batch/condor_211.sub | 13 - test/ntuple_qcd_200_300/batch/condor_212.sub | 13 - test/ntuple_qcd_200_300/batch/condor_213.sub | 13 - test/ntuple_qcd_200_300/batch/condor_214.sub | 13 - test/ntuple_qcd_200_300/batch/condor_215.sub | 13 - test/ntuple_qcd_200_300/batch/condor_216.sub | 13 - test/ntuple_qcd_200_300/batch/condor_217.sub | 13 - test/ntuple_qcd_200_300/batch/condor_218.sub | 13 - test/ntuple_qcd_200_300/batch/condor_219.sub | 13 - test/ntuple_qcd_200_300/batch/condor_22.sub | 13 - test/ntuple_qcd_200_300/batch/condor_220.sub | 13 - test/ntuple_qcd_200_300/batch/condor_221.sub | 13 - test/ntuple_qcd_200_300/batch/condor_222.sub | 13 - test/ntuple_qcd_200_300/batch/condor_223.sub | 13 - test/ntuple_qcd_200_300/batch/condor_224.sub | 13 - test/ntuple_qcd_200_300/batch/condor_225.sub | 13 - test/ntuple_qcd_200_300/batch/condor_226.sub | 13 - test/ntuple_qcd_200_300/batch/condor_227.sub | 13 - test/ntuple_qcd_200_300/batch/condor_228.sub | 13 - test/ntuple_qcd_200_300/batch/condor_229.sub | 13 - test/ntuple_qcd_200_300/batch/condor_23.sub | 13 - test/ntuple_qcd_200_300/batch/condor_230.sub | 13 - test/ntuple_qcd_200_300/batch/condor_231.sub | 13 - test/ntuple_qcd_200_300/batch/condor_232.sub | 13 - test/ntuple_qcd_200_300/batch/condor_233.sub | 13 - test/ntuple_qcd_200_300/batch/condor_234.sub | 13 - test/ntuple_qcd_200_300/batch/condor_235.sub | 13 - test/ntuple_qcd_200_300/batch/condor_236.sub | 13 - test/ntuple_qcd_200_300/batch/condor_237.sub | 13 - test/ntuple_qcd_200_300/batch/condor_238.sub | 13 - test/ntuple_qcd_200_300/batch/condor_239.sub | 13 - test/ntuple_qcd_200_300/batch/condor_24.sub | 13 - test/ntuple_qcd_200_300/batch/condor_240.sub | 13 - test/ntuple_qcd_200_300/batch/condor_241.sub | 13 - test/ntuple_qcd_200_300/batch/condor_242.sub | 13 - test/ntuple_qcd_200_300/batch/condor_243.sub | 13 - test/ntuple_qcd_200_300/batch/condor_244.sub | 13 - test/ntuple_qcd_200_300/batch/condor_245.sub | 13 - test/ntuple_qcd_200_300/batch/condor_246.sub | 13 - test/ntuple_qcd_200_300/batch/condor_247.sub | 13 - test/ntuple_qcd_200_300/batch/condor_248.sub | 13 - test/ntuple_qcd_200_300/batch/condor_249.sub | 13 - test/ntuple_qcd_200_300/batch/condor_25.sub | 13 - test/ntuple_qcd_200_300/batch/condor_250.sub | 13 - test/ntuple_qcd_200_300/batch/condor_251.sub | 13 - test/ntuple_qcd_200_300/batch/condor_252.sub | 13 - test/ntuple_qcd_200_300/batch/condor_253.sub | 13 - test/ntuple_qcd_200_300/batch/condor_254.sub | 13 - test/ntuple_qcd_200_300/batch/condor_255.sub | 13 - test/ntuple_qcd_200_300/batch/condor_256.sub | 13 - test/ntuple_qcd_200_300/batch/condor_257.sub | 13 - test/ntuple_qcd_200_300/batch/condor_258.sub | 13 - test/ntuple_qcd_200_300/batch/condor_259.sub | 13 - test/ntuple_qcd_200_300/batch/condor_26.sub | 13 - test/ntuple_qcd_200_300/batch/condor_260.sub | 13 - test/ntuple_qcd_200_300/batch/condor_261.sub | 13 - test/ntuple_qcd_200_300/batch/condor_262.sub | 13 - test/ntuple_qcd_200_300/batch/condor_263.sub | 13 - test/ntuple_qcd_200_300/batch/condor_264.sub | 13 - test/ntuple_qcd_200_300/batch/condor_265.sub | 13 - test/ntuple_qcd_200_300/batch/condor_266.sub | 13 - test/ntuple_qcd_200_300/batch/condor_267.sub | 13 - test/ntuple_qcd_200_300/batch/condor_268.sub | 13 - test/ntuple_qcd_200_300/batch/condor_269.sub | 13 - test/ntuple_qcd_200_300/batch/condor_27.sub | 13 - test/ntuple_qcd_200_300/batch/condor_270.sub | 13 - test/ntuple_qcd_200_300/batch/condor_271.sub | 13 - test/ntuple_qcd_200_300/batch/condor_272.sub | 13 - test/ntuple_qcd_200_300/batch/condor_273.sub | 13 - test/ntuple_qcd_200_300/batch/condor_274.sub | 13 - test/ntuple_qcd_200_300/batch/condor_275.sub | 13 - test/ntuple_qcd_200_300/batch/condor_276.sub | 13 - test/ntuple_qcd_200_300/batch/condor_277.sub | 13 - test/ntuple_qcd_200_300/batch/condor_278.sub | 13 - test/ntuple_qcd_200_300/batch/condor_279.sub | 13 - test/ntuple_qcd_200_300/batch/condor_28.sub | 13 - test/ntuple_qcd_200_300/batch/condor_280.sub | 13 - test/ntuple_qcd_200_300/batch/condor_281.sub | 13 - test/ntuple_qcd_200_300/batch/condor_282.sub | 13 - test/ntuple_qcd_200_300/batch/condor_283.sub | 13 - test/ntuple_qcd_200_300/batch/condor_284.sub | 13 - test/ntuple_qcd_200_300/batch/condor_285.sub | 13 - test/ntuple_qcd_200_300/batch/condor_286.sub | 13 - test/ntuple_qcd_200_300/batch/condor_287.sub | 13 - test/ntuple_qcd_200_300/batch/condor_288.sub | 13 - test/ntuple_qcd_200_300/batch/condor_289.sub | 13 - test/ntuple_qcd_200_300/batch/condor_29.sub | 13 - test/ntuple_qcd_200_300/batch/condor_290.sub | 13 - test/ntuple_qcd_200_300/batch/condor_291.sub | 13 - test/ntuple_qcd_200_300/batch/condor_292.sub | 13 - test/ntuple_qcd_200_300/batch/condor_293.sub | 13 - test/ntuple_qcd_200_300/batch/condor_294.sub | 13 - test/ntuple_qcd_200_300/batch/condor_295.sub | 13 - test/ntuple_qcd_200_300/batch/condor_296.sub | 13 - test/ntuple_qcd_200_300/batch/condor_297.sub | 13 - test/ntuple_qcd_200_300/batch/condor_298.sub | 13 - test/ntuple_qcd_200_300/batch/condor_299.sub | 13 - test/ntuple_qcd_200_300/batch/condor_3.sub | 13 - test/ntuple_qcd_200_300/batch/condor_30.sub | 13 - test/ntuple_qcd_200_300/batch/condor_300.sub | 13 - test/ntuple_qcd_200_300/batch/condor_301.sub | 13 - test/ntuple_qcd_200_300/batch/condor_302.sub | 13 - test/ntuple_qcd_200_300/batch/condor_303.sub | 13 - test/ntuple_qcd_200_300/batch/condor_304.sub | 13 - test/ntuple_qcd_200_300/batch/condor_305.sub | 13 - test/ntuple_qcd_200_300/batch/condor_306.sub | 13 - test/ntuple_qcd_200_300/batch/condor_307.sub | 13 - test/ntuple_qcd_200_300/batch/condor_308.sub | 13 - test/ntuple_qcd_200_300/batch/condor_309.sub | 13 - test/ntuple_qcd_200_300/batch/condor_31.sub | 13 - test/ntuple_qcd_200_300/batch/condor_310.sub | 13 - test/ntuple_qcd_200_300/batch/condor_311.sub | 13 - test/ntuple_qcd_200_300/batch/condor_312.sub | 13 - test/ntuple_qcd_200_300/batch/condor_313.sub | 13 - test/ntuple_qcd_200_300/batch/condor_314.sub | 13 - test/ntuple_qcd_200_300/batch/condor_315.sub | 13 - test/ntuple_qcd_200_300/batch/condor_316.sub | 13 - test/ntuple_qcd_200_300/batch/condor_317.sub | 13 - test/ntuple_qcd_200_300/batch/condor_318.sub | 13 - test/ntuple_qcd_200_300/batch/condor_319.sub | 13 - test/ntuple_qcd_200_300/batch/condor_32.sub | 13 - test/ntuple_qcd_200_300/batch/condor_320.sub | 13 - test/ntuple_qcd_200_300/batch/condor_321.sub | 13 - test/ntuple_qcd_200_300/batch/condor_322.sub | 13 - test/ntuple_qcd_200_300/batch/condor_323.sub | 13 - test/ntuple_qcd_200_300/batch/condor_324.sub | 13 - test/ntuple_qcd_200_300/batch/condor_325.sub | 13 - test/ntuple_qcd_200_300/batch/condor_326.sub | 13 - test/ntuple_qcd_200_300/batch/condor_327.sub | 13 - test/ntuple_qcd_200_300/batch/condor_328.sub | 13 - test/ntuple_qcd_200_300/batch/condor_329.sub | 13 - test/ntuple_qcd_200_300/batch/condor_33.sub | 13 - test/ntuple_qcd_200_300/batch/condor_330.sub | 13 - test/ntuple_qcd_200_300/batch/condor_331.sub | 13 - test/ntuple_qcd_200_300/batch/condor_332.sub | 13 - test/ntuple_qcd_200_300/batch/condor_333.sub | 13 - test/ntuple_qcd_200_300/batch/condor_334.sub | 13 - test/ntuple_qcd_200_300/batch/condor_335.sub | 13 - test/ntuple_qcd_200_300/batch/condor_336.sub | 13 - test/ntuple_qcd_200_300/batch/condor_337.sub | 13 - test/ntuple_qcd_200_300/batch/condor_338.sub | 13 - test/ntuple_qcd_200_300/batch/condor_339.sub | 13 - test/ntuple_qcd_200_300/batch/condor_34.sub | 13 - test/ntuple_qcd_200_300/batch/condor_340.sub | 13 - test/ntuple_qcd_200_300/batch/condor_341.sub | 13 - test/ntuple_qcd_200_300/batch/condor_342.sub | 13 - test/ntuple_qcd_200_300/batch/condor_343.sub | 13 - test/ntuple_qcd_200_300/batch/condor_344.sub | 13 - test/ntuple_qcd_200_300/batch/condor_345.sub | 13 - test/ntuple_qcd_200_300/batch/condor_346.sub | 13 - test/ntuple_qcd_200_300/batch/condor_347.sub | 13 - test/ntuple_qcd_200_300/batch/condor_348.sub | 13 - test/ntuple_qcd_200_300/batch/condor_349.sub | 13 - test/ntuple_qcd_200_300/batch/condor_35.sub | 13 - test/ntuple_qcd_200_300/batch/condor_350.sub | 13 - test/ntuple_qcd_200_300/batch/condor_351.sub | 13 - test/ntuple_qcd_200_300/batch/condor_352.sub | 13 - test/ntuple_qcd_200_300/batch/condor_353.sub | 13 - test/ntuple_qcd_200_300/batch/condor_354.sub | 13 - test/ntuple_qcd_200_300/batch/condor_355.sub | 13 - test/ntuple_qcd_200_300/batch/condor_356.sub | 13 - test/ntuple_qcd_200_300/batch/condor_357.sub | 13 - test/ntuple_qcd_200_300/batch/condor_358.sub | 13 - test/ntuple_qcd_200_300/batch/condor_359.sub | 13 - test/ntuple_qcd_200_300/batch/condor_36.sub | 13 - test/ntuple_qcd_200_300/batch/condor_360.sub | 13 - test/ntuple_qcd_200_300/batch/condor_361.sub | 13 - test/ntuple_qcd_200_300/batch/condor_362.sub | 13 - test/ntuple_qcd_200_300/batch/condor_363.sub | 13 - test/ntuple_qcd_200_300/batch/condor_364.sub | 13 - test/ntuple_qcd_200_300/batch/condor_365.sub | 13 - test/ntuple_qcd_200_300/batch/condor_366.sub | 13 - test/ntuple_qcd_200_300/batch/condor_367.sub | 13 - test/ntuple_qcd_200_300/batch/condor_368.sub | 13 - test/ntuple_qcd_200_300/batch/condor_369.sub | 13 - test/ntuple_qcd_200_300/batch/condor_37.sub | 13 - test/ntuple_qcd_200_300/batch/condor_370.sub | 13 - test/ntuple_qcd_200_300/batch/condor_371.sub | 13 - test/ntuple_qcd_200_300/batch/condor_372.sub | 13 - test/ntuple_qcd_200_300/batch/condor_373.sub | 13 - test/ntuple_qcd_200_300/batch/condor_374.sub | 13 - test/ntuple_qcd_200_300/batch/condor_375.sub | 13 - test/ntuple_qcd_200_300/batch/condor_376.sub | 13 - test/ntuple_qcd_200_300/batch/condor_377.sub | 13 - test/ntuple_qcd_200_300/batch/condor_378.sub | 13 - test/ntuple_qcd_200_300/batch/condor_379.sub | 13 - test/ntuple_qcd_200_300/batch/condor_38.sub | 13 - test/ntuple_qcd_200_300/batch/condor_380.sub | 13 - test/ntuple_qcd_200_300/batch/condor_381.sub | 13 - test/ntuple_qcd_200_300/batch/condor_382.sub | 13 - test/ntuple_qcd_200_300/batch/condor_383.sub | 13 - test/ntuple_qcd_200_300/batch/condor_384.sub | 13 - test/ntuple_qcd_200_300/batch/condor_385.sub | 13 - test/ntuple_qcd_200_300/batch/condor_386.sub | 13 - test/ntuple_qcd_200_300/batch/condor_387.sub | 13 - test/ntuple_qcd_200_300/batch/condor_388.sub | 13 - test/ntuple_qcd_200_300/batch/condor_389.sub | 13 - test/ntuple_qcd_200_300/batch/condor_39.sub | 13 - test/ntuple_qcd_200_300/batch/condor_390.sub | 13 - test/ntuple_qcd_200_300/batch/condor_391.sub | 13 - test/ntuple_qcd_200_300/batch/condor_392.sub | 13 - test/ntuple_qcd_200_300/batch/condor_393.sub | 13 - test/ntuple_qcd_200_300/batch/condor_394.sub | 13 - test/ntuple_qcd_200_300/batch/condor_395.sub | 13 - test/ntuple_qcd_200_300/batch/condor_396.sub | 13 - test/ntuple_qcd_200_300/batch/condor_397.sub | 13 - test/ntuple_qcd_200_300/batch/condor_398.sub | 13 - test/ntuple_qcd_200_300/batch/condor_399.sub | 13 - test/ntuple_qcd_200_300/batch/condor_4.sub | 13 - test/ntuple_qcd_200_300/batch/condor_40.sub | 13 - test/ntuple_qcd_200_300/batch/condor_400.sub | 13 - test/ntuple_qcd_200_300/batch/condor_401.sub | 13 - test/ntuple_qcd_200_300/batch/condor_402.sub | 13 - test/ntuple_qcd_200_300/batch/condor_403.sub | 13 - test/ntuple_qcd_200_300/batch/condor_404.sub | 13 - test/ntuple_qcd_200_300/batch/condor_405.sub | 13 - test/ntuple_qcd_200_300/batch/condor_406.sub | 13 - test/ntuple_qcd_200_300/batch/condor_407.sub | 13 - test/ntuple_qcd_200_300/batch/condor_408.sub | 13 - test/ntuple_qcd_200_300/batch/condor_409.sub | 13 - test/ntuple_qcd_200_300/batch/condor_41.sub | 13 - test/ntuple_qcd_200_300/batch/condor_410.sub | 13 - test/ntuple_qcd_200_300/batch/condor_411.sub | 13 - test/ntuple_qcd_200_300/batch/condor_412.sub | 13 - test/ntuple_qcd_200_300/batch/condor_413.sub | 13 - test/ntuple_qcd_200_300/batch/condor_414.sub | 13 - test/ntuple_qcd_200_300/batch/condor_415.sub | 13 - test/ntuple_qcd_200_300/batch/condor_416.sub | 13 - test/ntuple_qcd_200_300/batch/condor_417.sub | 13 - test/ntuple_qcd_200_300/batch/condor_418.sub | 13 - test/ntuple_qcd_200_300/batch/condor_419.sub | 13 - test/ntuple_qcd_200_300/batch/condor_42.sub | 13 - test/ntuple_qcd_200_300/batch/condor_420.sub | 13 - test/ntuple_qcd_200_300/batch/condor_421.sub | 13 - test/ntuple_qcd_200_300/batch/condor_422.sub | 13 - test/ntuple_qcd_200_300/batch/condor_423.sub | 13 - test/ntuple_qcd_200_300/batch/condor_424.sub | 13 - test/ntuple_qcd_200_300/batch/condor_425.sub | 13 - test/ntuple_qcd_200_300/batch/condor_426.sub | 13 - test/ntuple_qcd_200_300/batch/condor_427.sub | 13 - test/ntuple_qcd_200_300/batch/condor_428.sub | 13 - test/ntuple_qcd_200_300/batch/condor_429.sub | 13 - test/ntuple_qcd_200_300/batch/condor_43.sub | 13 - test/ntuple_qcd_200_300/batch/condor_430.sub | 13 - test/ntuple_qcd_200_300/batch/condor_431.sub | 13 - test/ntuple_qcd_200_300/batch/condor_432.sub | 13 - test/ntuple_qcd_200_300/batch/condor_433.sub | 13 - test/ntuple_qcd_200_300/batch/condor_434.sub | 13 - test/ntuple_qcd_200_300/batch/condor_435.sub | 13 - test/ntuple_qcd_200_300/batch/condor_436.sub | 13 - test/ntuple_qcd_200_300/batch/condor_437.sub | 13 - test/ntuple_qcd_200_300/batch/condor_438.sub | 13 - test/ntuple_qcd_200_300/batch/condor_439.sub | 13 - test/ntuple_qcd_200_300/batch/condor_44.sub | 13 - test/ntuple_qcd_200_300/batch/condor_440.sub | 13 - test/ntuple_qcd_200_300/batch/condor_441.sub | 13 - test/ntuple_qcd_200_300/batch/condor_442.sub | 13 - test/ntuple_qcd_200_300/batch/condor_443.sub | 13 - test/ntuple_qcd_200_300/batch/condor_444.sub | 13 - test/ntuple_qcd_200_300/batch/condor_445.sub | 13 - test/ntuple_qcd_200_300/batch/condor_446.sub | 13 - test/ntuple_qcd_200_300/batch/condor_447.sub | 13 - test/ntuple_qcd_200_300/batch/condor_448.sub | 13 - test/ntuple_qcd_200_300/batch/condor_449.sub | 13 - test/ntuple_qcd_200_300/batch/condor_45.sub | 13 - test/ntuple_qcd_200_300/batch/condor_450.sub | 13 - test/ntuple_qcd_200_300/batch/condor_451.sub | 13 - test/ntuple_qcd_200_300/batch/condor_452.sub | 13 - test/ntuple_qcd_200_300/batch/condor_453.sub | 13 - test/ntuple_qcd_200_300/batch/condor_454.sub | 13 - test/ntuple_qcd_200_300/batch/condor_455.sub | 13 - test/ntuple_qcd_200_300/batch/condor_456.sub | 13 - test/ntuple_qcd_200_300/batch/condor_457.sub | 13 - test/ntuple_qcd_200_300/batch/condor_458.sub | 13 - test/ntuple_qcd_200_300/batch/condor_459.sub | 13 - test/ntuple_qcd_200_300/batch/condor_46.sub | 13 - test/ntuple_qcd_200_300/batch/condor_460.sub | 13 - test/ntuple_qcd_200_300/batch/condor_461.sub | 13 - test/ntuple_qcd_200_300/batch/condor_462.sub | 13 - test/ntuple_qcd_200_300/batch/condor_463.sub | 13 - test/ntuple_qcd_200_300/batch/condor_464.sub | 13 - test/ntuple_qcd_200_300/batch/condor_465.sub | 13 - test/ntuple_qcd_200_300/batch/condor_466.sub | 13 - test/ntuple_qcd_200_300/batch/condor_467.sub | 13 - test/ntuple_qcd_200_300/batch/condor_468.sub | 13 - test/ntuple_qcd_200_300/batch/condor_469.sub | 13 - test/ntuple_qcd_200_300/batch/condor_47.sub | 13 - test/ntuple_qcd_200_300/batch/condor_470.sub | 13 - test/ntuple_qcd_200_300/batch/condor_471.sub | 13 - test/ntuple_qcd_200_300/batch/condor_472.sub | 13 - test/ntuple_qcd_200_300/batch/condor_473.sub | 13 - test/ntuple_qcd_200_300/batch/condor_474.sub | 13 - test/ntuple_qcd_200_300/batch/condor_475.sub | 13 - test/ntuple_qcd_200_300/batch/condor_476.sub | 13 - test/ntuple_qcd_200_300/batch/condor_477.sub | 13 - test/ntuple_qcd_200_300/batch/condor_478.sub | 13 - test/ntuple_qcd_200_300/batch/condor_479.sub | 13 - test/ntuple_qcd_200_300/batch/condor_48.sub | 13 - test/ntuple_qcd_200_300/batch/condor_480.sub | 13 - test/ntuple_qcd_200_300/batch/condor_481.sub | 13 - test/ntuple_qcd_200_300/batch/condor_482.sub | 13 - test/ntuple_qcd_200_300/batch/condor_483.sub | 13 - test/ntuple_qcd_200_300/batch/condor_484.sub | 13 - test/ntuple_qcd_200_300/batch/condor_485.sub | 13 - test/ntuple_qcd_200_300/batch/condor_486.sub | 13 - test/ntuple_qcd_200_300/batch/condor_487.sub | 13 - test/ntuple_qcd_200_300/batch/condor_488.sub | 13 - test/ntuple_qcd_200_300/batch/condor_489.sub | 13 - test/ntuple_qcd_200_300/batch/condor_49.sub | 13 - test/ntuple_qcd_200_300/batch/condor_490.sub | 13 - test/ntuple_qcd_200_300/batch/condor_491.sub | 13 - test/ntuple_qcd_200_300/batch/condor_492.sub | 13 - test/ntuple_qcd_200_300/batch/condor_493.sub | 13 - test/ntuple_qcd_200_300/batch/condor_494.sub | 13 - test/ntuple_qcd_200_300/batch/condor_495.sub | 13 - test/ntuple_qcd_200_300/batch/condor_496.sub | 13 - test/ntuple_qcd_200_300/batch/condor_497.sub | 13 - test/ntuple_qcd_200_300/batch/condor_498.sub | 13 - test/ntuple_qcd_200_300/batch/condor_499.sub | 13 - test/ntuple_qcd_200_300/batch/condor_5.sub | 13 - test/ntuple_qcd_200_300/batch/condor_50.sub | 13 - test/ntuple_qcd_200_300/batch/condor_51.sub | 13 - test/ntuple_qcd_200_300/batch/condor_52.sub | 13 - test/ntuple_qcd_200_300/batch/condor_53.sub | 13 - test/ntuple_qcd_200_300/batch/condor_54.sub | 13 - test/ntuple_qcd_200_300/batch/condor_55.sub | 13 - test/ntuple_qcd_200_300/batch/condor_56.sub | 13 - test/ntuple_qcd_200_300/batch/condor_57.sub | 13 - test/ntuple_qcd_200_300/batch/condor_58.sub | 13 - test/ntuple_qcd_200_300/batch/condor_59.sub | 13 - test/ntuple_qcd_200_300/batch/condor_6.sub | 13 - test/ntuple_qcd_200_300/batch/condor_60.sub | 13 - test/ntuple_qcd_200_300/batch/condor_61.sub | 13 - test/ntuple_qcd_200_300/batch/condor_62.sub | 13 - test/ntuple_qcd_200_300/batch/condor_63.sub | 13 - test/ntuple_qcd_200_300/batch/condor_64.sub | 13 - test/ntuple_qcd_200_300/batch/condor_65.sub | 13 - test/ntuple_qcd_200_300/batch/condor_66.sub | 13 - test/ntuple_qcd_200_300/batch/condor_67.sub | 13 - test/ntuple_qcd_200_300/batch/condor_68.sub | 13 - test/ntuple_qcd_200_300/batch/condor_69.sub | 13 - test/ntuple_qcd_200_300/batch/condor_7.sub | 13 - test/ntuple_qcd_200_300/batch/condor_70.sub | 13 - test/ntuple_qcd_200_300/batch/condor_71.sub | 13 - test/ntuple_qcd_200_300/batch/condor_72.sub | 13 - test/ntuple_qcd_200_300/batch/condor_73.sub | 13 - test/ntuple_qcd_200_300/batch/condor_74.sub | 13 - test/ntuple_qcd_200_300/batch/condor_75.sub | 13 - test/ntuple_qcd_200_300/batch/condor_76.sub | 13 - test/ntuple_qcd_200_300/batch/condor_77.sub | 13 - test/ntuple_qcd_200_300/batch/condor_78.sub | 13 - test/ntuple_qcd_200_300/batch/condor_79.sub | 13 - test/ntuple_qcd_200_300/batch/condor_8.sub | 13 - test/ntuple_qcd_200_300/batch/condor_80.sub | 13 - test/ntuple_qcd_200_300/batch/condor_81.sub | 13 - test/ntuple_qcd_200_300/batch/condor_82.sub | 13 - test/ntuple_qcd_200_300/batch/condor_83.sub | 13 - test/ntuple_qcd_200_300/batch/condor_84.sub | 13 - test/ntuple_qcd_200_300/batch/condor_85.sub | 13 - test/ntuple_qcd_200_300/batch/condor_86.sub | 13 - test/ntuple_qcd_200_300/batch/condor_87.sub | 13 - test/ntuple_qcd_200_300/batch/condor_88.sub | 13 - test/ntuple_qcd_200_300/batch/condor_89.sub | 13 - test/ntuple_qcd_200_300/batch/condor_9.sub | 13 - test/ntuple_qcd_200_300/batch/condor_90.sub | 13 - test/ntuple_qcd_200_300/batch/condor_91.sub | 13 - test/ntuple_qcd_200_300/batch/condor_92.sub | 13 - test/ntuple_qcd_200_300/batch/condor_93.sub | 13 - test/ntuple_qcd_200_300/batch/condor_94.sub | 13 - test/ntuple_qcd_200_300/batch/condor_95.sub | 13 - test/ntuple_qcd_200_300/batch/condor_96.sub | 13 - test/ntuple_qcd_200_300/batch/condor_97.sub | 13 - test/ntuple_qcd_200_300/batch/condor_98.sub | 13 - test/ntuple_qcd_200_300/batch/condor_99.sub | 13 - test/ntuple_qcd_200_300/batch/nJobs.500 | 0 test/ntuple_qcd_200_300/batch/sge_0.sh | 28 - test/ntuple_qcd_200_300/batch/sge_1.sh | 28 - test/ntuple_qcd_200_300/batch/sge_10.sh | 28 - test/ntuple_qcd_200_300/batch/sge_100.sh | 28 - test/ntuple_qcd_200_300/batch/sge_101.sh | 28 - test/ntuple_qcd_200_300/batch/sge_102.sh | 28 - test/ntuple_qcd_200_300/batch/sge_103.sh | 28 - test/ntuple_qcd_200_300/batch/sge_104.sh | 28 - test/ntuple_qcd_200_300/batch/sge_105.sh | 28 - test/ntuple_qcd_200_300/batch/sge_106.sh | 28 - test/ntuple_qcd_200_300/batch/sge_107.sh | 28 - test/ntuple_qcd_200_300/batch/sge_108.sh | 28 - test/ntuple_qcd_200_300/batch/sge_109.sh | 28 - test/ntuple_qcd_200_300/batch/sge_11.sh | 28 - test/ntuple_qcd_200_300/batch/sge_110.sh | 28 - test/ntuple_qcd_200_300/batch/sge_111.sh | 28 - test/ntuple_qcd_200_300/batch/sge_112.sh | 28 - test/ntuple_qcd_200_300/batch/sge_113.sh | 28 - test/ntuple_qcd_200_300/batch/sge_114.sh | 28 - test/ntuple_qcd_200_300/batch/sge_115.sh | 28 - test/ntuple_qcd_200_300/batch/sge_116.sh | 28 - test/ntuple_qcd_200_300/batch/sge_117.sh | 28 - test/ntuple_qcd_200_300/batch/sge_118.sh | 28 - test/ntuple_qcd_200_300/batch/sge_119.sh | 28 - test/ntuple_qcd_200_300/batch/sge_12.sh | 28 - test/ntuple_qcd_200_300/batch/sge_120.sh | 28 - test/ntuple_qcd_200_300/batch/sge_121.sh | 28 - test/ntuple_qcd_200_300/batch/sge_122.sh | 28 - test/ntuple_qcd_200_300/batch/sge_123.sh | 28 - test/ntuple_qcd_200_300/batch/sge_124.sh | 28 - test/ntuple_qcd_200_300/batch/sge_125.sh | 28 - test/ntuple_qcd_200_300/batch/sge_126.sh | 28 - test/ntuple_qcd_200_300/batch/sge_127.sh | 28 - test/ntuple_qcd_200_300/batch/sge_128.sh | 28 - test/ntuple_qcd_200_300/batch/sge_129.sh | 28 - test/ntuple_qcd_200_300/batch/sge_13.sh | 28 - test/ntuple_qcd_200_300/batch/sge_130.sh | 28 - test/ntuple_qcd_200_300/batch/sge_131.sh | 28 - test/ntuple_qcd_200_300/batch/sge_132.sh | 28 - test/ntuple_qcd_200_300/batch/sge_133.sh | 28 - test/ntuple_qcd_200_300/batch/sge_134.sh | 28 - test/ntuple_qcd_200_300/batch/sge_135.sh | 28 - test/ntuple_qcd_200_300/batch/sge_136.sh | 28 - test/ntuple_qcd_200_300/batch/sge_137.sh | 28 - test/ntuple_qcd_200_300/batch/sge_138.sh | 28 - test/ntuple_qcd_200_300/batch/sge_139.sh | 28 - test/ntuple_qcd_200_300/batch/sge_14.sh | 28 - test/ntuple_qcd_200_300/batch/sge_140.sh | 28 - test/ntuple_qcd_200_300/batch/sge_141.sh | 28 - test/ntuple_qcd_200_300/batch/sge_142.sh | 28 - test/ntuple_qcd_200_300/batch/sge_143.sh | 28 - test/ntuple_qcd_200_300/batch/sge_144.sh | 28 - test/ntuple_qcd_200_300/batch/sge_145.sh | 28 - test/ntuple_qcd_200_300/batch/sge_146.sh | 28 - test/ntuple_qcd_200_300/batch/sge_147.sh | 28 - test/ntuple_qcd_200_300/batch/sge_148.sh | 28 - test/ntuple_qcd_200_300/batch/sge_149.sh | 28 - test/ntuple_qcd_200_300/batch/sge_15.sh | 28 - test/ntuple_qcd_200_300/batch/sge_150.sh | 28 - test/ntuple_qcd_200_300/batch/sge_151.sh | 28 - test/ntuple_qcd_200_300/batch/sge_152.sh | 28 - test/ntuple_qcd_200_300/batch/sge_153.sh | 28 - test/ntuple_qcd_200_300/batch/sge_154.sh | 28 - test/ntuple_qcd_200_300/batch/sge_155.sh | 28 - test/ntuple_qcd_200_300/batch/sge_156.sh | 28 - test/ntuple_qcd_200_300/batch/sge_157.sh | 28 - test/ntuple_qcd_200_300/batch/sge_158.sh | 28 - test/ntuple_qcd_200_300/batch/sge_159.sh | 28 - test/ntuple_qcd_200_300/batch/sge_16.sh | 28 - test/ntuple_qcd_200_300/batch/sge_160.sh | 28 - test/ntuple_qcd_200_300/batch/sge_161.sh | 28 - test/ntuple_qcd_200_300/batch/sge_162.sh | 28 - test/ntuple_qcd_200_300/batch/sge_163.sh | 28 - test/ntuple_qcd_200_300/batch/sge_164.sh | 28 - test/ntuple_qcd_200_300/batch/sge_165.sh | 28 - test/ntuple_qcd_200_300/batch/sge_166.sh | 28 - test/ntuple_qcd_200_300/batch/sge_167.sh | 28 - test/ntuple_qcd_200_300/batch/sge_168.sh | 28 - test/ntuple_qcd_200_300/batch/sge_169.sh | 28 - test/ntuple_qcd_200_300/batch/sge_17.sh | 28 - test/ntuple_qcd_200_300/batch/sge_170.sh | 28 - test/ntuple_qcd_200_300/batch/sge_171.sh | 28 - test/ntuple_qcd_200_300/batch/sge_172.sh | 28 - test/ntuple_qcd_200_300/batch/sge_173.sh | 28 - test/ntuple_qcd_200_300/batch/sge_174.sh | 28 - test/ntuple_qcd_200_300/batch/sge_175.sh | 28 - test/ntuple_qcd_200_300/batch/sge_176.sh | 28 - test/ntuple_qcd_200_300/batch/sge_177.sh | 28 - test/ntuple_qcd_200_300/batch/sge_178.sh | 28 - test/ntuple_qcd_200_300/batch/sge_179.sh | 28 - test/ntuple_qcd_200_300/batch/sge_18.sh | 28 - test/ntuple_qcd_200_300/batch/sge_180.sh | 28 - test/ntuple_qcd_200_300/batch/sge_181.sh | 28 - test/ntuple_qcd_200_300/batch/sge_182.sh | 28 - test/ntuple_qcd_200_300/batch/sge_183.sh | 28 - test/ntuple_qcd_200_300/batch/sge_184.sh | 28 - test/ntuple_qcd_200_300/batch/sge_185.sh | 28 - test/ntuple_qcd_200_300/batch/sge_186.sh | 28 - test/ntuple_qcd_200_300/batch/sge_187.sh | 28 - test/ntuple_qcd_200_300/batch/sge_188.sh | 28 - test/ntuple_qcd_200_300/batch/sge_189.sh | 28 - test/ntuple_qcd_200_300/batch/sge_19.sh | 28 - test/ntuple_qcd_200_300/batch/sge_190.sh | 28 - test/ntuple_qcd_200_300/batch/sge_191.sh | 28 - test/ntuple_qcd_200_300/batch/sge_192.sh | 28 - test/ntuple_qcd_200_300/batch/sge_193.sh | 28 - test/ntuple_qcd_200_300/batch/sge_194.sh | 28 - test/ntuple_qcd_200_300/batch/sge_195.sh | 28 - test/ntuple_qcd_200_300/batch/sge_196.sh | 28 - test/ntuple_qcd_200_300/batch/sge_197.sh | 28 - test/ntuple_qcd_200_300/batch/sge_198.sh | 28 - test/ntuple_qcd_200_300/batch/sge_199.sh | 28 - test/ntuple_qcd_200_300/batch/sge_2.sh | 28 - test/ntuple_qcd_200_300/batch/sge_20.sh | 28 - test/ntuple_qcd_200_300/batch/sge_200.sh | 28 - test/ntuple_qcd_200_300/batch/sge_201.sh | 28 - test/ntuple_qcd_200_300/batch/sge_202.sh | 28 - test/ntuple_qcd_200_300/batch/sge_203.sh | 28 - test/ntuple_qcd_200_300/batch/sge_204.sh | 28 - test/ntuple_qcd_200_300/batch/sge_205.sh | 28 - test/ntuple_qcd_200_300/batch/sge_206.sh | 28 - test/ntuple_qcd_200_300/batch/sge_207.sh | 28 - test/ntuple_qcd_200_300/batch/sge_208.sh | 28 - test/ntuple_qcd_200_300/batch/sge_209.sh | 28 - test/ntuple_qcd_200_300/batch/sge_21.sh | 28 - test/ntuple_qcd_200_300/batch/sge_210.sh | 28 - test/ntuple_qcd_200_300/batch/sge_211.sh | 28 - test/ntuple_qcd_200_300/batch/sge_212.sh | 28 - test/ntuple_qcd_200_300/batch/sge_213.sh | 28 - test/ntuple_qcd_200_300/batch/sge_214.sh | 28 - test/ntuple_qcd_200_300/batch/sge_215.sh | 28 - test/ntuple_qcd_200_300/batch/sge_216.sh | 28 - test/ntuple_qcd_200_300/batch/sge_217.sh | 28 - test/ntuple_qcd_200_300/batch/sge_218.sh | 28 - test/ntuple_qcd_200_300/batch/sge_219.sh | 28 - test/ntuple_qcd_200_300/batch/sge_22.sh | 28 - test/ntuple_qcd_200_300/batch/sge_220.sh | 28 - test/ntuple_qcd_200_300/batch/sge_221.sh | 28 - test/ntuple_qcd_200_300/batch/sge_222.sh | 28 - test/ntuple_qcd_200_300/batch/sge_223.sh | 28 - test/ntuple_qcd_200_300/batch/sge_224.sh | 28 - test/ntuple_qcd_200_300/batch/sge_225.sh | 28 - test/ntuple_qcd_200_300/batch/sge_226.sh | 28 - test/ntuple_qcd_200_300/batch/sge_227.sh | 28 - test/ntuple_qcd_200_300/batch/sge_228.sh | 28 - test/ntuple_qcd_200_300/batch/sge_229.sh | 28 - test/ntuple_qcd_200_300/batch/sge_23.sh | 28 - test/ntuple_qcd_200_300/batch/sge_230.sh | 28 - test/ntuple_qcd_200_300/batch/sge_231.sh | 28 - test/ntuple_qcd_200_300/batch/sge_232.sh | 28 - test/ntuple_qcd_200_300/batch/sge_233.sh | 28 - test/ntuple_qcd_200_300/batch/sge_234.sh | 28 - test/ntuple_qcd_200_300/batch/sge_235.sh | 28 - test/ntuple_qcd_200_300/batch/sge_236.sh | 28 - test/ntuple_qcd_200_300/batch/sge_237.sh | 28 - test/ntuple_qcd_200_300/batch/sge_238.sh | 28 - test/ntuple_qcd_200_300/batch/sge_239.sh | 28 - test/ntuple_qcd_200_300/batch/sge_24.sh | 28 - test/ntuple_qcd_200_300/batch/sge_240.sh | 28 - test/ntuple_qcd_200_300/batch/sge_241.sh | 28 - test/ntuple_qcd_200_300/batch/sge_242.sh | 28 - test/ntuple_qcd_200_300/batch/sge_243.sh | 28 - test/ntuple_qcd_200_300/batch/sge_244.sh | 28 - test/ntuple_qcd_200_300/batch/sge_245.sh | 28 - test/ntuple_qcd_200_300/batch/sge_246.sh | 28 - test/ntuple_qcd_200_300/batch/sge_247.sh | 28 - test/ntuple_qcd_200_300/batch/sge_248.sh | 28 - test/ntuple_qcd_200_300/batch/sge_249.sh | 28 - test/ntuple_qcd_200_300/batch/sge_25.sh | 28 - test/ntuple_qcd_200_300/batch/sge_250.sh | 28 - test/ntuple_qcd_200_300/batch/sge_251.sh | 28 - test/ntuple_qcd_200_300/batch/sge_252.sh | 28 - test/ntuple_qcd_200_300/batch/sge_253.sh | 28 - test/ntuple_qcd_200_300/batch/sge_254.sh | 28 - test/ntuple_qcd_200_300/batch/sge_255.sh | 28 - test/ntuple_qcd_200_300/batch/sge_256.sh | 28 - test/ntuple_qcd_200_300/batch/sge_257.sh | 28 - test/ntuple_qcd_200_300/batch/sge_258.sh | 28 - test/ntuple_qcd_200_300/batch/sge_259.sh | 28 - test/ntuple_qcd_200_300/batch/sge_26.sh | 28 - test/ntuple_qcd_200_300/batch/sge_260.sh | 28 - test/ntuple_qcd_200_300/batch/sge_261.sh | 28 - test/ntuple_qcd_200_300/batch/sge_262.sh | 28 - test/ntuple_qcd_200_300/batch/sge_263.sh | 28 - test/ntuple_qcd_200_300/batch/sge_264.sh | 28 - test/ntuple_qcd_200_300/batch/sge_265.sh | 28 - test/ntuple_qcd_200_300/batch/sge_266.sh | 28 - test/ntuple_qcd_200_300/batch/sge_267.sh | 28 - test/ntuple_qcd_200_300/batch/sge_268.sh | 28 - test/ntuple_qcd_200_300/batch/sge_269.sh | 28 - test/ntuple_qcd_200_300/batch/sge_27.sh | 28 - test/ntuple_qcd_200_300/batch/sge_270.sh | 28 - test/ntuple_qcd_200_300/batch/sge_271.sh | 28 - test/ntuple_qcd_200_300/batch/sge_272.sh | 28 - test/ntuple_qcd_200_300/batch/sge_273.sh | 28 - test/ntuple_qcd_200_300/batch/sge_274.sh | 28 - test/ntuple_qcd_200_300/batch/sge_275.sh | 28 - test/ntuple_qcd_200_300/batch/sge_276.sh | 28 - test/ntuple_qcd_200_300/batch/sge_277.sh | 28 - test/ntuple_qcd_200_300/batch/sge_278.sh | 28 - test/ntuple_qcd_200_300/batch/sge_279.sh | 28 - test/ntuple_qcd_200_300/batch/sge_28.sh | 28 - test/ntuple_qcd_200_300/batch/sge_280.sh | 28 - test/ntuple_qcd_200_300/batch/sge_281.sh | 28 - test/ntuple_qcd_200_300/batch/sge_282.sh | 28 - test/ntuple_qcd_200_300/batch/sge_283.sh | 28 - test/ntuple_qcd_200_300/batch/sge_284.sh | 28 - test/ntuple_qcd_200_300/batch/sge_285.sh | 28 - test/ntuple_qcd_200_300/batch/sge_286.sh | 28 - test/ntuple_qcd_200_300/batch/sge_287.sh | 28 - test/ntuple_qcd_200_300/batch/sge_288.sh | 28 - test/ntuple_qcd_200_300/batch/sge_289.sh | 28 - test/ntuple_qcd_200_300/batch/sge_29.sh | 28 - test/ntuple_qcd_200_300/batch/sge_290.sh | 28 - test/ntuple_qcd_200_300/batch/sge_291.sh | 28 - test/ntuple_qcd_200_300/batch/sge_292.sh | 28 - test/ntuple_qcd_200_300/batch/sge_293.sh | 28 - test/ntuple_qcd_200_300/batch/sge_294.sh | 28 - test/ntuple_qcd_200_300/batch/sge_295.sh | 28 - test/ntuple_qcd_200_300/batch/sge_296.sh | 28 - test/ntuple_qcd_200_300/batch/sge_297.sh | 28 - test/ntuple_qcd_200_300/batch/sge_298.sh | 28 - test/ntuple_qcd_200_300/batch/sge_299.sh | 28 - test/ntuple_qcd_200_300/batch/sge_3.sh | 28 - test/ntuple_qcd_200_300/batch/sge_30.sh | 28 - test/ntuple_qcd_200_300/batch/sge_300.sh | 28 - test/ntuple_qcd_200_300/batch/sge_301.sh | 28 - test/ntuple_qcd_200_300/batch/sge_302.sh | 28 - test/ntuple_qcd_200_300/batch/sge_303.sh | 28 - test/ntuple_qcd_200_300/batch/sge_304.sh | 28 - test/ntuple_qcd_200_300/batch/sge_305.sh | 28 - test/ntuple_qcd_200_300/batch/sge_306.sh | 28 - test/ntuple_qcd_200_300/batch/sge_307.sh | 28 - test/ntuple_qcd_200_300/batch/sge_308.sh | 28 - test/ntuple_qcd_200_300/batch/sge_309.sh | 28 - test/ntuple_qcd_200_300/batch/sge_31.sh | 28 - test/ntuple_qcd_200_300/batch/sge_310.sh | 28 - test/ntuple_qcd_200_300/batch/sge_311.sh | 28 - test/ntuple_qcd_200_300/batch/sge_312.sh | 28 - test/ntuple_qcd_200_300/batch/sge_313.sh | 28 - test/ntuple_qcd_200_300/batch/sge_314.sh | 28 - test/ntuple_qcd_200_300/batch/sge_315.sh | 28 - test/ntuple_qcd_200_300/batch/sge_316.sh | 28 - test/ntuple_qcd_200_300/batch/sge_317.sh | 28 - test/ntuple_qcd_200_300/batch/sge_318.sh | 28 - test/ntuple_qcd_200_300/batch/sge_319.sh | 28 - test/ntuple_qcd_200_300/batch/sge_32.sh | 28 - test/ntuple_qcd_200_300/batch/sge_320.sh | 28 - test/ntuple_qcd_200_300/batch/sge_321.sh | 28 - test/ntuple_qcd_200_300/batch/sge_322.sh | 28 - test/ntuple_qcd_200_300/batch/sge_323.sh | 28 - test/ntuple_qcd_200_300/batch/sge_324.sh | 28 - test/ntuple_qcd_200_300/batch/sge_325.sh | 28 - test/ntuple_qcd_200_300/batch/sge_326.sh | 28 - test/ntuple_qcd_200_300/batch/sge_327.sh | 28 - test/ntuple_qcd_200_300/batch/sge_328.sh | 28 - test/ntuple_qcd_200_300/batch/sge_329.sh | 28 - test/ntuple_qcd_200_300/batch/sge_33.sh | 28 - test/ntuple_qcd_200_300/batch/sge_330.sh | 28 - test/ntuple_qcd_200_300/batch/sge_331.sh | 28 - test/ntuple_qcd_200_300/batch/sge_332.sh | 28 - test/ntuple_qcd_200_300/batch/sge_333.sh | 28 - test/ntuple_qcd_200_300/batch/sge_334.sh | 28 - test/ntuple_qcd_200_300/batch/sge_335.sh | 28 - test/ntuple_qcd_200_300/batch/sge_336.sh | 28 - test/ntuple_qcd_200_300/batch/sge_337.sh | 28 - test/ntuple_qcd_200_300/batch/sge_338.sh | 28 - test/ntuple_qcd_200_300/batch/sge_339.sh | 28 - test/ntuple_qcd_200_300/batch/sge_34.sh | 28 - test/ntuple_qcd_200_300/batch/sge_340.sh | 28 - test/ntuple_qcd_200_300/batch/sge_341.sh | 28 - test/ntuple_qcd_200_300/batch/sge_342.sh | 28 - test/ntuple_qcd_200_300/batch/sge_343.sh | 28 - test/ntuple_qcd_200_300/batch/sge_344.sh | 28 - test/ntuple_qcd_200_300/batch/sge_345.sh | 28 - test/ntuple_qcd_200_300/batch/sge_346.sh | 28 - test/ntuple_qcd_200_300/batch/sge_347.sh | 28 - test/ntuple_qcd_200_300/batch/sge_348.sh | 28 - test/ntuple_qcd_200_300/batch/sge_349.sh | 28 - test/ntuple_qcd_200_300/batch/sge_35.sh | 28 - test/ntuple_qcd_200_300/batch/sge_350.sh | 28 - test/ntuple_qcd_200_300/batch/sge_351.sh | 28 - test/ntuple_qcd_200_300/batch/sge_352.sh | 28 - test/ntuple_qcd_200_300/batch/sge_353.sh | 28 - test/ntuple_qcd_200_300/batch/sge_354.sh | 28 - test/ntuple_qcd_200_300/batch/sge_355.sh | 28 - test/ntuple_qcd_200_300/batch/sge_356.sh | 28 - test/ntuple_qcd_200_300/batch/sge_357.sh | 28 - test/ntuple_qcd_200_300/batch/sge_358.sh | 28 - test/ntuple_qcd_200_300/batch/sge_359.sh | 28 - test/ntuple_qcd_200_300/batch/sge_36.sh | 28 - test/ntuple_qcd_200_300/batch/sge_360.sh | 28 - test/ntuple_qcd_200_300/batch/sge_361.sh | 28 - test/ntuple_qcd_200_300/batch/sge_362.sh | 28 - test/ntuple_qcd_200_300/batch/sge_363.sh | 28 - test/ntuple_qcd_200_300/batch/sge_364.sh | 28 - test/ntuple_qcd_200_300/batch/sge_365.sh | 28 - test/ntuple_qcd_200_300/batch/sge_366.sh | 28 - test/ntuple_qcd_200_300/batch/sge_367.sh | 28 - test/ntuple_qcd_200_300/batch/sge_368.sh | 28 - test/ntuple_qcd_200_300/batch/sge_369.sh | 28 - test/ntuple_qcd_200_300/batch/sge_37.sh | 28 - test/ntuple_qcd_200_300/batch/sge_370.sh | 28 - test/ntuple_qcd_200_300/batch/sge_371.sh | 28 - test/ntuple_qcd_200_300/batch/sge_372.sh | 28 - test/ntuple_qcd_200_300/batch/sge_373.sh | 28 - test/ntuple_qcd_200_300/batch/sge_374.sh | 28 - test/ntuple_qcd_200_300/batch/sge_375.sh | 28 - test/ntuple_qcd_200_300/batch/sge_376.sh | 28 - test/ntuple_qcd_200_300/batch/sge_377.sh | 28 - test/ntuple_qcd_200_300/batch/sge_378.sh | 28 - test/ntuple_qcd_200_300/batch/sge_379.sh | 28 - test/ntuple_qcd_200_300/batch/sge_38.sh | 28 - test/ntuple_qcd_200_300/batch/sge_380.sh | 28 - test/ntuple_qcd_200_300/batch/sge_381.sh | 28 - test/ntuple_qcd_200_300/batch/sge_382.sh | 28 - test/ntuple_qcd_200_300/batch/sge_383.sh | 28 - test/ntuple_qcd_200_300/batch/sge_384.sh | 28 - test/ntuple_qcd_200_300/batch/sge_385.sh | 28 - test/ntuple_qcd_200_300/batch/sge_386.sh | 28 - test/ntuple_qcd_200_300/batch/sge_387.sh | 28 - test/ntuple_qcd_200_300/batch/sge_388.sh | 28 - test/ntuple_qcd_200_300/batch/sge_389.sh | 28 - test/ntuple_qcd_200_300/batch/sge_39.sh | 28 - test/ntuple_qcd_200_300/batch/sge_390.sh | 28 - test/ntuple_qcd_200_300/batch/sge_391.sh | 28 - test/ntuple_qcd_200_300/batch/sge_392.sh | 28 - test/ntuple_qcd_200_300/batch/sge_393.sh | 28 - test/ntuple_qcd_200_300/batch/sge_394.sh | 28 - test/ntuple_qcd_200_300/batch/sge_395.sh | 28 - test/ntuple_qcd_200_300/batch/sge_396.sh | 28 - test/ntuple_qcd_200_300/batch/sge_397.sh | 28 - test/ntuple_qcd_200_300/batch/sge_398.sh | 28 - test/ntuple_qcd_200_300/batch/sge_399.sh | 28 - test/ntuple_qcd_200_300/batch/sge_4.sh | 28 - test/ntuple_qcd_200_300/batch/sge_40.sh | 28 - test/ntuple_qcd_200_300/batch/sge_400.sh | 28 - test/ntuple_qcd_200_300/batch/sge_401.sh | 28 - test/ntuple_qcd_200_300/batch/sge_402.sh | 28 - test/ntuple_qcd_200_300/batch/sge_403.sh | 28 - test/ntuple_qcd_200_300/batch/sge_404.sh | 28 - test/ntuple_qcd_200_300/batch/sge_405.sh | 28 - test/ntuple_qcd_200_300/batch/sge_406.sh | 28 - test/ntuple_qcd_200_300/batch/sge_407.sh | 28 - test/ntuple_qcd_200_300/batch/sge_408.sh | 28 - test/ntuple_qcd_200_300/batch/sge_409.sh | 28 - test/ntuple_qcd_200_300/batch/sge_41.sh | 28 - test/ntuple_qcd_200_300/batch/sge_410.sh | 28 - test/ntuple_qcd_200_300/batch/sge_411.sh | 28 - test/ntuple_qcd_200_300/batch/sge_412.sh | 28 - test/ntuple_qcd_200_300/batch/sge_413.sh | 28 - test/ntuple_qcd_200_300/batch/sge_414.sh | 28 - test/ntuple_qcd_200_300/batch/sge_415.sh | 28 - test/ntuple_qcd_200_300/batch/sge_416.sh | 28 - test/ntuple_qcd_200_300/batch/sge_417.sh | 28 - test/ntuple_qcd_200_300/batch/sge_418.sh | 28 - test/ntuple_qcd_200_300/batch/sge_419.sh | 28 - test/ntuple_qcd_200_300/batch/sge_42.sh | 28 - test/ntuple_qcd_200_300/batch/sge_420.sh | 28 - test/ntuple_qcd_200_300/batch/sge_421.sh | 28 - test/ntuple_qcd_200_300/batch/sge_422.sh | 28 - test/ntuple_qcd_200_300/batch/sge_423.sh | 28 - test/ntuple_qcd_200_300/batch/sge_424.sh | 28 - test/ntuple_qcd_200_300/batch/sge_425.sh | 28 - test/ntuple_qcd_200_300/batch/sge_426.sh | 28 - test/ntuple_qcd_200_300/batch/sge_427.sh | 28 - test/ntuple_qcd_200_300/batch/sge_428.sh | 28 - test/ntuple_qcd_200_300/batch/sge_429.sh | 28 - test/ntuple_qcd_200_300/batch/sge_43.sh | 28 - test/ntuple_qcd_200_300/batch/sge_430.sh | 28 - test/ntuple_qcd_200_300/batch/sge_431.sh | 28 - test/ntuple_qcd_200_300/batch/sge_432.sh | 28 - test/ntuple_qcd_200_300/batch/sge_433.sh | 28 - test/ntuple_qcd_200_300/batch/sge_434.sh | 28 - test/ntuple_qcd_200_300/batch/sge_435.sh | 28 - test/ntuple_qcd_200_300/batch/sge_436.sh | 28 - test/ntuple_qcd_200_300/batch/sge_437.sh | 28 - test/ntuple_qcd_200_300/batch/sge_438.sh | 28 - test/ntuple_qcd_200_300/batch/sge_439.sh | 28 - test/ntuple_qcd_200_300/batch/sge_44.sh | 28 - test/ntuple_qcd_200_300/batch/sge_440.sh | 28 - test/ntuple_qcd_200_300/batch/sge_441.sh | 28 - test/ntuple_qcd_200_300/batch/sge_442.sh | 28 - test/ntuple_qcd_200_300/batch/sge_443.sh | 28 - test/ntuple_qcd_200_300/batch/sge_444.sh | 28 - test/ntuple_qcd_200_300/batch/sge_445.sh | 28 - test/ntuple_qcd_200_300/batch/sge_446.sh | 28 - test/ntuple_qcd_200_300/batch/sge_447.sh | 28 - test/ntuple_qcd_200_300/batch/sge_448.sh | 28 - test/ntuple_qcd_200_300/batch/sge_449.sh | 28 - test/ntuple_qcd_200_300/batch/sge_45.sh | 28 - test/ntuple_qcd_200_300/batch/sge_450.sh | 28 - test/ntuple_qcd_200_300/batch/sge_451.sh | 28 - test/ntuple_qcd_200_300/batch/sge_452.sh | 28 - test/ntuple_qcd_200_300/batch/sge_453.sh | 28 - test/ntuple_qcd_200_300/batch/sge_454.sh | 28 - test/ntuple_qcd_200_300/batch/sge_455.sh | 28 - test/ntuple_qcd_200_300/batch/sge_456.sh | 28 - test/ntuple_qcd_200_300/batch/sge_457.sh | 28 - test/ntuple_qcd_200_300/batch/sge_458.sh | 28 - test/ntuple_qcd_200_300/batch/sge_459.sh | 28 - test/ntuple_qcd_200_300/batch/sge_46.sh | 28 - test/ntuple_qcd_200_300/batch/sge_460.sh | 28 - test/ntuple_qcd_200_300/batch/sge_461.sh | 28 - test/ntuple_qcd_200_300/batch/sge_462.sh | 28 - test/ntuple_qcd_200_300/batch/sge_463.sh | 28 - test/ntuple_qcd_200_300/batch/sge_464.sh | 28 - test/ntuple_qcd_200_300/batch/sge_465.sh | 28 - test/ntuple_qcd_200_300/batch/sge_466.sh | 28 - test/ntuple_qcd_200_300/batch/sge_467.sh | 28 - test/ntuple_qcd_200_300/batch/sge_468.sh | 28 - test/ntuple_qcd_200_300/batch/sge_469.sh | 28 - test/ntuple_qcd_200_300/batch/sge_47.sh | 28 - test/ntuple_qcd_200_300/batch/sge_470.sh | 28 - test/ntuple_qcd_200_300/batch/sge_471.sh | 28 - test/ntuple_qcd_200_300/batch/sge_472.sh | 28 - test/ntuple_qcd_200_300/batch/sge_473.sh | 28 - test/ntuple_qcd_200_300/batch/sge_474.sh | 28 - test/ntuple_qcd_200_300/batch/sge_475.sh | 28 - test/ntuple_qcd_200_300/batch/sge_476.sh | 28 - test/ntuple_qcd_200_300/batch/sge_477.sh | 28 - test/ntuple_qcd_200_300/batch/sge_478.sh | 28 - test/ntuple_qcd_200_300/batch/sge_479.sh | 28 - test/ntuple_qcd_200_300/batch/sge_48.sh | 28 - test/ntuple_qcd_200_300/batch/sge_480.sh | 28 - test/ntuple_qcd_200_300/batch/sge_481.sh | 28 - test/ntuple_qcd_200_300/batch/sge_482.sh | 28 - test/ntuple_qcd_200_300/batch/sge_483.sh | 28 - test/ntuple_qcd_200_300/batch/sge_484.sh | 28 - test/ntuple_qcd_200_300/batch/sge_485.sh | 28 - test/ntuple_qcd_200_300/batch/sge_486.sh | 28 - test/ntuple_qcd_200_300/batch/sge_487.sh | 28 - test/ntuple_qcd_200_300/batch/sge_488.sh | 28 - test/ntuple_qcd_200_300/batch/sge_489.sh | 28 - test/ntuple_qcd_200_300/batch/sge_49.sh | 28 - test/ntuple_qcd_200_300/batch/sge_490.sh | 28 - test/ntuple_qcd_200_300/batch/sge_491.sh | 28 - test/ntuple_qcd_200_300/batch/sge_492.sh | 28 - test/ntuple_qcd_200_300/batch/sge_493.sh | 28 - test/ntuple_qcd_200_300/batch/sge_494.sh | 28 - test/ntuple_qcd_200_300/batch/sge_495.sh | 28 - test/ntuple_qcd_200_300/batch/sge_496.sh | 28 - test/ntuple_qcd_200_300/batch/sge_497.sh | 28 - test/ntuple_qcd_200_300/batch/sge_498.sh | 28 - test/ntuple_qcd_200_300/batch/sge_499.sh | 28 - test/ntuple_qcd_200_300/batch/sge_5.sh | 28 - test/ntuple_qcd_200_300/batch/sge_50.sh | 28 - test/ntuple_qcd_200_300/batch/sge_51.sh | 28 - test/ntuple_qcd_200_300/batch/sge_52.sh | 28 - test/ntuple_qcd_200_300/batch/sge_53.sh | 28 - test/ntuple_qcd_200_300/batch/sge_54.sh | 28 - test/ntuple_qcd_200_300/batch/sge_55.sh | 28 - test/ntuple_qcd_200_300/batch/sge_56.sh | 28 - test/ntuple_qcd_200_300/batch/sge_57.sh | 28 - test/ntuple_qcd_200_300/batch/sge_58.sh | 28 - test/ntuple_qcd_200_300/batch/sge_59.sh | 28 - test/ntuple_qcd_200_300/batch/sge_6.sh | 28 - test/ntuple_qcd_200_300/batch/sge_60.sh | 28 - test/ntuple_qcd_200_300/batch/sge_61.sh | 28 - test/ntuple_qcd_200_300/batch/sge_62.sh | 28 - test/ntuple_qcd_200_300/batch/sge_63.sh | 28 - test/ntuple_qcd_200_300/batch/sge_64.sh | 28 - test/ntuple_qcd_200_300/batch/sge_65.sh | 28 - test/ntuple_qcd_200_300/batch/sge_66.sh | 28 - test/ntuple_qcd_200_300/batch/sge_67.sh | 28 - test/ntuple_qcd_200_300/batch/sge_68.sh | 28 - test/ntuple_qcd_200_300/batch/sge_69.sh | 28 - test/ntuple_qcd_200_300/batch/sge_7.sh | 28 - test/ntuple_qcd_200_300/batch/sge_70.sh | 28 - test/ntuple_qcd_200_300/batch/sge_71.sh | 28 - test/ntuple_qcd_200_300/batch/sge_72.sh | 28 - test/ntuple_qcd_200_300/batch/sge_73.sh | 28 - test/ntuple_qcd_200_300/batch/sge_74.sh | 28 - test/ntuple_qcd_200_300/batch/sge_75.sh | 28 - test/ntuple_qcd_200_300/batch/sge_76.sh | 28 - test/ntuple_qcd_200_300/batch/sge_77.sh | 28 - test/ntuple_qcd_200_300/batch/sge_78.sh | 28 - test/ntuple_qcd_200_300/batch/sge_79.sh | 28 - test/ntuple_qcd_200_300/batch/sge_8.sh | 28 - test/ntuple_qcd_200_300/batch/sge_80.sh | 28 - test/ntuple_qcd_200_300/batch/sge_81.sh | 28 - test/ntuple_qcd_200_300/batch/sge_82.sh | 28 - test/ntuple_qcd_200_300/batch/sge_83.sh | 28 - test/ntuple_qcd_200_300/batch/sge_84.sh | 28 - test/ntuple_qcd_200_300/batch/sge_85.sh | 28 - test/ntuple_qcd_200_300/batch/sge_86.sh | 28 - test/ntuple_qcd_200_300/batch/sge_87.sh | 28 - test/ntuple_qcd_200_300/batch/sge_88.sh | 28 - test/ntuple_qcd_200_300/batch/sge_89.sh | 28 - test/ntuple_qcd_200_300/batch/sge_9.sh | 28 - test/ntuple_qcd_200_300/batch/sge_90.sh | 28 - test/ntuple_qcd_200_300/batch/sge_91.sh | 28 - test/ntuple_qcd_200_300/batch/sge_92.sh | 28 - test/ntuple_qcd_200_300/batch/sge_93.sh | 28 - test/ntuple_qcd_200_300/batch/sge_94.sh | 28 - test/ntuple_qcd_200_300/batch/sge_95.sh | 28 - test/ntuple_qcd_200_300/batch/sge_96.sh | 28 - test/ntuple_qcd_200_300/batch/sge_97.sh | 28 - test/ntuple_qcd_200_300/batch/sge_98.sh | 28 - test/ntuple_qcd_200_300/batch/sge_99.sh | 28 - test/ntuple_qcd_200_300/batchscript.sh | 51 -- test/ntuple_qcd_200_300/condor.sub | 13 - test/ntuple_qcd_200_300/helper | 1 - test/ntuple_qcd_200_300/output | 1 - test/ntuple_qcd_200_300/sge_sub.sh | 500 ------------------ test/ntuple_qcd_300_500/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_300_500/batch/condor_0.sub | 13 - test/ntuple_qcd_300_500/batch/condor_1.sub | 13 - test/ntuple_qcd_300_500/batch/condor_10.sub | 13 - test/ntuple_qcd_300_500/batch/condor_100.sub | 13 - test/ntuple_qcd_300_500/batch/condor_101.sub | 13 - test/ntuple_qcd_300_500/batch/condor_102.sub | 13 - test/ntuple_qcd_300_500/batch/condor_103.sub | 13 - test/ntuple_qcd_300_500/batch/condor_104.sub | 13 - test/ntuple_qcd_300_500/batch/condor_105.sub | 13 - test/ntuple_qcd_300_500/batch/condor_106.sub | 13 - test/ntuple_qcd_300_500/batch/condor_107.sub | 13 - test/ntuple_qcd_300_500/batch/condor_108.sub | 13 - test/ntuple_qcd_300_500/batch/condor_109.sub | 13 - test/ntuple_qcd_300_500/batch/condor_11.sub | 13 - test/ntuple_qcd_300_500/batch/condor_110.sub | 13 - test/ntuple_qcd_300_500/batch/condor_111.sub | 13 - test/ntuple_qcd_300_500/batch/condor_112.sub | 13 - test/ntuple_qcd_300_500/batch/condor_113.sub | 13 - test/ntuple_qcd_300_500/batch/condor_114.sub | 13 - test/ntuple_qcd_300_500/batch/condor_115.sub | 13 - test/ntuple_qcd_300_500/batch/condor_116.sub | 13 - test/ntuple_qcd_300_500/batch/condor_117.sub | 13 - test/ntuple_qcd_300_500/batch/condor_118.sub | 13 - test/ntuple_qcd_300_500/batch/condor_119.sub | 13 - test/ntuple_qcd_300_500/batch/condor_12.sub | 13 - test/ntuple_qcd_300_500/batch/condor_120.sub | 13 - test/ntuple_qcd_300_500/batch/condor_121.sub | 13 - test/ntuple_qcd_300_500/batch/condor_122.sub | 13 - test/ntuple_qcd_300_500/batch/condor_123.sub | 13 - test/ntuple_qcd_300_500/batch/condor_124.sub | 13 - test/ntuple_qcd_300_500/batch/condor_125.sub | 13 - test/ntuple_qcd_300_500/batch/condor_126.sub | 13 - test/ntuple_qcd_300_500/batch/condor_127.sub | 13 - test/ntuple_qcd_300_500/batch/condor_128.sub | 13 - test/ntuple_qcd_300_500/batch/condor_129.sub | 13 - test/ntuple_qcd_300_500/batch/condor_13.sub | 13 - test/ntuple_qcd_300_500/batch/condor_130.sub | 13 - test/ntuple_qcd_300_500/batch/condor_131.sub | 13 - test/ntuple_qcd_300_500/batch/condor_132.sub | 13 - test/ntuple_qcd_300_500/batch/condor_133.sub | 13 - test/ntuple_qcd_300_500/batch/condor_134.sub | 13 - test/ntuple_qcd_300_500/batch/condor_135.sub | 13 - test/ntuple_qcd_300_500/batch/condor_136.sub | 13 - test/ntuple_qcd_300_500/batch/condor_137.sub | 13 - test/ntuple_qcd_300_500/batch/condor_138.sub | 13 - test/ntuple_qcd_300_500/batch/condor_139.sub | 13 - test/ntuple_qcd_300_500/batch/condor_14.sub | 13 - test/ntuple_qcd_300_500/batch/condor_140.sub | 13 - test/ntuple_qcd_300_500/batch/condor_141.sub | 13 - test/ntuple_qcd_300_500/batch/condor_142.sub | 13 - test/ntuple_qcd_300_500/batch/condor_143.sub | 13 - test/ntuple_qcd_300_500/batch/condor_144.sub | 13 - test/ntuple_qcd_300_500/batch/condor_145.sub | 13 - test/ntuple_qcd_300_500/batch/condor_146.sub | 13 - test/ntuple_qcd_300_500/batch/condor_147.sub | 13 - test/ntuple_qcd_300_500/batch/condor_148.sub | 13 - test/ntuple_qcd_300_500/batch/condor_149.sub | 13 - test/ntuple_qcd_300_500/batch/condor_15.sub | 13 - test/ntuple_qcd_300_500/batch/condor_150.sub | 13 - test/ntuple_qcd_300_500/batch/condor_151.sub | 13 - test/ntuple_qcd_300_500/batch/condor_152.sub | 13 - test/ntuple_qcd_300_500/batch/condor_153.sub | 13 - test/ntuple_qcd_300_500/batch/condor_154.sub | 13 - test/ntuple_qcd_300_500/batch/condor_155.sub | 13 - test/ntuple_qcd_300_500/batch/condor_156.sub | 13 - test/ntuple_qcd_300_500/batch/condor_157.sub | 13 - test/ntuple_qcd_300_500/batch/condor_158.sub | 13 - test/ntuple_qcd_300_500/batch/condor_159.sub | 13 - test/ntuple_qcd_300_500/batch/condor_16.sub | 13 - test/ntuple_qcd_300_500/batch/condor_160.sub | 13 - test/ntuple_qcd_300_500/batch/condor_161.sub | 13 - test/ntuple_qcd_300_500/batch/condor_162.sub | 13 - test/ntuple_qcd_300_500/batch/condor_163.sub | 13 - test/ntuple_qcd_300_500/batch/condor_164.sub | 13 - test/ntuple_qcd_300_500/batch/condor_165.sub | 13 - test/ntuple_qcd_300_500/batch/condor_166.sub | 13 - test/ntuple_qcd_300_500/batch/condor_167.sub | 13 - test/ntuple_qcd_300_500/batch/condor_168.sub | 13 - test/ntuple_qcd_300_500/batch/condor_169.sub | 13 - test/ntuple_qcd_300_500/batch/condor_17.sub | 13 - test/ntuple_qcd_300_500/batch/condor_170.sub | 13 - test/ntuple_qcd_300_500/batch/condor_171.sub | 13 - test/ntuple_qcd_300_500/batch/condor_172.sub | 13 - test/ntuple_qcd_300_500/batch/condor_173.sub | 13 - test/ntuple_qcd_300_500/batch/condor_174.sub | 13 - test/ntuple_qcd_300_500/batch/condor_175.sub | 13 - test/ntuple_qcd_300_500/batch/condor_176.sub | 13 - test/ntuple_qcd_300_500/batch/condor_177.sub | 13 - test/ntuple_qcd_300_500/batch/condor_178.sub | 13 - test/ntuple_qcd_300_500/batch/condor_179.sub | 13 - test/ntuple_qcd_300_500/batch/condor_18.sub | 13 - test/ntuple_qcd_300_500/batch/condor_180.sub | 13 - test/ntuple_qcd_300_500/batch/condor_181.sub | 13 - test/ntuple_qcd_300_500/batch/condor_182.sub | 13 - test/ntuple_qcd_300_500/batch/condor_183.sub | 13 - test/ntuple_qcd_300_500/batch/condor_184.sub | 13 - test/ntuple_qcd_300_500/batch/condor_185.sub | 13 - test/ntuple_qcd_300_500/batch/condor_186.sub | 13 - test/ntuple_qcd_300_500/batch/condor_187.sub | 13 - test/ntuple_qcd_300_500/batch/condor_188.sub | 13 - test/ntuple_qcd_300_500/batch/condor_189.sub | 13 - test/ntuple_qcd_300_500/batch/condor_19.sub | 13 - test/ntuple_qcd_300_500/batch/condor_190.sub | 13 - test/ntuple_qcd_300_500/batch/condor_191.sub | 13 - test/ntuple_qcd_300_500/batch/condor_192.sub | 13 - test/ntuple_qcd_300_500/batch/condor_193.sub | 13 - test/ntuple_qcd_300_500/batch/condor_194.sub | 13 - test/ntuple_qcd_300_500/batch/condor_195.sub | 13 - test/ntuple_qcd_300_500/batch/condor_196.sub | 13 - test/ntuple_qcd_300_500/batch/condor_197.sub | 13 - test/ntuple_qcd_300_500/batch/condor_198.sub | 13 - test/ntuple_qcd_300_500/batch/condor_199.sub | 13 - test/ntuple_qcd_300_500/batch/condor_2.sub | 13 - test/ntuple_qcd_300_500/batch/condor_20.sub | 13 - test/ntuple_qcd_300_500/batch/condor_200.sub | 13 - test/ntuple_qcd_300_500/batch/condor_201.sub | 13 - test/ntuple_qcd_300_500/batch/condor_202.sub | 13 - test/ntuple_qcd_300_500/batch/condor_203.sub | 13 - test/ntuple_qcd_300_500/batch/condor_204.sub | 13 - test/ntuple_qcd_300_500/batch/condor_205.sub | 13 - test/ntuple_qcd_300_500/batch/condor_206.sub | 13 - test/ntuple_qcd_300_500/batch/condor_207.sub | 13 - test/ntuple_qcd_300_500/batch/condor_208.sub | 13 - test/ntuple_qcd_300_500/batch/condor_209.sub | 13 - test/ntuple_qcd_300_500/batch/condor_21.sub | 13 - test/ntuple_qcd_300_500/batch/condor_210.sub | 13 - test/ntuple_qcd_300_500/batch/condor_211.sub | 13 - test/ntuple_qcd_300_500/batch/condor_212.sub | 13 - test/ntuple_qcd_300_500/batch/condor_213.sub | 13 - test/ntuple_qcd_300_500/batch/condor_214.sub | 13 - test/ntuple_qcd_300_500/batch/condor_215.sub | 13 - test/ntuple_qcd_300_500/batch/condor_216.sub | 13 - test/ntuple_qcd_300_500/batch/condor_217.sub | 13 - test/ntuple_qcd_300_500/batch/condor_218.sub | 13 - test/ntuple_qcd_300_500/batch/condor_219.sub | 13 - test/ntuple_qcd_300_500/batch/condor_22.sub | 13 - test/ntuple_qcd_300_500/batch/condor_220.sub | 13 - test/ntuple_qcd_300_500/batch/condor_221.sub | 13 - test/ntuple_qcd_300_500/batch/condor_222.sub | 13 - test/ntuple_qcd_300_500/batch/condor_223.sub | 13 - test/ntuple_qcd_300_500/batch/condor_224.sub | 13 - test/ntuple_qcd_300_500/batch/condor_225.sub | 13 - test/ntuple_qcd_300_500/batch/condor_226.sub | 13 - test/ntuple_qcd_300_500/batch/condor_227.sub | 13 - test/ntuple_qcd_300_500/batch/condor_228.sub | 13 - test/ntuple_qcd_300_500/batch/condor_229.sub | 13 - test/ntuple_qcd_300_500/batch/condor_23.sub | 13 - test/ntuple_qcd_300_500/batch/condor_230.sub | 13 - test/ntuple_qcd_300_500/batch/condor_231.sub | 13 - test/ntuple_qcd_300_500/batch/condor_232.sub | 13 - test/ntuple_qcd_300_500/batch/condor_233.sub | 13 - test/ntuple_qcd_300_500/batch/condor_234.sub | 13 - test/ntuple_qcd_300_500/batch/condor_235.sub | 13 - test/ntuple_qcd_300_500/batch/condor_236.sub | 13 - test/ntuple_qcd_300_500/batch/condor_237.sub | 13 - test/ntuple_qcd_300_500/batch/condor_238.sub | 13 - test/ntuple_qcd_300_500/batch/condor_239.sub | 13 - test/ntuple_qcd_300_500/batch/condor_24.sub | 13 - test/ntuple_qcd_300_500/batch/condor_240.sub | 13 - test/ntuple_qcd_300_500/batch/condor_241.sub | 13 - test/ntuple_qcd_300_500/batch/condor_242.sub | 13 - test/ntuple_qcd_300_500/batch/condor_243.sub | 13 - test/ntuple_qcd_300_500/batch/condor_244.sub | 13 - test/ntuple_qcd_300_500/batch/condor_245.sub | 13 - test/ntuple_qcd_300_500/batch/condor_246.sub | 13 - test/ntuple_qcd_300_500/batch/condor_247.sub | 13 - test/ntuple_qcd_300_500/batch/condor_248.sub | 13 - test/ntuple_qcd_300_500/batch/condor_249.sub | 13 - test/ntuple_qcd_300_500/batch/condor_25.sub | 13 - test/ntuple_qcd_300_500/batch/condor_250.sub | 13 - test/ntuple_qcd_300_500/batch/condor_251.sub | 13 - test/ntuple_qcd_300_500/batch/condor_252.sub | 13 - test/ntuple_qcd_300_500/batch/condor_253.sub | 13 - test/ntuple_qcd_300_500/batch/condor_254.sub | 13 - test/ntuple_qcd_300_500/batch/condor_255.sub | 13 - test/ntuple_qcd_300_500/batch/condor_256.sub | 13 - test/ntuple_qcd_300_500/batch/condor_257.sub | 13 - test/ntuple_qcd_300_500/batch/condor_258.sub | 13 - test/ntuple_qcd_300_500/batch/condor_259.sub | 13 - test/ntuple_qcd_300_500/batch/condor_26.sub | 13 - test/ntuple_qcd_300_500/batch/condor_260.sub | 13 - test/ntuple_qcd_300_500/batch/condor_261.sub | 13 - test/ntuple_qcd_300_500/batch/condor_262.sub | 13 - test/ntuple_qcd_300_500/batch/condor_263.sub | 13 - test/ntuple_qcd_300_500/batch/condor_264.sub | 13 - test/ntuple_qcd_300_500/batch/condor_265.sub | 13 - test/ntuple_qcd_300_500/batch/condor_266.sub | 13 - test/ntuple_qcd_300_500/batch/condor_267.sub | 13 - test/ntuple_qcd_300_500/batch/condor_268.sub | 13 - test/ntuple_qcd_300_500/batch/condor_269.sub | 13 - test/ntuple_qcd_300_500/batch/condor_27.sub | 13 - test/ntuple_qcd_300_500/batch/condor_270.sub | 13 - test/ntuple_qcd_300_500/batch/condor_271.sub | 13 - test/ntuple_qcd_300_500/batch/condor_272.sub | 13 - test/ntuple_qcd_300_500/batch/condor_273.sub | 13 - test/ntuple_qcd_300_500/batch/condor_274.sub | 13 - test/ntuple_qcd_300_500/batch/condor_275.sub | 13 - test/ntuple_qcd_300_500/batch/condor_276.sub | 13 - test/ntuple_qcd_300_500/batch/condor_277.sub | 13 - test/ntuple_qcd_300_500/batch/condor_278.sub | 13 - test/ntuple_qcd_300_500/batch/condor_279.sub | 13 - test/ntuple_qcd_300_500/batch/condor_28.sub | 13 - test/ntuple_qcd_300_500/batch/condor_280.sub | 13 - test/ntuple_qcd_300_500/batch/condor_281.sub | 13 - test/ntuple_qcd_300_500/batch/condor_282.sub | 13 - test/ntuple_qcd_300_500/batch/condor_283.sub | 13 - test/ntuple_qcd_300_500/batch/condor_284.sub | 13 - test/ntuple_qcd_300_500/batch/condor_285.sub | 13 - test/ntuple_qcd_300_500/batch/condor_286.sub | 13 - test/ntuple_qcd_300_500/batch/condor_287.sub | 13 - test/ntuple_qcd_300_500/batch/condor_288.sub | 13 - test/ntuple_qcd_300_500/batch/condor_289.sub | 13 - test/ntuple_qcd_300_500/batch/condor_29.sub | 13 - test/ntuple_qcd_300_500/batch/condor_290.sub | 13 - test/ntuple_qcd_300_500/batch/condor_291.sub | 13 - test/ntuple_qcd_300_500/batch/condor_292.sub | 13 - test/ntuple_qcd_300_500/batch/condor_293.sub | 13 - test/ntuple_qcd_300_500/batch/condor_294.sub | 13 - test/ntuple_qcd_300_500/batch/condor_295.sub | 13 - test/ntuple_qcd_300_500/batch/condor_296.sub | 13 - test/ntuple_qcd_300_500/batch/condor_297.sub | 13 - test/ntuple_qcd_300_500/batch/condor_298.sub | 13 - test/ntuple_qcd_300_500/batch/condor_299.sub | 13 - test/ntuple_qcd_300_500/batch/condor_3.sub | 13 - test/ntuple_qcd_300_500/batch/condor_30.sub | 13 - test/ntuple_qcd_300_500/batch/condor_300.sub | 13 - test/ntuple_qcd_300_500/batch/condor_301.sub | 13 - test/ntuple_qcd_300_500/batch/condor_302.sub | 13 - test/ntuple_qcd_300_500/batch/condor_303.sub | 13 - test/ntuple_qcd_300_500/batch/condor_304.sub | 13 - test/ntuple_qcd_300_500/batch/condor_305.sub | 13 - test/ntuple_qcd_300_500/batch/condor_306.sub | 13 - test/ntuple_qcd_300_500/batch/condor_307.sub | 13 - test/ntuple_qcd_300_500/batch/condor_308.sub | 13 - test/ntuple_qcd_300_500/batch/condor_309.sub | 13 - test/ntuple_qcd_300_500/batch/condor_31.sub | 13 - test/ntuple_qcd_300_500/batch/condor_310.sub | 13 - test/ntuple_qcd_300_500/batch/condor_311.sub | 13 - test/ntuple_qcd_300_500/batch/condor_312.sub | 13 - test/ntuple_qcd_300_500/batch/condor_313.sub | 13 - test/ntuple_qcd_300_500/batch/condor_314.sub | 13 - test/ntuple_qcd_300_500/batch/condor_315.sub | 13 - test/ntuple_qcd_300_500/batch/condor_316.sub | 13 - test/ntuple_qcd_300_500/batch/condor_317.sub | 13 - test/ntuple_qcd_300_500/batch/condor_318.sub | 13 - test/ntuple_qcd_300_500/batch/condor_319.sub | 13 - test/ntuple_qcd_300_500/batch/condor_32.sub | 13 - test/ntuple_qcd_300_500/batch/condor_320.sub | 13 - test/ntuple_qcd_300_500/batch/condor_321.sub | 13 - test/ntuple_qcd_300_500/batch/condor_322.sub | 13 - test/ntuple_qcd_300_500/batch/condor_323.sub | 13 - test/ntuple_qcd_300_500/batch/condor_324.sub | 13 - test/ntuple_qcd_300_500/batch/condor_325.sub | 13 - test/ntuple_qcd_300_500/batch/condor_326.sub | 13 - test/ntuple_qcd_300_500/batch/condor_327.sub | 13 - test/ntuple_qcd_300_500/batch/condor_328.sub | 13 - test/ntuple_qcd_300_500/batch/condor_329.sub | 13 - test/ntuple_qcd_300_500/batch/condor_33.sub | 13 - test/ntuple_qcd_300_500/batch/condor_330.sub | 13 - test/ntuple_qcd_300_500/batch/condor_331.sub | 13 - test/ntuple_qcd_300_500/batch/condor_332.sub | 13 - test/ntuple_qcd_300_500/batch/condor_333.sub | 13 - test/ntuple_qcd_300_500/batch/condor_334.sub | 13 - test/ntuple_qcd_300_500/batch/condor_335.sub | 13 - test/ntuple_qcd_300_500/batch/condor_336.sub | 13 - test/ntuple_qcd_300_500/batch/condor_337.sub | 13 - test/ntuple_qcd_300_500/batch/condor_338.sub | 13 - test/ntuple_qcd_300_500/batch/condor_339.sub | 13 - test/ntuple_qcd_300_500/batch/condor_34.sub | 13 - test/ntuple_qcd_300_500/batch/condor_340.sub | 13 - test/ntuple_qcd_300_500/batch/condor_341.sub | 13 - test/ntuple_qcd_300_500/batch/condor_342.sub | 13 - test/ntuple_qcd_300_500/batch/condor_343.sub | 13 - test/ntuple_qcd_300_500/batch/condor_344.sub | 13 - test/ntuple_qcd_300_500/batch/condor_345.sub | 13 - test/ntuple_qcd_300_500/batch/condor_346.sub | 13 - test/ntuple_qcd_300_500/batch/condor_347.sub | 13 - test/ntuple_qcd_300_500/batch/condor_348.sub | 13 - test/ntuple_qcd_300_500/batch/condor_349.sub | 13 - test/ntuple_qcd_300_500/batch/condor_35.sub | 13 - test/ntuple_qcd_300_500/batch/condor_350.sub | 13 - test/ntuple_qcd_300_500/batch/condor_351.sub | 13 - test/ntuple_qcd_300_500/batch/condor_352.sub | 13 - test/ntuple_qcd_300_500/batch/condor_353.sub | 13 - test/ntuple_qcd_300_500/batch/condor_354.sub | 13 - test/ntuple_qcd_300_500/batch/condor_355.sub | 13 - test/ntuple_qcd_300_500/batch/condor_356.sub | 13 - test/ntuple_qcd_300_500/batch/condor_357.sub | 13 - test/ntuple_qcd_300_500/batch/condor_358.sub | 13 - test/ntuple_qcd_300_500/batch/condor_359.sub | 13 - test/ntuple_qcd_300_500/batch/condor_36.sub | 13 - test/ntuple_qcd_300_500/batch/condor_360.sub | 13 - test/ntuple_qcd_300_500/batch/condor_361.sub | 13 - test/ntuple_qcd_300_500/batch/condor_362.sub | 13 - test/ntuple_qcd_300_500/batch/condor_363.sub | 13 - test/ntuple_qcd_300_500/batch/condor_364.sub | 13 - test/ntuple_qcd_300_500/batch/condor_365.sub | 13 - test/ntuple_qcd_300_500/batch/condor_366.sub | 13 - test/ntuple_qcd_300_500/batch/condor_367.sub | 13 - test/ntuple_qcd_300_500/batch/condor_368.sub | 13 - test/ntuple_qcd_300_500/batch/condor_369.sub | 13 - test/ntuple_qcd_300_500/batch/condor_37.sub | 13 - test/ntuple_qcd_300_500/batch/condor_370.sub | 13 - test/ntuple_qcd_300_500/batch/condor_371.sub | 13 - test/ntuple_qcd_300_500/batch/condor_372.sub | 13 - test/ntuple_qcd_300_500/batch/condor_373.sub | 13 - test/ntuple_qcd_300_500/batch/condor_374.sub | 13 - test/ntuple_qcd_300_500/batch/condor_375.sub | 13 - test/ntuple_qcd_300_500/batch/condor_376.sub | 13 - test/ntuple_qcd_300_500/batch/condor_377.sub | 13 - test/ntuple_qcd_300_500/batch/condor_378.sub | 13 - test/ntuple_qcd_300_500/batch/condor_379.sub | 13 - test/ntuple_qcd_300_500/batch/condor_38.sub | 13 - test/ntuple_qcd_300_500/batch/condor_380.sub | 13 - test/ntuple_qcd_300_500/batch/condor_381.sub | 13 - test/ntuple_qcd_300_500/batch/condor_382.sub | 13 - test/ntuple_qcd_300_500/batch/condor_383.sub | 13 - test/ntuple_qcd_300_500/batch/condor_384.sub | 13 - test/ntuple_qcd_300_500/batch/condor_385.sub | 13 - test/ntuple_qcd_300_500/batch/condor_386.sub | 13 - test/ntuple_qcd_300_500/batch/condor_387.sub | 13 - test/ntuple_qcd_300_500/batch/condor_388.sub | 13 - test/ntuple_qcd_300_500/batch/condor_389.sub | 13 - test/ntuple_qcd_300_500/batch/condor_39.sub | 13 - test/ntuple_qcd_300_500/batch/condor_390.sub | 13 - test/ntuple_qcd_300_500/batch/condor_391.sub | 13 - test/ntuple_qcd_300_500/batch/condor_392.sub | 13 - test/ntuple_qcd_300_500/batch/condor_393.sub | 13 - test/ntuple_qcd_300_500/batch/condor_394.sub | 13 - test/ntuple_qcd_300_500/batch/condor_395.sub | 13 - test/ntuple_qcd_300_500/batch/condor_396.sub | 13 - test/ntuple_qcd_300_500/batch/condor_397.sub | 13 - test/ntuple_qcd_300_500/batch/condor_398.sub | 13 - test/ntuple_qcd_300_500/batch/condor_399.sub | 13 - test/ntuple_qcd_300_500/batch/condor_4.sub | 13 - test/ntuple_qcd_300_500/batch/condor_40.sub | 13 - test/ntuple_qcd_300_500/batch/condor_400.sub | 13 - test/ntuple_qcd_300_500/batch/condor_401.sub | 13 - test/ntuple_qcd_300_500/batch/condor_402.sub | 13 - test/ntuple_qcd_300_500/batch/condor_403.sub | 13 - test/ntuple_qcd_300_500/batch/condor_404.sub | 13 - test/ntuple_qcd_300_500/batch/condor_405.sub | 13 - test/ntuple_qcd_300_500/batch/condor_406.sub | 13 - test/ntuple_qcd_300_500/batch/condor_407.sub | 13 - test/ntuple_qcd_300_500/batch/condor_408.sub | 13 - test/ntuple_qcd_300_500/batch/condor_409.sub | 13 - test/ntuple_qcd_300_500/batch/condor_41.sub | 13 - test/ntuple_qcd_300_500/batch/condor_410.sub | 13 - test/ntuple_qcd_300_500/batch/condor_411.sub | 13 - test/ntuple_qcd_300_500/batch/condor_412.sub | 13 - test/ntuple_qcd_300_500/batch/condor_413.sub | 13 - test/ntuple_qcd_300_500/batch/condor_414.sub | 13 - test/ntuple_qcd_300_500/batch/condor_415.sub | 13 - test/ntuple_qcd_300_500/batch/condor_416.sub | 13 - test/ntuple_qcd_300_500/batch/condor_417.sub | 13 - test/ntuple_qcd_300_500/batch/condor_418.sub | 13 - test/ntuple_qcd_300_500/batch/condor_419.sub | 13 - test/ntuple_qcd_300_500/batch/condor_42.sub | 13 - test/ntuple_qcd_300_500/batch/condor_420.sub | 13 - test/ntuple_qcd_300_500/batch/condor_421.sub | 13 - test/ntuple_qcd_300_500/batch/condor_422.sub | 13 - test/ntuple_qcd_300_500/batch/condor_423.sub | 13 - test/ntuple_qcd_300_500/batch/condor_424.sub | 13 - test/ntuple_qcd_300_500/batch/condor_425.sub | 13 - test/ntuple_qcd_300_500/batch/condor_426.sub | 13 - test/ntuple_qcd_300_500/batch/condor_427.sub | 13 - test/ntuple_qcd_300_500/batch/condor_428.sub | 13 - test/ntuple_qcd_300_500/batch/condor_429.sub | 13 - test/ntuple_qcd_300_500/batch/condor_43.sub | 13 - test/ntuple_qcd_300_500/batch/condor_430.sub | 13 - test/ntuple_qcd_300_500/batch/condor_431.sub | 13 - test/ntuple_qcd_300_500/batch/condor_432.sub | 13 - test/ntuple_qcd_300_500/batch/condor_433.sub | 13 - test/ntuple_qcd_300_500/batch/condor_434.sub | 13 - test/ntuple_qcd_300_500/batch/condor_435.sub | 13 - test/ntuple_qcd_300_500/batch/condor_436.sub | 13 - test/ntuple_qcd_300_500/batch/condor_437.sub | 13 - test/ntuple_qcd_300_500/batch/condor_438.sub | 13 - test/ntuple_qcd_300_500/batch/condor_439.sub | 13 - test/ntuple_qcd_300_500/batch/condor_44.sub | 13 - test/ntuple_qcd_300_500/batch/condor_440.sub | 13 - test/ntuple_qcd_300_500/batch/condor_441.sub | 13 - test/ntuple_qcd_300_500/batch/condor_442.sub | 13 - test/ntuple_qcd_300_500/batch/condor_443.sub | 13 - test/ntuple_qcd_300_500/batch/condor_444.sub | 13 - test/ntuple_qcd_300_500/batch/condor_445.sub | 13 - test/ntuple_qcd_300_500/batch/condor_446.sub | 13 - test/ntuple_qcd_300_500/batch/condor_447.sub | 13 - test/ntuple_qcd_300_500/batch/condor_448.sub | 13 - test/ntuple_qcd_300_500/batch/condor_449.sub | 13 - test/ntuple_qcd_300_500/batch/condor_45.sub | 13 - test/ntuple_qcd_300_500/batch/condor_450.sub | 13 - test/ntuple_qcd_300_500/batch/condor_451.sub | 13 - test/ntuple_qcd_300_500/batch/condor_452.sub | 13 - test/ntuple_qcd_300_500/batch/condor_453.sub | 13 - test/ntuple_qcd_300_500/batch/condor_454.sub | 13 - test/ntuple_qcd_300_500/batch/condor_455.sub | 13 - test/ntuple_qcd_300_500/batch/condor_456.sub | 13 - test/ntuple_qcd_300_500/batch/condor_457.sub | 13 - test/ntuple_qcd_300_500/batch/condor_458.sub | 13 - test/ntuple_qcd_300_500/batch/condor_459.sub | 13 - test/ntuple_qcd_300_500/batch/condor_46.sub | 13 - test/ntuple_qcd_300_500/batch/condor_460.sub | 13 - test/ntuple_qcd_300_500/batch/condor_461.sub | 13 - test/ntuple_qcd_300_500/batch/condor_462.sub | 13 - test/ntuple_qcd_300_500/batch/condor_463.sub | 13 - test/ntuple_qcd_300_500/batch/condor_464.sub | 13 - test/ntuple_qcd_300_500/batch/condor_465.sub | 13 - test/ntuple_qcd_300_500/batch/condor_466.sub | 13 - test/ntuple_qcd_300_500/batch/condor_467.sub | 13 - test/ntuple_qcd_300_500/batch/condor_468.sub | 13 - test/ntuple_qcd_300_500/batch/condor_469.sub | 13 - test/ntuple_qcd_300_500/batch/condor_47.sub | 13 - test/ntuple_qcd_300_500/batch/condor_470.sub | 13 - test/ntuple_qcd_300_500/batch/condor_471.sub | 13 - test/ntuple_qcd_300_500/batch/condor_472.sub | 13 - test/ntuple_qcd_300_500/batch/condor_473.sub | 13 - test/ntuple_qcd_300_500/batch/condor_474.sub | 13 - test/ntuple_qcd_300_500/batch/condor_475.sub | 13 - test/ntuple_qcd_300_500/batch/condor_476.sub | 13 - test/ntuple_qcd_300_500/batch/condor_477.sub | 13 - test/ntuple_qcd_300_500/batch/condor_478.sub | 13 - test/ntuple_qcd_300_500/batch/condor_479.sub | 13 - test/ntuple_qcd_300_500/batch/condor_48.sub | 13 - test/ntuple_qcd_300_500/batch/condor_480.sub | 13 - test/ntuple_qcd_300_500/batch/condor_481.sub | 13 - test/ntuple_qcd_300_500/batch/condor_482.sub | 13 - test/ntuple_qcd_300_500/batch/condor_483.sub | 13 - test/ntuple_qcd_300_500/batch/condor_484.sub | 13 - test/ntuple_qcd_300_500/batch/condor_485.sub | 13 - test/ntuple_qcd_300_500/batch/condor_486.sub | 13 - test/ntuple_qcd_300_500/batch/condor_487.sub | 13 - test/ntuple_qcd_300_500/batch/condor_488.sub | 13 - test/ntuple_qcd_300_500/batch/condor_489.sub | 13 - test/ntuple_qcd_300_500/batch/condor_49.sub | 13 - test/ntuple_qcd_300_500/batch/condor_490.sub | 13 - test/ntuple_qcd_300_500/batch/condor_491.sub | 13 - test/ntuple_qcd_300_500/batch/condor_492.sub | 13 - test/ntuple_qcd_300_500/batch/condor_493.sub | 13 - test/ntuple_qcd_300_500/batch/condor_494.sub | 13 - test/ntuple_qcd_300_500/batch/condor_495.sub | 13 - test/ntuple_qcd_300_500/batch/condor_496.sub | 13 - test/ntuple_qcd_300_500/batch/condor_497.sub | 13 - test/ntuple_qcd_300_500/batch/condor_498.sub | 13 - test/ntuple_qcd_300_500/batch/condor_499.sub | 13 - test/ntuple_qcd_300_500/batch/condor_5.sub | 13 - test/ntuple_qcd_300_500/batch/condor_50.sub | 13 - test/ntuple_qcd_300_500/batch/condor_51.sub | 13 - test/ntuple_qcd_300_500/batch/condor_52.sub | 13 - test/ntuple_qcd_300_500/batch/condor_53.sub | 13 - test/ntuple_qcd_300_500/batch/condor_54.sub | 13 - test/ntuple_qcd_300_500/batch/condor_55.sub | 13 - test/ntuple_qcd_300_500/batch/condor_56.sub | 13 - test/ntuple_qcd_300_500/batch/condor_57.sub | 13 - test/ntuple_qcd_300_500/batch/condor_58.sub | 13 - test/ntuple_qcd_300_500/batch/condor_59.sub | 13 - test/ntuple_qcd_300_500/batch/condor_6.sub | 13 - test/ntuple_qcd_300_500/batch/condor_60.sub | 13 - test/ntuple_qcd_300_500/batch/condor_61.sub | 13 - test/ntuple_qcd_300_500/batch/condor_62.sub | 13 - test/ntuple_qcd_300_500/batch/condor_63.sub | 13 - test/ntuple_qcd_300_500/batch/condor_64.sub | 13 - test/ntuple_qcd_300_500/batch/condor_65.sub | 13 - test/ntuple_qcd_300_500/batch/condor_66.sub | 13 - test/ntuple_qcd_300_500/batch/condor_67.sub | 13 - test/ntuple_qcd_300_500/batch/condor_68.sub | 13 - test/ntuple_qcd_300_500/batch/condor_69.sub | 13 - test/ntuple_qcd_300_500/batch/condor_7.sub | 13 - test/ntuple_qcd_300_500/batch/condor_70.sub | 13 - test/ntuple_qcd_300_500/batch/condor_71.sub | 13 - test/ntuple_qcd_300_500/batch/condor_72.sub | 13 - test/ntuple_qcd_300_500/batch/condor_73.sub | 13 - test/ntuple_qcd_300_500/batch/condor_74.sub | 13 - test/ntuple_qcd_300_500/batch/condor_75.sub | 13 - test/ntuple_qcd_300_500/batch/condor_76.sub | 13 - test/ntuple_qcd_300_500/batch/condor_77.sub | 13 - test/ntuple_qcd_300_500/batch/condor_78.sub | 13 - test/ntuple_qcd_300_500/batch/condor_79.sub | 13 - test/ntuple_qcd_300_500/batch/condor_8.sub | 13 - test/ntuple_qcd_300_500/batch/condor_80.sub | 13 - test/ntuple_qcd_300_500/batch/condor_81.sub | 13 - test/ntuple_qcd_300_500/batch/condor_82.sub | 13 - test/ntuple_qcd_300_500/batch/condor_83.sub | 13 - test/ntuple_qcd_300_500/batch/condor_84.sub | 13 - test/ntuple_qcd_300_500/batch/condor_85.sub | 13 - test/ntuple_qcd_300_500/batch/condor_86.sub | 13 - test/ntuple_qcd_300_500/batch/condor_87.sub | 13 - test/ntuple_qcd_300_500/batch/condor_88.sub | 13 - test/ntuple_qcd_300_500/batch/condor_89.sub | 13 - test/ntuple_qcd_300_500/batch/condor_9.sub | 13 - test/ntuple_qcd_300_500/batch/condor_90.sub | 13 - test/ntuple_qcd_300_500/batch/condor_91.sub | 13 - test/ntuple_qcd_300_500/batch/condor_92.sub | 13 - test/ntuple_qcd_300_500/batch/condor_93.sub | 13 - test/ntuple_qcd_300_500/batch/condor_94.sub | 13 - test/ntuple_qcd_300_500/batch/condor_95.sub | 13 - test/ntuple_qcd_300_500/batch/condor_96.sub | 13 - test/ntuple_qcd_300_500/batch/condor_97.sub | 13 - test/ntuple_qcd_300_500/batch/condor_98.sub | 13 - test/ntuple_qcd_300_500/batch/condor_99.sub | 13 - test/ntuple_qcd_300_500/batch/nJobs.500 | 0 test/ntuple_qcd_300_500/batch/sge_0.sh | 28 - test/ntuple_qcd_300_500/batch/sge_1.sh | 28 - test/ntuple_qcd_300_500/batch/sge_10.sh | 28 - test/ntuple_qcd_300_500/batch/sge_100.sh | 28 - test/ntuple_qcd_300_500/batch/sge_101.sh | 28 - test/ntuple_qcd_300_500/batch/sge_102.sh | 28 - test/ntuple_qcd_300_500/batch/sge_103.sh | 28 - test/ntuple_qcd_300_500/batch/sge_104.sh | 28 - test/ntuple_qcd_300_500/batch/sge_105.sh | 28 - test/ntuple_qcd_300_500/batch/sge_106.sh | 28 - test/ntuple_qcd_300_500/batch/sge_107.sh | 28 - test/ntuple_qcd_300_500/batch/sge_108.sh | 28 - test/ntuple_qcd_300_500/batch/sge_109.sh | 28 - test/ntuple_qcd_300_500/batch/sge_11.sh | 28 - test/ntuple_qcd_300_500/batch/sge_110.sh | 28 - test/ntuple_qcd_300_500/batch/sge_111.sh | 28 - test/ntuple_qcd_300_500/batch/sge_112.sh | 28 - test/ntuple_qcd_300_500/batch/sge_113.sh | 28 - test/ntuple_qcd_300_500/batch/sge_114.sh | 28 - test/ntuple_qcd_300_500/batch/sge_115.sh | 28 - test/ntuple_qcd_300_500/batch/sge_116.sh | 28 - test/ntuple_qcd_300_500/batch/sge_117.sh | 28 - test/ntuple_qcd_300_500/batch/sge_118.sh | 28 - test/ntuple_qcd_300_500/batch/sge_119.sh | 28 - test/ntuple_qcd_300_500/batch/sge_12.sh | 28 - test/ntuple_qcd_300_500/batch/sge_120.sh | 28 - test/ntuple_qcd_300_500/batch/sge_121.sh | 28 - test/ntuple_qcd_300_500/batch/sge_122.sh | 28 - test/ntuple_qcd_300_500/batch/sge_123.sh | 28 - test/ntuple_qcd_300_500/batch/sge_124.sh | 28 - test/ntuple_qcd_300_500/batch/sge_125.sh | 28 - test/ntuple_qcd_300_500/batch/sge_126.sh | 28 - test/ntuple_qcd_300_500/batch/sge_127.sh | 28 - test/ntuple_qcd_300_500/batch/sge_128.sh | 28 - test/ntuple_qcd_300_500/batch/sge_129.sh | 28 - test/ntuple_qcd_300_500/batch/sge_13.sh | 28 - test/ntuple_qcd_300_500/batch/sge_130.sh | 28 - test/ntuple_qcd_300_500/batch/sge_131.sh | 28 - test/ntuple_qcd_300_500/batch/sge_132.sh | 28 - test/ntuple_qcd_300_500/batch/sge_133.sh | 28 - test/ntuple_qcd_300_500/batch/sge_134.sh | 28 - test/ntuple_qcd_300_500/batch/sge_135.sh | 28 - test/ntuple_qcd_300_500/batch/sge_136.sh | 28 - test/ntuple_qcd_300_500/batch/sge_137.sh | 28 - test/ntuple_qcd_300_500/batch/sge_138.sh | 28 - test/ntuple_qcd_300_500/batch/sge_139.sh | 28 - test/ntuple_qcd_300_500/batch/sge_14.sh | 28 - test/ntuple_qcd_300_500/batch/sge_140.sh | 28 - test/ntuple_qcd_300_500/batch/sge_141.sh | 28 - test/ntuple_qcd_300_500/batch/sge_142.sh | 28 - test/ntuple_qcd_300_500/batch/sge_143.sh | 28 - test/ntuple_qcd_300_500/batch/sge_144.sh | 28 - test/ntuple_qcd_300_500/batch/sge_145.sh | 28 - test/ntuple_qcd_300_500/batch/sge_146.sh | 28 - test/ntuple_qcd_300_500/batch/sge_147.sh | 28 - test/ntuple_qcd_300_500/batch/sge_148.sh | 28 - test/ntuple_qcd_300_500/batch/sge_149.sh | 28 - test/ntuple_qcd_300_500/batch/sge_15.sh | 28 - test/ntuple_qcd_300_500/batch/sge_150.sh | 28 - test/ntuple_qcd_300_500/batch/sge_151.sh | 28 - test/ntuple_qcd_300_500/batch/sge_152.sh | 28 - test/ntuple_qcd_300_500/batch/sge_153.sh | 28 - test/ntuple_qcd_300_500/batch/sge_154.sh | 28 - test/ntuple_qcd_300_500/batch/sge_155.sh | 28 - test/ntuple_qcd_300_500/batch/sge_156.sh | 28 - test/ntuple_qcd_300_500/batch/sge_157.sh | 28 - test/ntuple_qcd_300_500/batch/sge_158.sh | 28 - test/ntuple_qcd_300_500/batch/sge_159.sh | 28 - test/ntuple_qcd_300_500/batch/sge_16.sh | 28 - test/ntuple_qcd_300_500/batch/sge_160.sh | 28 - test/ntuple_qcd_300_500/batch/sge_161.sh | 28 - test/ntuple_qcd_300_500/batch/sge_162.sh | 28 - test/ntuple_qcd_300_500/batch/sge_163.sh | 28 - test/ntuple_qcd_300_500/batch/sge_164.sh | 28 - test/ntuple_qcd_300_500/batch/sge_165.sh | 28 - test/ntuple_qcd_300_500/batch/sge_166.sh | 28 - test/ntuple_qcd_300_500/batch/sge_167.sh | 28 - test/ntuple_qcd_300_500/batch/sge_168.sh | 28 - test/ntuple_qcd_300_500/batch/sge_169.sh | 28 - test/ntuple_qcd_300_500/batch/sge_17.sh | 28 - test/ntuple_qcd_300_500/batch/sge_170.sh | 28 - test/ntuple_qcd_300_500/batch/sge_171.sh | 28 - test/ntuple_qcd_300_500/batch/sge_172.sh | 28 - test/ntuple_qcd_300_500/batch/sge_173.sh | 28 - test/ntuple_qcd_300_500/batch/sge_174.sh | 28 - test/ntuple_qcd_300_500/batch/sge_175.sh | 28 - test/ntuple_qcd_300_500/batch/sge_176.sh | 28 - test/ntuple_qcd_300_500/batch/sge_177.sh | 28 - test/ntuple_qcd_300_500/batch/sge_178.sh | 28 - test/ntuple_qcd_300_500/batch/sge_179.sh | 28 - test/ntuple_qcd_300_500/batch/sge_18.sh | 28 - test/ntuple_qcd_300_500/batch/sge_180.sh | 28 - test/ntuple_qcd_300_500/batch/sge_181.sh | 28 - test/ntuple_qcd_300_500/batch/sge_182.sh | 28 - test/ntuple_qcd_300_500/batch/sge_183.sh | 28 - test/ntuple_qcd_300_500/batch/sge_184.sh | 28 - test/ntuple_qcd_300_500/batch/sge_185.sh | 28 - test/ntuple_qcd_300_500/batch/sge_186.sh | 28 - test/ntuple_qcd_300_500/batch/sge_187.sh | 28 - test/ntuple_qcd_300_500/batch/sge_188.sh | 28 - test/ntuple_qcd_300_500/batch/sge_189.sh | 28 - test/ntuple_qcd_300_500/batch/sge_19.sh | 28 - test/ntuple_qcd_300_500/batch/sge_190.sh | 28 - test/ntuple_qcd_300_500/batch/sge_191.sh | 28 - test/ntuple_qcd_300_500/batch/sge_192.sh | 28 - test/ntuple_qcd_300_500/batch/sge_193.sh | 28 - test/ntuple_qcd_300_500/batch/sge_194.sh | 28 - test/ntuple_qcd_300_500/batch/sge_195.sh | 28 - test/ntuple_qcd_300_500/batch/sge_196.sh | 28 - test/ntuple_qcd_300_500/batch/sge_197.sh | 28 - test/ntuple_qcd_300_500/batch/sge_198.sh | 28 - test/ntuple_qcd_300_500/batch/sge_199.sh | 28 - test/ntuple_qcd_300_500/batch/sge_2.sh | 28 - test/ntuple_qcd_300_500/batch/sge_20.sh | 28 - test/ntuple_qcd_300_500/batch/sge_200.sh | 28 - test/ntuple_qcd_300_500/batch/sge_201.sh | 28 - test/ntuple_qcd_300_500/batch/sge_202.sh | 28 - test/ntuple_qcd_300_500/batch/sge_203.sh | 28 - test/ntuple_qcd_300_500/batch/sge_204.sh | 28 - test/ntuple_qcd_300_500/batch/sge_205.sh | 28 - test/ntuple_qcd_300_500/batch/sge_206.sh | 28 - test/ntuple_qcd_300_500/batch/sge_207.sh | 28 - test/ntuple_qcd_300_500/batch/sge_208.sh | 28 - test/ntuple_qcd_300_500/batch/sge_209.sh | 28 - test/ntuple_qcd_300_500/batch/sge_21.sh | 28 - test/ntuple_qcd_300_500/batch/sge_210.sh | 28 - test/ntuple_qcd_300_500/batch/sge_211.sh | 28 - test/ntuple_qcd_300_500/batch/sge_212.sh | 28 - test/ntuple_qcd_300_500/batch/sge_213.sh | 28 - test/ntuple_qcd_300_500/batch/sge_214.sh | 28 - test/ntuple_qcd_300_500/batch/sge_215.sh | 28 - test/ntuple_qcd_300_500/batch/sge_216.sh | 28 - test/ntuple_qcd_300_500/batch/sge_217.sh | 28 - test/ntuple_qcd_300_500/batch/sge_218.sh | 28 - test/ntuple_qcd_300_500/batch/sge_219.sh | 28 - test/ntuple_qcd_300_500/batch/sge_22.sh | 28 - test/ntuple_qcd_300_500/batch/sge_220.sh | 28 - test/ntuple_qcd_300_500/batch/sge_221.sh | 28 - test/ntuple_qcd_300_500/batch/sge_222.sh | 28 - test/ntuple_qcd_300_500/batch/sge_223.sh | 28 - test/ntuple_qcd_300_500/batch/sge_224.sh | 28 - test/ntuple_qcd_300_500/batch/sge_225.sh | 28 - test/ntuple_qcd_300_500/batch/sge_226.sh | 28 - test/ntuple_qcd_300_500/batch/sge_227.sh | 28 - test/ntuple_qcd_300_500/batch/sge_228.sh | 28 - test/ntuple_qcd_300_500/batch/sge_229.sh | 28 - test/ntuple_qcd_300_500/batch/sge_23.sh | 28 - test/ntuple_qcd_300_500/batch/sge_230.sh | 28 - test/ntuple_qcd_300_500/batch/sge_231.sh | 28 - test/ntuple_qcd_300_500/batch/sge_232.sh | 28 - test/ntuple_qcd_300_500/batch/sge_233.sh | 28 - test/ntuple_qcd_300_500/batch/sge_234.sh | 28 - test/ntuple_qcd_300_500/batch/sge_235.sh | 28 - test/ntuple_qcd_300_500/batch/sge_236.sh | 28 - test/ntuple_qcd_300_500/batch/sge_237.sh | 28 - test/ntuple_qcd_300_500/batch/sge_238.sh | 28 - test/ntuple_qcd_300_500/batch/sge_239.sh | 28 - test/ntuple_qcd_300_500/batch/sge_24.sh | 28 - test/ntuple_qcd_300_500/batch/sge_240.sh | 28 - test/ntuple_qcd_300_500/batch/sge_241.sh | 28 - test/ntuple_qcd_300_500/batch/sge_242.sh | 28 - test/ntuple_qcd_300_500/batch/sge_243.sh | 28 - test/ntuple_qcd_300_500/batch/sge_244.sh | 28 - test/ntuple_qcd_300_500/batch/sge_245.sh | 28 - test/ntuple_qcd_300_500/batch/sge_246.sh | 28 - test/ntuple_qcd_300_500/batch/sge_247.sh | 28 - test/ntuple_qcd_300_500/batch/sge_248.sh | 28 - test/ntuple_qcd_300_500/batch/sge_249.sh | 28 - test/ntuple_qcd_300_500/batch/sge_25.sh | 28 - test/ntuple_qcd_300_500/batch/sge_250.sh | 28 - test/ntuple_qcd_300_500/batch/sge_251.sh | 28 - test/ntuple_qcd_300_500/batch/sge_252.sh | 28 - test/ntuple_qcd_300_500/batch/sge_253.sh | 28 - test/ntuple_qcd_300_500/batch/sge_254.sh | 28 - test/ntuple_qcd_300_500/batch/sge_255.sh | 28 - test/ntuple_qcd_300_500/batch/sge_256.sh | 28 - test/ntuple_qcd_300_500/batch/sge_257.sh | 28 - test/ntuple_qcd_300_500/batch/sge_258.sh | 28 - test/ntuple_qcd_300_500/batch/sge_259.sh | 28 - test/ntuple_qcd_300_500/batch/sge_26.sh | 28 - test/ntuple_qcd_300_500/batch/sge_260.sh | 28 - test/ntuple_qcd_300_500/batch/sge_261.sh | 28 - test/ntuple_qcd_300_500/batch/sge_262.sh | 28 - test/ntuple_qcd_300_500/batch/sge_263.sh | 28 - test/ntuple_qcd_300_500/batch/sge_264.sh | 28 - test/ntuple_qcd_300_500/batch/sge_265.sh | 28 - test/ntuple_qcd_300_500/batch/sge_266.sh | 28 - test/ntuple_qcd_300_500/batch/sge_267.sh | 28 - test/ntuple_qcd_300_500/batch/sge_268.sh | 28 - test/ntuple_qcd_300_500/batch/sge_269.sh | 28 - test/ntuple_qcd_300_500/batch/sge_27.sh | 28 - test/ntuple_qcd_300_500/batch/sge_270.sh | 28 - test/ntuple_qcd_300_500/batch/sge_271.sh | 28 - test/ntuple_qcd_300_500/batch/sge_272.sh | 28 - test/ntuple_qcd_300_500/batch/sge_273.sh | 28 - test/ntuple_qcd_300_500/batch/sge_274.sh | 28 - test/ntuple_qcd_300_500/batch/sge_275.sh | 28 - test/ntuple_qcd_300_500/batch/sge_276.sh | 28 - test/ntuple_qcd_300_500/batch/sge_277.sh | 28 - test/ntuple_qcd_300_500/batch/sge_278.sh | 28 - test/ntuple_qcd_300_500/batch/sge_279.sh | 28 - test/ntuple_qcd_300_500/batch/sge_28.sh | 28 - test/ntuple_qcd_300_500/batch/sge_280.sh | 28 - test/ntuple_qcd_300_500/batch/sge_281.sh | 28 - test/ntuple_qcd_300_500/batch/sge_282.sh | 28 - test/ntuple_qcd_300_500/batch/sge_283.sh | 28 - test/ntuple_qcd_300_500/batch/sge_284.sh | 28 - test/ntuple_qcd_300_500/batch/sge_285.sh | 28 - test/ntuple_qcd_300_500/batch/sge_286.sh | 28 - test/ntuple_qcd_300_500/batch/sge_287.sh | 28 - test/ntuple_qcd_300_500/batch/sge_288.sh | 28 - test/ntuple_qcd_300_500/batch/sge_289.sh | 28 - test/ntuple_qcd_300_500/batch/sge_29.sh | 28 - test/ntuple_qcd_300_500/batch/sge_290.sh | 28 - test/ntuple_qcd_300_500/batch/sge_291.sh | 28 - test/ntuple_qcd_300_500/batch/sge_292.sh | 28 - test/ntuple_qcd_300_500/batch/sge_293.sh | 28 - test/ntuple_qcd_300_500/batch/sge_294.sh | 28 - test/ntuple_qcd_300_500/batch/sge_295.sh | 28 - test/ntuple_qcd_300_500/batch/sge_296.sh | 28 - test/ntuple_qcd_300_500/batch/sge_297.sh | 28 - test/ntuple_qcd_300_500/batch/sge_298.sh | 28 - test/ntuple_qcd_300_500/batch/sge_299.sh | 28 - test/ntuple_qcd_300_500/batch/sge_3.sh | 28 - test/ntuple_qcd_300_500/batch/sge_30.sh | 28 - test/ntuple_qcd_300_500/batch/sge_300.sh | 28 - test/ntuple_qcd_300_500/batch/sge_301.sh | 28 - test/ntuple_qcd_300_500/batch/sge_302.sh | 28 - test/ntuple_qcd_300_500/batch/sge_303.sh | 28 - test/ntuple_qcd_300_500/batch/sge_304.sh | 28 - test/ntuple_qcd_300_500/batch/sge_305.sh | 28 - test/ntuple_qcd_300_500/batch/sge_306.sh | 28 - test/ntuple_qcd_300_500/batch/sge_307.sh | 28 - test/ntuple_qcd_300_500/batch/sge_308.sh | 28 - test/ntuple_qcd_300_500/batch/sge_309.sh | 28 - test/ntuple_qcd_300_500/batch/sge_31.sh | 28 - test/ntuple_qcd_300_500/batch/sge_310.sh | 28 - test/ntuple_qcd_300_500/batch/sge_311.sh | 28 - test/ntuple_qcd_300_500/batch/sge_312.sh | 28 - test/ntuple_qcd_300_500/batch/sge_313.sh | 28 - test/ntuple_qcd_300_500/batch/sge_314.sh | 28 - test/ntuple_qcd_300_500/batch/sge_315.sh | 28 - test/ntuple_qcd_300_500/batch/sge_316.sh | 28 - test/ntuple_qcd_300_500/batch/sge_317.sh | 28 - test/ntuple_qcd_300_500/batch/sge_318.sh | 28 - test/ntuple_qcd_300_500/batch/sge_319.sh | 28 - test/ntuple_qcd_300_500/batch/sge_32.sh | 28 - test/ntuple_qcd_300_500/batch/sge_320.sh | 28 - test/ntuple_qcd_300_500/batch/sge_321.sh | 28 - test/ntuple_qcd_300_500/batch/sge_322.sh | 28 - test/ntuple_qcd_300_500/batch/sge_323.sh | 28 - test/ntuple_qcd_300_500/batch/sge_324.sh | 28 - test/ntuple_qcd_300_500/batch/sge_325.sh | 28 - test/ntuple_qcd_300_500/batch/sge_326.sh | 28 - test/ntuple_qcd_300_500/batch/sge_327.sh | 28 - test/ntuple_qcd_300_500/batch/sge_328.sh | 28 - test/ntuple_qcd_300_500/batch/sge_329.sh | 28 - test/ntuple_qcd_300_500/batch/sge_33.sh | 28 - test/ntuple_qcd_300_500/batch/sge_330.sh | 28 - test/ntuple_qcd_300_500/batch/sge_331.sh | 28 - test/ntuple_qcd_300_500/batch/sge_332.sh | 28 - test/ntuple_qcd_300_500/batch/sge_333.sh | 28 - test/ntuple_qcd_300_500/batch/sge_334.sh | 28 - test/ntuple_qcd_300_500/batch/sge_335.sh | 28 - test/ntuple_qcd_300_500/batch/sge_336.sh | 28 - test/ntuple_qcd_300_500/batch/sge_337.sh | 28 - test/ntuple_qcd_300_500/batch/sge_338.sh | 28 - test/ntuple_qcd_300_500/batch/sge_339.sh | 28 - test/ntuple_qcd_300_500/batch/sge_34.sh | 28 - test/ntuple_qcd_300_500/batch/sge_340.sh | 28 - test/ntuple_qcd_300_500/batch/sge_341.sh | 28 - test/ntuple_qcd_300_500/batch/sge_342.sh | 28 - test/ntuple_qcd_300_500/batch/sge_343.sh | 28 - test/ntuple_qcd_300_500/batch/sge_344.sh | 28 - test/ntuple_qcd_300_500/batch/sge_345.sh | 28 - test/ntuple_qcd_300_500/batch/sge_346.sh | 28 - test/ntuple_qcd_300_500/batch/sge_347.sh | 28 - test/ntuple_qcd_300_500/batch/sge_348.sh | 28 - test/ntuple_qcd_300_500/batch/sge_349.sh | 28 - test/ntuple_qcd_300_500/batch/sge_35.sh | 28 - test/ntuple_qcd_300_500/batch/sge_350.sh | 28 - test/ntuple_qcd_300_500/batch/sge_351.sh | 28 - test/ntuple_qcd_300_500/batch/sge_352.sh | 28 - test/ntuple_qcd_300_500/batch/sge_353.sh | 28 - test/ntuple_qcd_300_500/batch/sge_354.sh | 28 - test/ntuple_qcd_300_500/batch/sge_355.sh | 28 - test/ntuple_qcd_300_500/batch/sge_356.sh | 28 - test/ntuple_qcd_300_500/batch/sge_357.sh | 28 - test/ntuple_qcd_300_500/batch/sge_358.sh | 28 - test/ntuple_qcd_300_500/batch/sge_359.sh | 28 - test/ntuple_qcd_300_500/batch/sge_36.sh | 28 - test/ntuple_qcd_300_500/batch/sge_360.sh | 28 - test/ntuple_qcd_300_500/batch/sge_361.sh | 28 - test/ntuple_qcd_300_500/batch/sge_362.sh | 28 - test/ntuple_qcd_300_500/batch/sge_363.sh | 28 - test/ntuple_qcd_300_500/batch/sge_364.sh | 28 - test/ntuple_qcd_300_500/batch/sge_365.sh | 28 - test/ntuple_qcd_300_500/batch/sge_366.sh | 28 - test/ntuple_qcd_300_500/batch/sge_367.sh | 28 - test/ntuple_qcd_300_500/batch/sge_368.sh | 28 - test/ntuple_qcd_300_500/batch/sge_369.sh | 28 - test/ntuple_qcd_300_500/batch/sge_37.sh | 28 - test/ntuple_qcd_300_500/batch/sge_370.sh | 28 - test/ntuple_qcd_300_500/batch/sge_371.sh | 28 - test/ntuple_qcd_300_500/batch/sge_372.sh | 28 - test/ntuple_qcd_300_500/batch/sge_373.sh | 28 - test/ntuple_qcd_300_500/batch/sge_374.sh | 28 - test/ntuple_qcd_300_500/batch/sge_375.sh | 28 - test/ntuple_qcd_300_500/batch/sge_376.sh | 28 - test/ntuple_qcd_300_500/batch/sge_377.sh | 28 - test/ntuple_qcd_300_500/batch/sge_378.sh | 28 - test/ntuple_qcd_300_500/batch/sge_379.sh | 28 - test/ntuple_qcd_300_500/batch/sge_38.sh | 28 - test/ntuple_qcd_300_500/batch/sge_380.sh | 28 - test/ntuple_qcd_300_500/batch/sge_381.sh | 28 - test/ntuple_qcd_300_500/batch/sge_382.sh | 28 - test/ntuple_qcd_300_500/batch/sge_383.sh | 28 - test/ntuple_qcd_300_500/batch/sge_384.sh | 28 - test/ntuple_qcd_300_500/batch/sge_385.sh | 28 - test/ntuple_qcd_300_500/batch/sge_386.sh | 28 - test/ntuple_qcd_300_500/batch/sge_387.sh | 28 - test/ntuple_qcd_300_500/batch/sge_388.sh | 28 - test/ntuple_qcd_300_500/batch/sge_389.sh | 28 - test/ntuple_qcd_300_500/batch/sge_39.sh | 28 - test/ntuple_qcd_300_500/batch/sge_390.sh | 28 - test/ntuple_qcd_300_500/batch/sge_391.sh | 28 - test/ntuple_qcd_300_500/batch/sge_392.sh | 28 - test/ntuple_qcd_300_500/batch/sge_393.sh | 28 - test/ntuple_qcd_300_500/batch/sge_394.sh | 28 - test/ntuple_qcd_300_500/batch/sge_395.sh | 28 - test/ntuple_qcd_300_500/batch/sge_396.sh | 28 - test/ntuple_qcd_300_500/batch/sge_397.sh | 28 - test/ntuple_qcd_300_500/batch/sge_398.sh | 28 - test/ntuple_qcd_300_500/batch/sge_399.sh | 28 - test/ntuple_qcd_300_500/batch/sge_4.sh | 28 - test/ntuple_qcd_300_500/batch/sge_40.sh | 28 - test/ntuple_qcd_300_500/batch/sge_400.sh | 28 - test/ntuple_qcd_300_500/batch/sge_401.sh | 28 - test/ntuple_qcd_300_500/batch/sge_402.sh | 28 - test/ntuple_qcd_300_500/batch/sge_403.sh | 28 - test/ntuple_qcd_300_500/batch/sge_404.sh | 28 - test/ntuple_qcd_300_500/batch/sge_405.sh | 28 - test/ntuple_qcd_300_500/batch/sge_406.sh | 28 - test/ntuple_qcd_300_500/batch/sge_407.sh | 28 - test/ntuple_qcd_300_500/batch/sge_408.sh | 28 - test/ntuple_qcd_300_500/batch/sge_409.sh | 28 - test/ntuple_qcd_300_500/batch/sge_41.sh | 28 - test/ntuple_qcd_300_500/batch/sge_410.sh | 28 - test/ntuple_qcd_300_500/batch/sge_411.sh | 28 - test/ntuple_qcd_300_500/batch/sge_412.sh | 28 - test/ntuple_qcd_300_500/batch/sge_413.sh | 28 - test/ntuple_qcd_300_500/batch/sge_414.sh | 28 - test/ntuple_qcd_300_500/batch/sge_415.sh | 28 - test/ntuple_qcd_300_500/batch/sge_416.sh | 28 - test/ntuple_qcd_300_500/batch/sge_417.sh | 28 - test/ntuple_qcd_300_500/batch/sge_418.sh | 28 - test/ntuple_qcd_300_500/batch/sge_419.sh | 28 - test/ntuple_qcd_300_500/batch/sge_42.sh | 28 - test/ntuple_qcd_300_500/batch/sge_420.sh | 28 - test/ntuple_qcd_300_500/batch/sge_421.sh | 28 - test/ntuple_qcd_300_500/batch/sge_422.sh | 28 - test/ntuple_qcd_300_500/batch/sge_423.sh | 28 - test/ntuple_qcd_300_500/batch/sge_424.sh | 28 - test/ntuple_qcd_300_500/batch/sge_425.sh | 28 - test/ntuple_qcd_300_500/batch/sge_426.sh | 28 - test/ntuple_qcd_300_500/batch/sge_427.sh | 28 - test/ntuple_qcd_300_500/batch/sge_428.sh | 28 - test/ntuple_qcd_300_500/batch/sge_429.sh | 28 - test/ntuple_qcd_300_500/batch/sge_43.sh | 28 - test/ntuple_qcd_300_500/batch/sge_430.sh | 28 - test/ntuple_qcd_300_500/batch/sge_431.sh | 28 - test/ntuple_qcd_300_500/batch/sge_432.sh | 28 - test/ntuple_qcd_300_500/batch/sge_433.sh | 28 - test/ntuple_qcd_300_500/batch/sge_434.sh | 28 - test/ntuple_qcd_300_500/batch/sge_435.sh | 28 - test/ntuple_qcd_300_500/batch/sge_436.sh | 28 - test/ntuple_qcd_300_500/batch/sge_437.sh | 28 - test/ntuple_qcd_300_500/batch/sge_438.sh | 28 - test/ntuple_qcd_300_500/batch/sge_439.sh | 28 - test/ntuple_qcd_300_500/batch/sge_44.sh | 28 - test/ntuple_qcd_300_500/batch/sge_440.sh | 28 - test/ntuple_qcd_300_500/batch/sge_441.sh | 28 - test/ntuple_qcd_300_500/batch/sge_442.sh | 28 - test/ntuple_qcd_300_500/batch/sge_443.sh | 28 - test/ntuple_qcd_300_500/batch/sge_444.sh | 28 - test/ntuple_qcd_300_500/batch/sge_445.sh | 28 - test/ntuple_qcd_300_500/batch/sge_446.sh | 28 - test/ntuple_qcd_300_500/batch/sge_447.sh | 28 - test/ntuple_qcd_300_500/batch/sge_448.sh | 28 - test/ntuple_qcd_300_500/batch/sge_449.sh | 28 - test/ntuple_qcd_300_500/batch/sge_45.sh | 28 - test/ntuple_qcd_300_500/batch/sge_450.sh | 28 - test/ntuple_qcd_300_500/batch/sge_451.sh | 28 - test/ntuple_qcd_300_500/batch/sge_452.sh | 28 - test/ntuple_qcd_300_500/batch/sge_453.sh | 28 - test/ntuple_qcd_300_500/batch/sge_454.sh | 28 - test/ntuple_qcd_300_500/batch/sge_455.sh | 28 - test/ntuple_qcd_300_500/batch/sge_456.sh | 28 - test/ntuple_qcd_300_500/batch/sge_457.sh | 28 - test/ntuple_qcd_300_500/batch/sge_458.sh | 28 - test/ntuple_qcd_300_500/batch/sge_459.sh | 28 - test/ntuple_qcd_300_500/batch/sge_46.sh | 28 - test/ntuple_qcd_300_500/batch/sge_460.sh | 28 - test/ntuple_qcd_300_500/batch/sge_461.sh | 28 - test/ntuple_qcd_300_500/batch/sge_462.sh | 28 - test/ntuple_qcd_300_500/batch/sge_463.sh | 28 - test/ntuple_qcd_300_500/batch/sge_464.sh | 28 - test/ntuple_qcd_300_500/batch/sge_465.sh | 28 - test/ntuple_qcd_300_500/batch/sge_466.sh | 28 - test/ntuple_qcd_300_500/batch/sge_467.sh | 28 - test/ntuple_qcd_300_500/batch/sge_468.sh | 28 - test/ntuple_qcd_300_500/batch/sge_469.sh | 28 - test/ntuple_qcd_300_500/batch/sge_47.sh | 28 - test/ntuple_qcd_300_500/batch/sge_470.sh | 28 - test/ntuple_qcd_300_500/batch/sge_471.sh | 28 - test/ntuple_qcd_300_500/batch/sge_472.sh | 28 - test/ntuple_qcd_300_500/batch/sge_473.sh | 28 - test/ntuple_qcd_300_500/batch/sge_474.sh | 28 - test/ntuple_qcd_300_500/batch/sge_475.sh | 28 - test/ntuple_qcd_300_500/batch/sge_476.sh | 28 - test/ntuple_qcd_300_500/batch/sge_477.sh | 28 - test/ntuple_qcd_300_500/batch/sge_478.sh | 28 - test/ntuple_qcd_300_500/batch/sge_479.sh | 28 - test/ntuple_qcd_300_500/batch/sge_48.sh | 28 - test/ntuple_qcd_300_500/batch/sge_480.sh | 28 - test/ntuple_qcd_300_500/batch/sge_481.sh | 28 - test/ntuple_qcd_300_500/batch/sge_482.sh | 28 - test/ntuple_qcd_300_500/batch/sge_483.sh | 28 - test/ntuple_qcd_300_500/batch/sge_484.sh | 28 - test/ntuple_qcd_300_500/batch/sge_485.sh | 28 - test/ntuple_qcd_300_500/batch/sge_486.sh | 28 - test/ntuple_qcd_300_500/batch/sge_487.sh | 28 - test/ntuple_qcd_300_500/batch/sge_488.sh | 28 - test/ntuple_qcd_300_500/batch/sge_489.sh | 28 - test/ntuple_qcd_300_500/batch/sge_49.sh | 28 - test/ntuple_qcd_300_500/batch/sge_490.sh | 28 - test/ntuple_qcd_300_500/batch/sge_491.sh | 28 - test/ntuple_qcd_300_500/batch/sge_492.sh | 28 - test/ntuple_qcd_300_500/batch/sge_493.sh | 28 - test/ntuple_qcd_300_500/batch/sge_494.sh | 28 - test/ntuple_qcd_300_500/batch/sge_495.sh | 28 - test/ntuple_qcd_300_500/batch/sge_496.sh | 28 - test/ntuple_qcd_300_500/batch/sge_497.sh | 28 - test/ntuple_qcd_300_500/batch/sge_498.sh | 28 - test/ntuple_qcd_300_500/batch/sge_499.sh | 28 - test/ntuple_qcd_300_500/batch/sge_5.sh | 28 - test/ntuple_qcd_300_500/batch/sge_50.sh | 28 - test/ntuple_qcd_300_500/batch/sge_51.sh | 28 - test/ntuple_qcd_300_500/batch/sge_52.sh | 28 - test/ntuple_qcd_300_500/batch/sge_53.sh | 28 - test/ntuple_qcd_300_500/batch/sge_54.sh | 28 - test/ntuple_qcd_300_500/batch/sge_55.sh | 28 - test/ntuple_qcd_300_500/batch/sge_56.sh | 28 - test/ntuple_qcd_300_500/batch/sge_57.sh | 28 - test/ntuple_qcd_300_500/batch/sge_58.sh | 28 - test/ntuple_qcd_300_500/batch/sge_59.sh | 28 - test/ntuple_qcd_300_500/batch/sge_6.sh | 28 - test/ntuple_qcd_300_500/batch/sge_60.sh | 28 - test/ntuple_qcd_300_500/batch/sge_61.sh | 28 - test/ntuple_qcd_300_500/batch/sge_62.sh | 28 - test/ntuple_qcd_300_500/batch/sge_63.sh | 28 - test/ntuple_qcd_300_500/batch/sge_64.sh | 28 - test/ntuple_qcd_300_500/batch/sge_65.sh | 28 - test/ntuple_qcd_300_500/batch/sge_66.sh | 28 - test/ntuple_qcd_300_500/batch/sge_67.sh | 28 - test/ntuple_qcd_300_500/batch/sge_68.sh | 28 - test/ntuple_qcd_300_500/batch/sge_69.sh | 28 - test/ntuple_qcd_300_500/batch/sge_7.sh | 28 - test/ntuple_qcd_300_500/batch/sge_70.sh | 28 - test/ntuple_qcd_300_500/batch/sge_71.sh | 28 - test/ntuple_qcd_300_500/batch/sge_72.sh | 28 - test/ntuple_qcd_300_500/batch/sge_73.sh | 28 - test/ntuple_qcd_300_500/batch/sge_74.sh | 28 - test/ntuple_qcd_300_500/batch/sge_75.sh | 28 - test/ntuple_qcd_300_500/batch/sge_76.sh | 28 - test/ntuple_qcd_300_500/batch/sge_77.sh | 28 - test/ntuple_qcd_300_500/batch/sge_78.sh | 28 - test/ntuple_qcd_300_500/batch/sge_79.sh | 28 - test/ntuple_qcd_300_500/batch/sge_8.sh | 28 - test/ntuple_qcd_300_500/batch/sge_80.sh | 28 - test/ntuple_qcd_300_500/batch/sge_81.sh | 28 - test/ntuple_qcd_300_500/batch/sge_82.sh | 28 - test/ntuple_qcd_300_500/batch/sge_83.sh | 28 - test/ntuple_qcd_300_500/batch/sge_84.sh | 28 - test/ntuple_qcd_300_500/batch/sge_85.sh | 28 - test/ntuple_qcd_300_500/batch/sge_86.sh | 28 - test/ntuple_qcd_300_500/batch/sge_87.sh | 28 - test/ntuple_qcd_300_500/batch/sge_88.sh | 28 - test/ntuple_qcd_300_500/batch/sge_89.sh | 28 - test/ntuple_qcd_300_500/batch/sge_9.sh | 28 - test/ntuple_qcd_300_500/batch/sge_90.sh | 28 - test/ntuple_qcd_300_500/batch/sge_91.sh | 28 - test/ntuple_qcd_300_500/batch/sge_92.sh | 28 - test/ntuple_qcd_300_500/batch/sge_93.sh | 28 - test/ntuple_qcd_300_500/batch/sge_94.sh | 28 - test/ntuple_qcd_300_500/batch/sge_95.sh | 28 - test/ntuple_qcd_300_500/batch/sge_96.sh | 28 - test/ntuple_qcd_300_500/batch/sge_97.sh | 28 - test/ntuple_qcd_300_500/batch/sge_98.sh | 28 - test/ntuple_qcd_300_500/batch/sge_99.sh | 28 - test/ntuple_qcd_300_500/batchscript.sh | 51 -- test/ntuple_qcd_300_500/condor.sub | 13 - test/ntuple_qcd_300_500/helper | 1 - test/ntuple_qcd_300_500/output | 1 - test/ntuple_qcd_300_500/sge_sub.sh | 500 ------------------ test/ntuple_qcd_500_700/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_500_700/batch/condor_0.sub | 13 - test/ntuple_qcd_500_700/batch/condor_1.sub | 13 - test/ntuple_qcd_500_700/batch/condor_10.sub | 13 - test/ntuple_qcd_500_700/batch/condor_100.sub | 13 - test/ntuple_qcd_500_700/batch/condor_101.sub | 13 - test/ntuple_qcd_500_700/batch/condor_102.sub | 13 - test/ntuple_qcd_500_700/batch/condor_103.sub | 13 - test/ntuple_qcd_500_700/batch/condor_104.sub | 13 - test/ntuple_qcd_500_700/batch/condor_105.sub | 13 - test/ntuple_qcd_500_700/batch/condor_106.sub | 13 - test/ntuple_qcd_500_700/batch/condor_107.sub | 13 - test/ntuple_qcd_500_700/batch/condor_108.sub | 13 - test/ntuple_qcd_500_700/batch/condor_109.sub | 13 - test/ntuple_qcd_500_700/batch/condor_11.sub | 13 - test/ntuple_qcd_500_700/batch/condor_110.sub | 13 - test/ntuple_qcd_500_700/batch/condor_111.sub | 13 - test/ntuple_qcd_500_700/batch/condor_112.sub | 13 - test/ntuple_qcd_500_700/batch/condor_113.sub | 13 - test/ntuple_qcd_500_700/batch/condor_114.sub | 13 - test/ntuple_qcd_500_700/batch/condor_115.sub | 13 - test/ntuple_qcd_500_700/batch/condor_116.sub | 13 - test/ntuple_qcd_500_700/batch/condor_117.sub | 13 - test/ntuple_qcd_500_700/batch/condor_12.sub | 13 - test/ntuple_qcd_500_700/batch/condor_13.sub | 13 - test/ntuple_qcd_500_700/batch/condor_14.sub | 13 - test/ntuple_qcd_500_700/batch/condor_15.sub | 13 - test/ntuple_qcd_500_700/batch/condor_16.sub | 13 - test/ntuple_qcd_500_700/batch/condor_17.sub | 13 - test/ntuple_qcd_500_700/batch/condor_18.sub | 13 - test/ntuple_qcd_500_700/batch/condor_19.sub | 13 - test/ntuple_qcd_500_700/batch/condor_2.sub | 13 - test/ntuple_qcd_500_700/batch/condor_20.sub | 13 - test/ntuple_qcd_500_700/batch/condor_21.sub | 13 - test/ntuple_qcd_500_700/batch/condor_22.sub | 13 - test/ntuple_qcd_500_700/batch/condor_23.sub | 13 - test/ntuple_qcd_500_700/batch/condor_24.sub | 13 - test/ntuple_qcd_500_700/batch/condor_25.sub | 13 - test/ntuple_qcd_500_700/batch/condor_26.sub | 13 - test/ntuple_qcd_500_700/batch/condor_27.sub | 13 - test/ntuple_qcd_500_700/batch/condor_28.sub | 13 - test/ntuple_qcd_500_700/batch/condor_29.sub | 13 - test/ntuple_qcd_500_700/batch/condor_3.sub | 13 - test/ntuple_qcd_500_700/batch/condor_30.sub | 13 - test/ntuple_qcd_500_700/batch/condor_31.sub | 13 - test/ntuple_qcd_500_700/batch/condor_32.sub | 13 - test/ntuple_qcd_500_700/batch/condor_33.sub | 13 - test/ntuple_qcd_500_700/batch/condor_34.sub | 13 - test/ntuple_qcd_500_700/batch/condor_35.sub | 13 - test/ntuple_qcd_500_700/batch/condor_36.sub | 13 - test/ntuple_qcd_500_700/batch/condor_37.sub | 13 - test/ntuple_qcd_500_700/batch/condor_38.sub | 13 - test/ntuple_qcd_500_700/batch/condor_39.sub | 13 - test/ntuple_qcd_500_700/batch/condor_4.sub | 13 - test/ntuple_qcd_500_700/batch/condor_40.sub | 13 - test/ntuple_qcd_500_700/batch/condor_41.sub | 13 - test/ntuple_qcd_500_700/batch/condor_42.sub | 13 - test/ntuple_qcd_500_700/batch/condor_43.sub | 13 - test/ntuple_qcd_500_700/batch/condor_44.sub | 13 - test/ntuple_qcd_500_700/batch/condor_45.sub | 13 - test/ntuple_qcd_500_700/batch/condor_46.sub | 13 - test/ntuple_qcd_500_700/batch/condor_47.sub | 13 - test/ntuple_qcd_500_700/batch/condor_48.sub | 13 - test/ntuple_qcd_500_700/batch/condor_49.sub | 13 - test/ntuple_qcd_500_700/batch/condor_5.sub | 13 - test/ntuple_qcd_500_700/batch/condor_50.sub | 13 - test/ntuple_qcd_500_700/batch/condor_51.sub | 13 - test/ntuple_qcd_500_700/batch/condor_52.sub | 13 - test/ntuple_qcd_500_700/batch/condor_53.sub | 13 - test/ntuple_qcd_500_700/batch/condor_54.sub | 13 - test/ntuple_qcd_500_700/batch/condor_55.sub | 13 - test/ntuple_qcd_500_700/batch/condor_56.sub | 13 - test/ntuple_qcd_500_700/batch/condor_57.sub | 13 - test/ntuple_qcd_500_700/batch/condor_58.sub | 13 - test/ntuple_qcd_500_700/batch/condor_59.sub | 13 - test/ntuple_qcd_500_700/batch/condor_6.sub | 13 - test/ntuple_qcd_500_700/batch/condor_60.sub | 13 - test/ntuple_qcd_500_700/batch/condor_61.sub | 13 - test/ntuple_qcd_500_700/batch/condor_62.sub | 13 - test/ntuple_qcd_500_700/batch/condor_63.sub | 13 - test/ntuple_qcd_500_700/batch/condor_64.sub | 13 - test/ntuple_qcd_500_700/batch/condor_65.sub | 13 - test/ntuple_qcd_500_700/batch/condor_66.sub | 13 - test/ntuple_qcd_500_700/batch/condor_67.sub | 13 - test/ntuple_qcd_500_700/batch/condor_68.sub | 13 - test/ntuple_qcd_500_700/batch/condor_69.sub | 13 - test/ntuple_qcd_500_700/batch/condor_7.sub | 13 - test/ntuple_qcd_500_700/batch/condor_70.sub | 13 - test/ntuple_qcd_500_700/batch/condor_71.sub | 13 - test/ntuple_qcd_500_700/batch/condor_72.sub | 13 - test/ntuple_qcd_500_700/batch/condor_73.sub | 13 - test/ntuple_qcd_500_700/batch/condor_74.sub | 13 - test/ntuple_qcd_500_700/batch/condor_75.sub | 13 - test/ntuple_qcd_500_700/batch/condor_76.sub | 13 - test/ntuple_qcd_500_700/batch/condor_77.sub | 13 - test/ntuple_qcd_500_700/batch/condor_78.sub | 13 - test/ntuple_qcd_500_700/batch/condor_79.sub | 13 - test/ntuple_qcd_500_700/batch/condor_8.sub | 13 - test/ntuple_qcd_500_700/batch/condor_80.sub | 13 - test/ntuple_qcd_500_700/batch/condor_81.sub | 13 - test/ntuple_qcd_500_700/batch/condor_82.sub | 13 - test/ntuple_qcd_500_700/batch/condor_83.sub | 13 - test/ntuple_qcd_500_700/batch/condor_84.sub | 13 - test/ntuple_qcd_500_700/batch/condor_85.sub | 13 - test/ntuple_qcd_500_700/batch/condor_86.sub | 13 - test/ntuple_qcd_500_700/batch/condor_87.sub | 13 - test/ntuple_qcd_500_700/batch/condor_88.sub | 13 - test/ntuple_qcd_500_700/batch/condor_89.sub | 13 - test/ntuple_qcd_500_700/batch/condor_9.sub | 13 - test/ntuple_qcd_500_700/batch/condor_90.sub | 13 - test/ntuple_qcd_500_700/batch/condor_91.sub | 13 - test/ntuple_qcd_500_700/batch/condor_92.sub | 13 - test/ntuple_qcd_500_700/batch/condor_93.sub | 13 - test/ntuple_qcd_500_700/batch/condor_94.sub | 13 - test/ntuple_qcd_500_700/batch/condor_95.sub | 13 - test/ntuple_qcd_500_700/batch/condor_96.sub | 13 - test/ntuple_qcd_500_700/batch/condor_97.sub | 13 - test/ntuple_qcd_500_700/batch/condor_98.sub | 13 - test/ntuple_qcd_500_700/batch/condor_99.sub | 13 - test/ntuple_qcd_500_700/batch/nJobs.118 | 0 test/ntuple_qcd_500_700/batch/sge_0.sh | 28 - test/ntuple_qcd_500_700/batch/sge_1.sh | 28 - test/ntuple_qcd_500_700/batch/sge_10.sh | 28 - test/ntuple_qcd_500_700/batch/sge_100.sh | 28 - test/ntuple_qcd_500_700/batch/sge_101.sh | 28 - test/ntuple_qcd_500_700/batch/sge_102.sh | 28 - test/ntuple_qcd_500_700/batch/sge_103.sh | 28 - test/ntuple_qcd_500_700/batch/sge_104.sh | 28 - test/ntuple_qcd_500_700/batch/sge_105.sh | 28 - test/ntuple_qcd_500_700/batch/sge_106.sh | 28 - test/ntuple_qcd_500_700/batch/sge_107.sh | 28 - test/ntuple_qcd_500_700/batch/sge_108.sh | 28 - test/ntuple_qcd_500_700/batch/sge_109.sh | 28 - test/ntuple_qcd_500_700/batch/sge_11.sh | 28 - test/ntuple_qcd_500_700/batch/sge_110.sh | 28 - test/ntuple_qcd_500_700/batch/sge_111.sh | 28 - test/ntuple_qcd_500_700/batch/sge_112.sh | 28 - test/ntuple_qcd_500_700/batch/sge_113.sh | 28 - test/ntuple_qcd_500_700/batch/sge_114.sh | 28 - test/ntuple_qcd_500_700/batch/sge_115.sh | 28 - test/ntuple_qcd_500_700/batch/sge_116.sh | 28 - test/ntuple_qcd_500_700/batch/sge_117.sh | 28 - test/ntuple_qcd_500_700/batch/sge_12.sh | 28 - test/ntuple_qcd_500_700/batch/sge_13.sh | 28 - test/ntuple_qcd_500_700/batch/sge_14.sh | 28 - test/ntuple_qcd_500_700/batch/sge_15.sh | 28 - test/ntuple_qcd_500_700/batch/sge_16.sh | 28 - test/ntuple_qcd_500_700/batch/sge_17.sh | 28 - test/ntuple_qcd_500_700/batch/sge_18.sh | 28 - test/ntuple_qcd_500_700/batch/sge_19.sh | 28 - test/ntuple_qcd_500_700/batch/sge_2.sh | 28 - test/ntuple_qcd_500_700/batch/sge_20.sh | 28 - test/ntuple_qcd_500_700/batch/sge_21.sh | 28 - test/ntuple_qcd_500_700/batch/sge_22.sh | 28 - test/ntuple_qcd_500_700/batch/sge_23.sh | 28 - test/ntuple_qcd_500_700/batch/sge_24.sh | 28 - test/ntuple_qcd_500_700/batch/sge_25.sh | 28 - test/ntuple_qcd_500_700/batch/sge_26.sh | 28 - test/ntuple_qcd_500_700/batch/sge_27.sh | 28 - test/ntuple_qcd_500_700/batch/sge_28.sh | 28 - test/ntuple_qcd_500_700/batch/sge_29.sh | 28 - test/ntuple_qcd_500_700/batch/sge_3.sh | 28 - test/ntuple_qcd_500_700/batch/sge_30.sh | 28 - test/ntuple_qcd_500_700/batch/sge_31.sh | 28 - test/ntuple_qcd_500_700/batch/sge_32.sh | 28 - test/ntuple_qcd_500_700/batch/sge_33.sh | 28 - test/ntuple_qcd_500_700/batch/sge_34.sh | 28 - test/ntuple_qcd_500_700/batch/sge_35.sh | 28 - test/ntuple_qcd_500_700/batch/sge_36.sh | 28 - test/ntuple_qcd_500_700/batch/sge_37.sh | 28 - test/ntuple_qcd_500_700/batch/sge_38.sh | 28 - test/ntuple_qcd_500_700/batch/sge_39.sh | 28 - test/ntuple_qcd_500_700/batch/sge_4.sh | 28 - test/ntuple_qcd_500_700/batch/sge_40.sh | 28 - test/ntuple_qcd_500_700/batch/sge_41.sh | 28 - test/ntuple_qcd_500_700/batch/sge_42.sh | 28 - test/ntuple_qcd_500_700/batch/sge_43.sh | 28 - test/ntuple_qcd_500_700/batch/sge_44.sh | 28 - test/ntuple_qcd_500_700/batch/sge_45.sh | 28 - test/ntuple_qcd_500_700/batch/sge_46.sh | 28 - test/ntuple_qcd_500_700/batch/sge_47.sh | 28 - test/ntuple_qcd_500_700/batch/sge_48.sh | 28 - test/ntuple_qcd_500_700/batch/sge_49.sh | 28 - test/ntuple_qcd_500_700/batch/sge_5.sh | 28 - test/ntuple_qcd_500_700/batch/sge_50.sh | 28 - test/ntuple_qcd_500_700/batch/sge_51.sh | 28 - test/ntuple_qcd_500_700/batch/sge_52.sh | 28 - test/ntuple_qcd_500_700/batch/sge_53.sh | 28 - test/ntuple_qcd_500_700/batch/sge_54.sh | 28 - test/ntuple_qcd_500_700/batch/sge_55.sh | 28 - test/ntuple_qcd_500_700/batch/sge_56.sh | 28 - test/ntuple_qcd_500_700/batch/sge_57.sh | 28 - test/ntuple_qcd_500_700/batch/sge_58.sh | 28 - test/ntuple_qcd_500_700/batch/sge_59.sh | 28 - test/ntuple_qcd_500_700/batch/sge_6.sh | 28 - test/ntuple_qcd_500_700/batch/sge_60.sh | 28 - test/ntuple_qcd_500_700/batch/sge_61.sh | 28 - test/ntuple_qcd_500_700/batch/sge_62.sh | 28 - test/ntuple_qcd_500_700/batch/sge_63.sh | 28 - test/ntuple_qcd_500_700/batch/sge_64.sh | 28 - test/ntuple_qcd_500_700/batch/sge_65.sh | 28 - test/ntuple_qcd_500_700/batch/sge_66.sh | 28 - test/ntuple_qcd_500_700/batch/sge_67.sh | 28 - test/ntuple_qcd_500_700/batch/sge_68.sh | 28 - test/ntuple_qcd_500_700/batch/sge_69.sh | 28 - test/ntuple_qcd_500_700/batch/sge_7.sh | 28 - test/ntuple_qcd_500_700/batch/sge_70.sh | 28 - test/ntuple_qcd_500_700/batch/sge_71.sh | 28 - test/ntuple_qcd_500_700/batch/sge_72.sh | 28 - test/ntuple_qcd_500_700/batch/sge_73.sh | 28 - test/ntuple_qcd_500_700/batch/sge_74.sh | 28 - test/ntuple_qcd_500_700/batch/sge_75.sh | 28 - test/ntuple_qcd_500_700/batch/sge_76.sh | 28 - test/ntuple_qcd_500_700/batch/sge_77.sh | 28 - test/ntuple_qcd_500_700/batch/sge_78.sh | 28 - test/ntuple_qcd_500_700/batch/sge_79.sh | 28 - test/ntuple_qcd_500_700/batch/sge_8.sh | 28 - test/ntuple_qcd_500_700/batch/sge_80.sh | 28 - test/ntuple_qcd_500_700/batch/sge_81.sh | 28 - test/ntuple_qcd_500_700/batch/sge_82.sh | 28 - test/ntuple_qcd_500_700/batch/sge_83.sh | 28 - test/ntuple_qcd_500_700/batch/sge_84.sh | 28 - test/ntuple_qcd_500_700/batch/sge_85.sh | 28 - test/ntuple_qcd_500_700/batch/sge_86.sh | 28 - test/ntuple_qcd_500_700/batch/sge_87.sh | 28 - test/ntuple_qcd_500_700/batch/sge_88.sh | 28 - test/ntuple_qcd_500_700/batch/sge_89.sh | 28 - test/ntuple_qcd_500_700/batch/sge_9.sh | 28 - test/ntuple_qcd_500_700/batch/sge_90.sh | 28 - test/ntuple_qcd_500_700/batch/sge_91.sh | 28 - test/ntuple_qcd_500_700/batch/sge_92.sh | 28 - test/ntuple_qcd_500_700/batch/sge_93.sh | 28 - test/ntuple_qcd_500_700/batch/sge_94.sh | 28 - test/ntuple_qcd_500_700/batch/sge_95.sh | 28 - test/ntuple_qcd_500_700/batch/sge_96.sh | 28 - test/ntuple_qcd_500_700/batch/sge_97.sh | 28 - test/ntuple_qcd_500_700/batch/sge_98.sh | 28 - test/ntuple_qcd_500_700/batch/sge_99.sh | 28 - test/ntuple_qcd_500_700/batchscript.sh | 51 -- test/ntuple_qcd_500_700/condor.sub | 13 - test/ntuple_qcd_500_700/helper | 1 - test/ntuple_qcd_500_700/output | 1 - test/ntuple_qcd_500_700/sge_sub.sh | 118 ----- test/ntuple_qcd_700_1000/ademoor.cc | Bin 5609 -> 0 bytes test/ntuple_qcd_700_1000/batch/condor_0.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_1.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_10.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_100.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_101.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_102.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_103.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_104.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_105.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_106.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_107.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_108.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_109.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_11.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_110.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_111.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_112.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_113.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_114.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_115.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_116.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_117.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_118.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_119.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_12.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_120.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_121.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_122.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_123.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_124.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_125.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_126.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_127.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_128.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_129.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_13.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_130.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_131.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_132.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_133.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_134.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_135.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_136.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_137.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_138.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_139.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_14.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_140.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_141.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_142.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_143.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_144.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_145.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_146.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_147.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_148.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_149.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_15.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_150.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_151.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_152.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_153.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_154.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_155.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_156.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_157.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_158.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_159.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_16.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_160.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_161.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_162.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_163.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_164.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_165.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_166.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_167.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_168.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_169.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_17.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_170.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_171.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_172.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_173.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_174.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_175.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_176.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_177.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_178.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_179.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_18.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_180.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_181.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_182.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_183.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_184.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_185.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_186.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_187.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_188.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_189.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_19.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_190.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_191.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_192.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_193.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_194.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_195.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_196.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_197.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_198.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_199.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_2.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_20.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_200.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_201.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_202.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_203.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_204.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_205.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_206.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_207.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_208.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_209.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_21.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_210.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_211.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_212.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_213.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_214.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_215.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_216.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_217.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_218.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_219.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_22.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_220.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_221.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_222.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_223.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_224.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_225.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_226.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_227.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_228.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_229.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_23.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_230.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_231.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_232.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_233.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_234.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_235.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_236.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_237.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_238.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_239.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_24.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_240.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_241.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_242.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_243.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_244.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_245.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_246.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_247.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_248.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_249.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_25.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_250.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_251.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_252.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_253.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_254.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_255.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_256.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_257.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_258.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_259.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_26.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_260.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_261.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_262.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_263.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_264.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_265.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_266.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_267.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_268.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_269.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_27.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_270.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_271.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_272.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_273.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_274.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_275.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_276.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_277.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_278.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_279.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_28.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_280.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_281.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_282.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_283.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_284.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_285.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_286.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_287.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_288.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_289.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_29.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_290.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_291.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_292.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_293.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_294.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_295.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_296.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_297.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_298.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_299.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_3.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_30.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_300.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_301.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_302.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_303.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_304.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_305.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_306.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_307.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_308.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_309.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_31.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_310.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_311.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_312.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_313.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_314.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_315.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_316.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_317.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_318.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_319.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_32.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_320.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_321.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_322.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_323.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_324.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_325.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_326.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_327.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_328.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_329.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_33.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_330.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_331.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_332.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_333.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_334.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_335.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_336.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_337.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_338.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_339.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_34.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_340.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_341.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_342.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_343.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_344.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_345.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_346.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_347.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_348.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_349.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_35.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_350.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_351.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_352.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_353.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_354.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_355.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_356.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_357.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_358.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_359.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_36.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_360.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_361.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_362.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_363.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_364.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_365.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_366.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_367.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_368.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_369.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_37.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_370.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_371.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_372.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_373.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_374.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_375.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_376.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_377.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_378.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_379.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_38.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_380.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_381.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_382.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_383.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_384.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_385.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_386.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_387.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_388.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_389.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_39.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_390.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_391.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_392.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_393.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_394.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_395.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_396.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_397.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_398.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_399.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_4.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_40.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_400.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_401.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_402.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_403.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_404.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_405.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_406.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_407.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_408.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_409.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_41.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_410.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_411.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_412.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_413.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_414.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_415.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_416.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_417.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_418.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_419.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_42.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_420.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_421.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_422.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_423.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_424.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_425.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_426.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_427.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_428.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_429.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_43.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_430.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_431.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_432.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_433.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_434.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_435.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_436.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_437.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_438.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_439.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_44.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_440.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_441.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_442.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_443.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_444.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_445.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_446.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_447.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_448.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_449.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_45.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_450.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_451.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_452.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_453.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_454.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_455.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_456.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_457.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_458.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_459.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_46.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_460.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_461.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_462.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_463.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_464.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_465.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_466.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_467.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_468.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_469.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_47.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_470.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_471.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_472.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_473.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_474.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_475.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_476.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_477.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_478.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_479.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_48.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_480.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_481.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_482.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_483.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_484.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_485.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_486.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_487.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_488.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_489.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_49.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_490.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_491.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_492.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_493.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_494.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_495.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_496.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_497.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_498.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_499.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_5.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_50.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_51.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_52.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_53.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_54.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_55.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_56.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_57.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_58.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_59.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_6.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_60.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_61.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_62.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_63.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_64.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_65.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_66.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_67.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_68.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_69.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_7.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_70.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_71.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_72.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_73.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_74.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_75.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_76.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_77.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_78.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_79.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_8.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_80.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_81.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_82.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_83.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_84.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_85.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_86.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_87.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_88.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_89.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_9.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_90.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_91.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_92.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_93.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_94.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_95.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_96.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_97.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_98.sub | 13 - test/ntuple_qcd_700_1000/batch/condor_99.sub | 13 - test/ntuple_qcd_700_1000/batch/nJobs.500 | 0 test/ntuple_qcd_700_1000/batch/sge_0.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_1.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_10.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_100.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_101.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_102.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_103.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_104.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_105.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_106.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_107.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_108.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_109.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_11.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_110.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_111.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_112.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_113.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_114.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_115.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_116.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_117.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_118.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_119.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_12.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_120.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_121.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_122.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_123.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_124.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_125.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_126.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_127.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_128.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_129.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_13.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_130.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_131.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_132.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_133.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_134.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_135.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_136.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_137.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_138.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_139.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_14.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_140.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_141.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_142.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_143.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_144.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_145.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_146.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_147.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_148.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_149.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_15.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_150.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_151.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_152.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_153.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_154.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_155.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_156.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_157.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_158.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_159.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_16.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_160.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_161.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_162.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_163.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_164.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_165.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_166.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_167.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_168.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_169.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_17.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_170.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_171.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_172.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_173.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_174.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_175.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_176.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_177.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_178.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_179.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_18.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_180.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_181.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_182.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_183.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_184.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_185.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_186.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_187.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_188.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_189.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_19.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_190.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_191.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_192.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_193.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_194.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_195.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_196.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_197.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_198.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_199.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_2.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_20.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_200.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_201.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_202.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_203.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_204.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_205.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_206.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_207.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_208.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_209.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_21.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_210.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_211.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_212.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_213.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_214.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_215.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_216.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_217.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_218.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_219.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_22.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_220.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_221.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_222.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_223.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_224.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_225.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_226.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_227.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_228.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_229.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_23.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_230.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_231.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_232.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_233.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_234.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_235.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_236.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_237.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_238.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_239.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_24.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_240.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_241.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_242.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_243.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_244.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_245.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_246.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_247.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_248.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_249.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_25.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_250.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_251.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_252.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_253.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_254.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_255.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_256.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_257.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_258.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_259.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_26.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_260.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_261.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_262.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_263.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_264.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_265.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_266.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_267.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_268.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_269.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_27.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_270.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_271.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_272.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_273.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_274.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_275.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_276.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_277.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_278.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_279.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_28.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_280.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_281.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_282.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_283.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_284.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_285.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_286.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_287.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_288.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_289.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_29.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_290.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_291.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_292.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_293.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_294.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_295.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_296.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_297.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_298.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_299.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_3.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_30.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_300.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_301.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_302.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_303.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_304.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_305.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_306.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_307.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_308.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_309.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_31.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_310.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_311.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_312.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_313.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_314.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_315.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_316.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_317.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_318.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_319.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_32.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_320.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_321.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_322.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_323.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_324.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_325.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_326.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_327.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_328.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_329.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_33.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_330.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_331.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_332.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_333.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_334.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_335.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_336.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_337.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_338.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_339.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_34.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_340.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_341.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_342.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_343.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_344.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_345.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_346.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_347.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_348.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_349.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_35.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_350.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_351.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_352.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_353.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_354.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_355.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_356.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_357.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_358.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_359.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_36.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_360.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_361.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_362.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_363.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_364.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_365.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_366.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_367.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_368.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_369.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_37.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_370.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_371.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_372.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_373.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_374.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_375.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_376.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_377.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_378.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_379.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_38.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_380.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_381.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_382.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_383.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_384.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_385.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_386.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_387.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_388.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_389.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_39.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_390.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_391.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_392.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_393.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_394.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_395.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_396.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_397.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_398.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_399.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_4.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_40.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_400.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_401.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_402.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_403.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_404.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_405.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_406.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_407.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_408.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_409.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_41.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_410.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_411.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_412.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_413.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_414.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_415.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_416.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_417.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_418.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_419.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_42.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_420.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_421.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_422.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_423.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_424.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_425.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_426.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_427.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_428.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_429.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_43.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_430.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_431.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_432.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_433.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_434.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_435.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_436.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_437.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_438.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_439.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_44.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_440.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_441.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_442.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_443.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_444.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_445.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_446.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_447.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_448.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_449.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_45.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_450.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_451.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_452.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_453.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_454.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_455.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_456.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_457.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_458.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_459.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_46.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_460.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_461.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_462.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_463.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_464.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_465.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_466.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_467.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_468.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_469.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_47.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_470.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_471.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_472.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_473.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_474.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_475.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_476.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_477.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_478.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_479.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_48.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_480.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_481.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_482.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_483.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_484.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_485.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_486.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_487.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_488.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_489.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_49.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_490.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_491.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_492.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_493.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_494.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_495.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_496.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_497.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_498.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_499.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_5.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_50.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_51.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_52.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_53.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_54.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_55.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_56.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_57.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_58.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_59.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_6.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_60.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_61.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_62.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_63.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_64.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_65.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_66.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_67.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_68.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_69.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_7.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_70.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_71.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_72.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_73.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_74.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_75.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_76.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_77.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_78.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_79.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_8.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_80.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_81.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_82.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_83.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_84.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_85.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_86.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_87.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_88.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_89.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_9.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_90.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_91.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_92.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_93.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_94.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_95.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_96.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_97.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_98.sh | 28 - test/ntuple_qcd_700_1000/batch/sge_99.sh | 28 - test/ntuple_qcd_700_1000/batchscript.sh | 51 -- test/ntuple_qcd_700_1000/condor.sub | 13 - test/ntuple_qcd_700_1000/helper | 1 - test/ntuple_qcd_700_1000/output | 1 - test/ntuple_qcd_700_1000/sge_sub.sh | 500 ------------------ 6268 files changed, 131029 deletions(-) delete mode 100644 test/DeepNtuplizer.py delete mode 100644 test/ntuple_bulk_grav_1/ademoor.cc delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_0.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_1.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_10.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_100.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_101.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_102.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_103.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_104.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_105.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_106.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_107.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_108.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_109.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_11.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_110.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_111.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_112.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_113.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_114.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_115.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_116.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_117.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_118.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_119.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_12.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_120.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_121.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_122.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_123.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_124.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_125.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_126.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_127.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_128.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_129.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_13.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_130.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_131.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_132.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_133.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_134.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_135.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_136.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_137.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_138.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_139.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_14.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_140.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_141.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_142.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_143.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_144.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_145.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_146.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_147.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_148.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_149.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_15.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_150.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_151.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_152.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_153.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_154.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_155.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_156.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_157.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_158.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_159.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_16.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_160.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_161.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_162.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_163.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_164.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_165.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_166.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_167.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_168.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_169.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_17.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_170.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_171.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_172.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_173.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_174.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_175.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_176.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_177.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_178.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_179.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_18.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_180.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_181.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_182.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_183.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_184.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_185.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_186.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_187.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_188.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_189.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_19.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_190.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_191.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_192.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_193.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_194.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_195.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_196.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_197.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_198.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_199.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_2.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_20.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_200.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_201.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_21.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_22.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_23.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_24.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_25.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_26.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_27.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_28.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_29.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_3.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_30.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_31.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_32.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_33.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_34.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_35.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_36.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_37.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_38.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_39.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_4.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_40.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_41.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_42.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_43.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_44.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_45.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_46.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_47.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_48.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_49.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_5.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_50.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_51.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_52.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_53.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_54.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_55.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_56.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_57.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_58.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_59.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_6.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_60.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_61.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_62.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_63.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_64.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_65.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_66.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_67.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_68.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_69.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_7.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_70.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_71.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_72.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_73.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_74.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_75.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_76.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_77.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_78.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_79.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_8.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_80.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_81.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_82.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_83.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_84.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_85.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_86.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_87.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_88.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_89.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_9.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_90.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_91.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_92.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_93.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_94.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_95.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_96.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_97.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_98.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/condor_99.sub delete mode 100644 test/ntuple_bulk_grav_1/batch/nJobs.202 delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_0.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_1.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_10.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_100.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_101.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_102.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_103.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_104.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_105.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_106.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_107.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_108.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_109.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_11.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_110.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_111.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_112.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_113.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_114.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_115.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_116.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_117.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_118.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_119.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_12.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_120.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_121.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_122.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_123.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_124.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_125.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_126.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_127.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_128.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_129.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_13.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_130.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_131.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_132.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_133.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_134.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_135.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_136.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_137.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_138.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_139.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_14.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_140.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_141.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_142.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_143.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_144.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_145.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_146.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_147.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_148.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_149.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_15.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_150.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_151.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_152.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_153.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_154.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_155.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_156.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_157.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_158.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_159.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_16.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_160.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_161.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_162.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_163.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_164.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_165.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_166.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_167.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_168.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_169.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_17.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_170.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_171.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_172.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_173.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_174.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_175.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_176.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_177.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_178.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_179.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_18.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_180.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_181.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_182.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_183.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_184.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_185.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_186.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_187.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_188.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_189.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_19.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_190.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_191.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_192.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_193.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_194.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_195.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_196.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_197.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_198.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_199.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_2.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_20.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_200.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_201.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_21.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_22.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_23.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_24.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_25.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_26.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_27.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_28.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_29.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_3.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_30.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_31.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_32.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_33.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_34.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_35.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_36.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_37.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_38.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_39.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_4.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_40.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_41.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_42.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_43.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_44.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_45.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_46.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_47.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_48.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_49.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_5.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_50.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_51.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_52.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_53.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_54.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_55.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_56.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_57.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_58.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_59.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_6.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_60.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_61.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_62.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_63.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_64.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_65.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_66.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_67.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_68.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_69.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_7.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_70.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_71.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_72.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_73.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_74.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_75.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_76.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_77.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_78.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_79.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_8.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_80.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_81.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_82.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_83.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_84.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_85.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_86.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_87.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_88.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_89.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_9.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_90.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_91.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_92.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_93.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_94.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_95.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_96.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_97.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_98.sh delete mode 100755 test/ntuple_bulk_grav_1/batch/sge_99.sh delete mode 100755 test/ntuple_bulk_grav_1/batchscript.sh delete mode 100644 test/ntuple_bulk_grav_1/condor.sub delete mode 120000 test/ntuple_bulk_grav_1/helper delete mode 120000 test/ntuple_bulk_grav_1/output delete mode 100755 test/ntuple_bulk_grav_1/sge_sub.sh delete mode 100644 test/ntuple_bulk_grav_2/ademoor.cc delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_0.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_1.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_10.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_100.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_101.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_102.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_103.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_104.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_105.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_106.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_107.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_108.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_109.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_11.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_110.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_111.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_112.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_113.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_114.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_115.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_116.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_117.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_118.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_119.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_12.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_120.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_121.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_122.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_123.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_124.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_125.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_126.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_127.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_128.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_129.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_13.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_130.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_131.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_132.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_133.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_134.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_135.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_136.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_137.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_138.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_139.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_14.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_140.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_141.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_142.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_143.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_144.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_145.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_146.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_147.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_148.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_149.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_15.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_150.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_151.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_152.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_153.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_154.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_155.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_156.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_157.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_158.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_159.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_16.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_160.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_161.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_162.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_163.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_164.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_165.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_166.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_167.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_168.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_169.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_17.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_170.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_171.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_172.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_173.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_174.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_175.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_176.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_177.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_178.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_179.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_18.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_19.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_2.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_20.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_21.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_22.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_23.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_24.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_25.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_26.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_27.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_28.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_29.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_3.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_30.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_31.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_32.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_33.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_34.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_35.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_36.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_37.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_38.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_39.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_4.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_40.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_41.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_42.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_43.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_44.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_45.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_46.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_47.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_48.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_49.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_5.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_50.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_51.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_52.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_53.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_54.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_55.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_56.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_57.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_58.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_59.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_6.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_60.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_61.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_62.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_63.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_64.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_65.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_66.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_67.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_68.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_69.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_7.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_70.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_71.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_72.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_73.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_74.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_75.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_76.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_77.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_78.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_79.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_8.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_80.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_81.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_82.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_83.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_84.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_85.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_86.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_87.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_88.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_89.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_9.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_90.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_91.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_92.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_93.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_94.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_95.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_96.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_97.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_98.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/condor_99.sub delete mode 100644 test/ntuple_bulk_grav_2/batch/nJobs.180 delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_0.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_1.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_10.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_100.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_101.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_102.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_103.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_104.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_105.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_106.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_107.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_108.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_109.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_11.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_110.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_111.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_112.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_113.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_114.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_115.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_116.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_117.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_118.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_119.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_12.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_120.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_121.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_122.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_123.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_124.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_125.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_126.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_127.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_128.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_129.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_13.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_130.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_131.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_132.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_133.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_134.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_135.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_136.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_137.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_138.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_139.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_14.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_140.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_141.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_142.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_143.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_144.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_145.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_146.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_147.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_148.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_149.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_15.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_150.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_151.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_152.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_153.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_154.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_155.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_156.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_157.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_158.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_159.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_16.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_160.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_161.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_162.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_163.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_164.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_165.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_166.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_167.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_168.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_169.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_17.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_170.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_171.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_172.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_173.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_174.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_175.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_176.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_177.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_178.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_179.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_18.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_19.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_2.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_20.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_21.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_22.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_23.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_24.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_25.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_26.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_27.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_28.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_29.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_3.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_30.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_31.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_32.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_33.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_34.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_35.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_36.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_37.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_38.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_39.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_4.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_40.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_41.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_42.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_43.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_44.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_45.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_46.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_47.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_48.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_49.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_5.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_50.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_51.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_52.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_53.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_54.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_55.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_56.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_57.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_58.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_59.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_6.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_60.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_61.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_62.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_63.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_64.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_65.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_66.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_67.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_68.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_69.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_7.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_70.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_71.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_72.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_73.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_74.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_75.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_76.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_77.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_78.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_79.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_8.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_80.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_81.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_82.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_83.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_84.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_85.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_86.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_87.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_88.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_89.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_9.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_90.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_91.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_92.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_93.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_94.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_95.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_96.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_97.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_98.sh delete mode 100755 test/ntuple_bulk_grav_2/batch/sge_99.sh delete mode 100755 test/ntuple_bulk_grav_2/batchscript.sh delete mode 100644 test/ntuple_bulk_grav_2/condor.sub delete mode 120000 test/ntuple_bulk_grav_2/helper delete mode 120000 test/ntuple_bulk_grav_2/output delete mode 100755 test/ntuple_bulk_grav_2/sge_sub.sh delete mode 100644 test/ntuple_bulk_grav_3/ademoor.cc delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_0.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_1.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_10.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_100.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_101.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_102.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_103.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_104.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_105.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_106.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_107.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_108.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_109.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_11.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_110.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_111.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_112.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_113.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_114.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_115.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_116.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_117.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_118.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_119.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_12.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_120.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_121.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_122.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_123.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_124.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_125.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_126.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_127.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_128.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_129.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_13.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_130.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_131.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_132.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_133.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_134.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_135.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_136.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_137.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_138.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_139.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_14.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_140.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_141.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_142.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_143.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_144.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_145.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_146.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_147.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_148.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_149.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_15.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_150.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_151.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_152.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_153.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_154.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_155.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_156.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_157.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_158.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_159.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_16.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_160.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_161.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_162.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_163.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_164.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_165.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_166.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_167.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_168.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_169.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_17.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_170.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_171.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_172.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_173.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_174.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_175.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_176.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_177.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_178.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_179.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_18.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_180.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_181.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_182.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_19.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_2.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_20.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_21.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_22.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_23.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_24.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_25.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_26.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_27.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_28.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_29.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_3.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_30.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_31.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_32.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_33.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_34.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_35.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_36.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_37.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_38.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_39.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_4.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_40.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_41.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_42.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_43.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_44.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_45.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_46.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_47.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_48.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_49.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_5.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_50.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_51.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_52.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_53.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_54.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_55.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_56.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_57.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_58.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_59.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_6.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_60.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_61.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_62.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_63.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_64.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_65.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_66.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_67.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_68.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_69.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_7.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_70.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_71.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_72.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_73.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_74.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_75.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_76.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_77.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_78.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_79.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_8.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_80.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_81.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_82.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_83.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_84.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_85.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_86.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_87.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_88.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_89.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_9.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_90.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_91.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_92.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_93.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_94.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_95.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_96.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_97.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_98.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/condor_99.sub delete mode 100644 test/ntuple_bulk_grav_3/batch/nJobs.183 delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_0.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_1.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_10.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_100.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_101.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_102.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_103.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_104.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_105.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_106.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_107.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_108.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_109.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_11.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_110.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_111.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_112.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_113.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_114.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_115.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_116.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_117.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_118.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_119.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_12.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_120.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_121.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_122.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_123.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_124.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_125.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_126.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_127.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_128.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_129.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_13.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_130.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_131.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_132.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_133.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_134.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_135.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_136.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_137.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_138.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_139.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_14.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_140.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_141.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_142.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_143.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_144.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_145.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_146.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_147.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_148.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_149.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_15.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_150.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_151.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_152.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_153.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_154.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_155.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_156.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_157.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_158.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_159.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_16.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_160.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_161.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_162.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_163.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_164.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_165.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_166.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_167.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_168.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_169.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_17.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_170.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_171.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_172.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_173.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_174.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_175.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_176.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_177.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_178.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_179.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_18.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_180.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_181.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_182.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_19.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_2.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_20.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_21.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_22.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_23.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_24.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_25.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_26.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_27.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_28.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_29.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_3.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_30.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_31.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_32.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_33.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_34.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_35.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_36.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_37.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_38.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_39.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_4.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_40.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_41.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_42.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_43.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_44.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_45.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_46.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_47.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_48.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_49.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_5.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_50.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_51.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_52.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_53.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_54.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_55.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_56.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_57.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_58.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_59.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_6.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_60.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_61.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_62.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_63.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_64.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_65.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_66.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_67.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_68.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_69.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_7.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_70.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_71.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_72.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_73.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_74.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_75.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_76.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_77.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_78.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_79.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_8.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_80.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_81.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_82.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_83.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_84.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_85.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_86.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_87.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_88.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_89.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_9.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_90.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_91.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_92.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_93.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_94.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_95.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_96.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_97.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_98.sh delete mode 100755 test/ntuple_bulk_grav_3/batch/sge_99.sh delete mode 100755 test/ntuple_bulk_grav_3/batchscript.sh delete mode 100644 test/ntuple_bulk_grav_3/condor.sub delete mode 120000 test/ntuple_bulk_grav_3/helper delete mode 120000 test/ntuple_bulk_grav_3/output delete mode 100755 test/ntuple_bulk_grav_3/sge_sub.sh delete mode 100644 test/ntuple_qcd_1000_1500/ademoor.cc delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_118.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_119.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_120.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_121.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_122.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_123.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_124.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_125.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_126.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_127.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_128.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_129.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_130.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_131.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_132.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_133.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_134.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_135.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_136.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_137.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_138.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_139.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_140.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_141.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_142.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_143.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_144.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_145.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_146.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_147.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_148.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_149.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_150.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_151.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_152.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_153.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_154.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_155.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_156.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_157.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_158.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_159.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_160.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_161.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_162.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_163.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_164.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_165.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_166.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_167.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_168.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_169.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_170.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_171.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_172.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_173.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_174.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_175.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_176.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_177.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_178.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_179.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_180.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_181.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_182.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_183.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_184.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_185.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_186.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_187.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_188.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_189.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_190.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_191.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_192.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_193.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_194.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_195.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_1000_1500/batch/nJobs.196 delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_118.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_119.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_120.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_121.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_122.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_123.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_124.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_125.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_126.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_127.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_128.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_129.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_130.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_131.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_132.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_133.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_134.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_135.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_136.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_137.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_138.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_139.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_140.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_141.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_142.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_143.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_144.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_145.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_146.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_147.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_148.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_149.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_150.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_151.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_152.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_153.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_154.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_155.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_156.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_157.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_158.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_159.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_160.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_161.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_162.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_163.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_164.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_165.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_166.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_167.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_168.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_169.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_170.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_171.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_172.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_173.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_174.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_175.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_176.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_177.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_178.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_179.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_180.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_181.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_182.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_183.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_184.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_185.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_186.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_187.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_188.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_189.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_190.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_191.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_192.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_193.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_194.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_195.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_1000_1500/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_1000_1500/batchscript.sh delete mode 100644 test/ntuple_qcd_1000_1500/condor.sub delete mode 120000 test/ntuple_qcd_1000_1500/helper delete mode 120000 test/ntuple_qcd_1000_1500/output delete mode 100755 test/ntuple_qcd_1000_1500/sge_sub.sh delete mode 100644 test/ntuple_qcd_100_200/ademoor.cc delete mode 100644 test/ntuple_qcd_100_200/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_118.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_119.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_120.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_121.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_122.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_123.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_124.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_125.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_126.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_127.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_128.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_129.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_130.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_131.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_132.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_133.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_134.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_135.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_136.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_137.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_138.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_139.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_140.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_141.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_142.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_143.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_144.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_145.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_146.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_147.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_148.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_149.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_150.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_151.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_152.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_153.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_154.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_155.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_156.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_157.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_158.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_159.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_160.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_161.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_162.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_163.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_164.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_165.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_166.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_167.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_168.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_169.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_170.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_171.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_172.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_173.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_174.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_175.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_176.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_177.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_178.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_179.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_180.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_181.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_182.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_183.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_184.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_185.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_186.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_187.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_188.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_189.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_190.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_191.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_192.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_193.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_194.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_195.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_196.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_197.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_198.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_199.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_200.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_201.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_202.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_203.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_204.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_205.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_206.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_207.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_208.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_209.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_210.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_211.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_212.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_213.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_214.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_215.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_216.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_217.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_218.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_219.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_220.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_221.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_222.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_223.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_224.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_225.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_226.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_227.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_228.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_229.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_230.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_231.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_232.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_233.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_234.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_235.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_236.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_237.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_238.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_239.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_240.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_241.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_242.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_243.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_244.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_245.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_246.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_247.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_248.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_249.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_250.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_251.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_252.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_253.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_254.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_255.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_256.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_257.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_258.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_259.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_260.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_261.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_262.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_263.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_264.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_265.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_266.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_267.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_268.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_269.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_270.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_271.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_272.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_273.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_274.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_275.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_276.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_277.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_278.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_279.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_280.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_281.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_282.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_283.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_284.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_285.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_286.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_287.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_288.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_289.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_290.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_291.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_292.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_293.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_294.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_295.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_296.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_297.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_298.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_299.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_300.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_301.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_302.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_303.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_304.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_305.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_306.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_307.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_308.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_309.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_310.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_311.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_312.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_313.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_314.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_315.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_316.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_317.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_318.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_319.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_320.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_321.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_322.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_323.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_324.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_325.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_326.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_327.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_328.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_329.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_330.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_331.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_332.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_333.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_334.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_335.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_336.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_337.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_338.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_339.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_340.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_341.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_342.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_343.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_344.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_345.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_346.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_347.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_348.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_349.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_350.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_351.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_352.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_353.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_354.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_355.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_356.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_357.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_358.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_359.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_360.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_361.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_362.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_363.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_364.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_365.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_366.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_367.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_368.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_369.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_370.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_371.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_372.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_373.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_374.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_375.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_376.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_377.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_378.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_379.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_380.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_381.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_382.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_383.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_384.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_385.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_386.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_387.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_388.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_389.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_390.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_391.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_392.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_393.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_394.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_395.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_396.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_397.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_398.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_399.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_400.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_401.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_402.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_403.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_404.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_405.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_406.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_407.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_408.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_409.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_410.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_411.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_412.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_413.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_414.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_415.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_416.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_417.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_418.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_419.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_420.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_421.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_422.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_423.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_424.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_425.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_426.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_427.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_428.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_429.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_430.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_431.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_432.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_433.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_434.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_435.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_436.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_437.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_438.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_439.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_440.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_441.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_442.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_443.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_444.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_445.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_446.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_447.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_448.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_449.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_450.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_451.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_452.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_453.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_454.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_455.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_456.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_457.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_458.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_459.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_460.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_461.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_462.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_463.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_464.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_465.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_466.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_467.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_468.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_469.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_470.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_471.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_472.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_473.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_474.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_475.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_476.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_477.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_478.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_479.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_480.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_481.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_482.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_483.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_484.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_485.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_486.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_487.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_488.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_489.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_490.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_491.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_492.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_493.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_494.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_495.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_496.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_497.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_498.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_499.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_100_200/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_100_200/batch/nJobs.500 delete mode 100755 test/ntuple_qcd_100_200/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_118.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_119.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_120.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_121.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_122.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_123.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_124.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_125.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_126.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_127.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_128.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_129.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_130.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_131.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_132.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_133.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_134.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_135.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_136.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_137.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_138.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_139.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_140.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_141.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_142.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_143.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_144.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_145.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_146.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_147.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_148.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_149.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_150.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_151.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_152.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_153.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_154.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_155.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_156.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_157.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_158.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_159.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_160.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_161.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_162.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_163.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_164.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_165.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_166.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_167.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_168.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_169.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_170.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_171.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_172.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_173.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_174.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_175.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_176.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_177.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_178.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_179.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_180.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_181.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_182.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_183.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_184.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_185.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_186.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_187.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_188.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_189.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_190.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_191.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_192.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_193.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_194.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_195.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_196.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_197.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_198.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_199.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_200.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_201.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_202.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_203.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_204.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_205.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_206.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_207.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_208.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_209.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_210.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_211.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_212.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_213.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_214.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_215.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_216.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_217.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_218.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_219.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_220.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_221.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_222.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_223.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_224.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_225.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_226.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_227.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_228.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_229.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_230.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_231.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_232.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_233.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_234.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_235.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_236.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_237.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_238.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_239.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_240.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_241.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_242.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_243.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_244.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_245.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_246.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_247.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_248.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_249.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_250.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_251.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_252.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_253.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_254.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_255.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_256.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_257.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_258.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_259.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_260.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_261.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_262.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_263.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_264.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_265.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_266.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_267.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_268.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_269.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_270.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_271.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_272.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_273.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_274.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_275.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_276.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_277.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_278.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_279.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_280.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_281.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_282.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_283.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_284.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_285.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_286.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_287.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_288.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_289.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_290.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_291.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_292.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_293.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_294.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_295.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_296.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_297.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_298.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_299.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_300.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_301.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_302.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_303.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_304.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_305.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_306.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_307.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_308.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_309.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_310.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_311.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_312.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_313.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_314.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_315.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_316.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_317.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_318.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_319.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_320.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_321.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_322.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_323.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_324.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_325.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_326.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_327.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_328.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_329.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_330.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_331.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_332.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_333.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_334.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_335.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_336.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_337.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_338.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_339.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_340.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_341.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_342.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_343.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_344.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_345.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_346.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_347.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_348.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_349.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_350.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_351.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_352.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_353.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_354.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_355.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_356.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_357.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_358.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_359.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_360.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_361.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_362.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_363.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_364.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_365.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_366.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_367.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_368.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_369.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_370.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_371.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_372.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_373.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_374.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_375.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_376.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_377.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_378.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_379.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_380.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_381.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_382.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_383.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_384.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_385.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_386.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_387.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_388.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_389.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_390.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_391.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_392.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_393.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_394.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_395.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_396.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_397.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_398.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_399.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_400.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_401.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_402.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_403.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_404.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_405.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_406.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_407.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_408.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_409.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_410.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_411.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_412.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_413.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_414.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_415.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_416.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_417.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_418.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_419.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_420.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_421.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_422.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_423.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_424.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_425.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_426.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_427.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_428.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_429.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_430.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_431.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_432.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_433.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_434.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_435.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_436.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_437.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_438.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_439.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_440.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_441.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_442.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_443.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_444.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_445.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_446.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_447.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_448.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_449.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_450.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_451.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_452.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_453.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_454.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_455.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_456.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_457.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_458.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_459.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_460.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_461.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_462.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_463.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_464.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_465.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_466.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_467.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_468.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_469.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_470.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_471.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_472.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_473.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_474.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_475.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_476.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_477.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_478.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_479.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_480.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_481.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_482.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_483.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_484.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_485.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_486.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_487.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_488.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_489.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_490.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_491.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_492.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_493.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_494.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_495.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_496.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_497.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_498.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_499.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_100_200/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_100_200/batchscript.sh delete mode 100644 test/ntuple_qcd_100_200/condor.sub delete mode 120000 test/ntuple_qcd_100_200/helper delete mode 120000 test/ntuple_qcd_100_200/output delete mode 100755 test/ntuple_qcd_100_200/sge_sub.sh delete mode 100644 test/ntuple_qcd_1500_2000/ademoor.cc delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_118.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_119.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_120.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_121.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_122.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_123.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_124.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_125.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_126.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_127.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_128.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_129.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_130.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_131.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_132.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_133.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_134.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_135.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_136.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_137.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_138.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_1500_2000/batch/nJobs.139 delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_118.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_119.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_120.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_121.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_122.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_123.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_124.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_125.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_126.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_127.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_128.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_129.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_130.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_131.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_132.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_133.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_134.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_135.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_136.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_137.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_138.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_1500_2000/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_1500_2000/batchscript.sh delete mode 100644 test/ntuple_qcd_1500_2000/condor.sub delete mode 120000 test/ntuple_qcd_1500_2000/helper delete mode 120000 test/ntuple_qcd_1500_2000/output delete mode 100755 test/ntuple_qcd_1500_2000/sge_sub.sh delete mode 100644 test/ntuple_qcd_2000_Inf/ademoor.cc delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_2000_Inf/batch/nJobs.77 delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_2000_Inf/batchscript.sh delete mode 100644 test/ntuple_qcd_2000_Inf/condor.sub delete mode 120000 test/ntuple_qcd_2000_Inf/helper delete mode 120000 test/ntuple_qcd_2000_Inf/output delete mode 100755 test/ntuple_qcd_2000_Inf/sge_sub.sh delete mode 100644 test/ntuple_qcd_200_300/ademoor.cc delete mode 100644 test/ntuple_qcd_200_300/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_118.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_119.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_120.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_121.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_122.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_123.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_124.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_125.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_126.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_127.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_128.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_129.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_130.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_131.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_132.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_133.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_134.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_135.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_136.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_137.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_138.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_139.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_140.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_141.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_142.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_143.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_144.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_145.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_146.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_147.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_148.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_149.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_150.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_151.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_152.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_153.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_154.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_155.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_156.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_157.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_158.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_159.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_160.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_161.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_162.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_163.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_164.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_165.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_166.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_167.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_168.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_169.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_170.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_171.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_172.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_173.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_174.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_175.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_176.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_177.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_178.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_179.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_180.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_181.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_182.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_183.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_184.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_185.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_186.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_187.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_188.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_189.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_190.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_191.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_192.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_193.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_194.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_195.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_196.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_197.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_198.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_199.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_200.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_201.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_202.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_203.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_204.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_205.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_206.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_207.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_208.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_209.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_210.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_211.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_212.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_213.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_214.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_215.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_216.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_217.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_218.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_219.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_220.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_221.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_222.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_223.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_224.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_225.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_226.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_227.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_228.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_229.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_230.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_231.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_232.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_233.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_234.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_235.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_236.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_237.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_238.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_239.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_240.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_241.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_242.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_243.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_244.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_245.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_246.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_247.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_248.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_249.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_250.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_251.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_252.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_253.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_254.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_255.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_256.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_257.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_258.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_259.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_260.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_261.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_262.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_263.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_264.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_265.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_266.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_267.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_268.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_269.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_270.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_271.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_272.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_273.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_274.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_275.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_276.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_277.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_278.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_279.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_280.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_281.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_282.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_283.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_284.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_285.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_286.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_287.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_288.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_289.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_290.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_291.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_292.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_293.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_294.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_295.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_296.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_297.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_298.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_299.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_300.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_301.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_302.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_303.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_304.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_305.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_306.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_307.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_308.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_309.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_310.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_311.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_312.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_313.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_314.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_315.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_316.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_317.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_318.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_319.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_320.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_321.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_322.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_323.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_324.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_325.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_326.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_327.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_328.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_329.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_330.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_331.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_332.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_333.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_334.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_335.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_336.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_337.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_338.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_339.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_340.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_341.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_342.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_343.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_344.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_345.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_346.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_347.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_348.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_349.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_350.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_351.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_352.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_353.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_354.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_355.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_356.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_357.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_358.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_359.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_360.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_361.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_362.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_363.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_364.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_365.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_366.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_367.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_368.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_369.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_370.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_371.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_372.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_373.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_374.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_375.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_376.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_377.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_378.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_379.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_380.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_381.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_382.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_383.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_384.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_385.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_386.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_387.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_388.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_389.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_390.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_391.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_392.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_393.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_394.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_395.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_396.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_397.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_398.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_399.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_400.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_401.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_402.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_403.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_404.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_405.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_406.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_407.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_408.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_409.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_410.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_411.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_412.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_413.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_414.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_415.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_416.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_417.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_418.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_419.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_420.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_421.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_422.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_423.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_424.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_425.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_426.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_427.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_428.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_429.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_430.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_431.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_432.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_433.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_434.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_435.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_436.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_437.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_438.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_439.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_440.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_441.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_442.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_443.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_444.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_445.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_446.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_447.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_448.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_449.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_450.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_451.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_452.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_453.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_454.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_455.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_456.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_457.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_458.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_459.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_460.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_461.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_462.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_463.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_464.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_465.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_466.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_467.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_468.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_469.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_470.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_471.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_472.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_473.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_474.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_475.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_476.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_477.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_478.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_479.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_480.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_481.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_482.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_483.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_484.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_485.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_486.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_487.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_488.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_489.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_490.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_491.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_492.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_493.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_494.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_495.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_496.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_497.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_498.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_499.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_200_300/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_200_300/batch/nJobs.500 delete mode 100755 test/ntuple_qcd_200_300/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_118.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_119.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_120.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_121.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_122.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_123.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_124.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_125.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_126.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_127.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_128.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_129.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_130.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_131.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_132.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_133.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_134.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_135.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_136.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_137.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_138.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_139.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_140.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_141.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_142.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_143.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_144.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_145.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_146.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_147.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_148.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_149.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_150.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_151.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_152.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_153.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_154.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_155.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_156.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_157.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_158.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_159.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_160.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_161.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_162.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_163.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_164.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_165.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_166.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_167.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_168.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_169.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_170.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_171.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_172.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_173.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_174.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_175.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_176.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_177.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_178.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_179.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_180.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_181.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_182.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_183.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_184.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_185.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_186.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_187.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_188.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_189.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_190.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_191.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_192.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_193.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_194.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_195.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_196.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_197.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_198.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_199.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_200.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_201.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_202.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_203.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_204.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_205.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_206.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_207.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_208.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_209.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_210.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_211.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_212.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_213.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_214.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_215.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_216.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_217.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_218.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_219.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_220.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_221.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_222.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_223.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_224.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_225.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_226.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_227.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_228.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_229.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_230.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_231.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_232.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_233.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_234.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_235.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_236.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_237.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_238.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_239.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_240.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_241.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_242.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_243.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_244.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_245.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_246.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_247.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_248.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_249.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_250.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_251.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_252.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_253.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_254.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_255.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_256.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_257.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_258.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_259.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_260.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_261.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_262.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_263.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_264.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_265.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_266.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_267.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_268.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_269.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_270.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_271.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_272.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_273.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_274.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_275.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_276.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_277.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_278.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_279.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_280.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_281.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_282.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_283.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_284.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_285.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_286.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_287.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_288.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_289.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_290.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_291.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_292.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_293.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_294.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_295.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_296.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_297.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_298.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_299.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_300.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_301.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_302.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_303.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_304.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_305.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_306.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_307.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_308.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_309.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_310.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_311.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_312.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_313.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_314.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_315.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_316.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_317.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_318.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_319.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_320.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_321.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_322.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_323.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_324.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_325.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_326.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_327.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_328.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_329.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_330.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_331.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_332.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_333.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_334.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_335.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_336.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_337.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_338.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_339.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_340.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_341.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_342.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_343.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_344.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_345.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_346.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_347.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_348.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_349.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_350.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_351.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_352.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_353.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_354.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_355.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_356.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_357.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_358.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_359.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_360.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_361.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_362.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_363.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_364.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_365.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_366.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_367.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_368.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_369.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_370.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_371.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_372.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_373.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_374.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_375.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_376.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_377.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_378.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_379.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_380.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_381.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_382.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_383.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_384.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_385.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_386.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_387.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_388.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_389.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_390.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_391.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_392.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_393.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_394.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_395.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_396.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_397.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_398.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_399.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_400.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_401.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_402.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_403.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_404.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_405.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_406.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_407.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_408.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_409.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_410.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_411.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_412.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_413.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_414.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_415.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_416.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_417.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_418.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_419.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_420.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_421.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_422.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_423.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_424.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_425.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_426.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_427.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_428.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_429.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_430.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_431.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_432.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_433.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_434.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_435.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_436.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_437.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_438.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_439.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_440.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_441.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_442.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_443.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_444.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_445.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_446.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_447.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_448.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_449.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_450.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_451.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_452.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_453.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_454.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_455.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_456.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_457.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_458.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_459.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_460.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_461.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_462.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_463.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_464.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_465.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_466.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_467.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_468.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_469.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_470.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_471.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_472.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_473.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_474.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_475.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_476.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_477.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_478.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_479.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_480.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_481.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_482.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_483.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_484.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_485.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_486.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_487.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_488.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_489.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_490.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_491.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_492.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_493.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_494.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_495.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_496.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_497.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_498.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_499.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_200_300/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_200_300/batchscript.sh delete mode 100644 test/ntuple_qcd_200_300/condor.sub delete mode 120000 test/ntuple_qcd_200_300/helper delete mode 120000 test/ntuple_qcd_200_300/output delete mode 100755 test/ntuple_qcd_200_300/sge_sub.sh delete mode 100644 test/ntuple_qcd_300_500/ademoor.cc delete mode 100644 test/ntuple_qcd_300_500/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_118.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_119.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_120.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_121.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_122.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_123.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_124.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_125.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_126.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_127.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_128.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_129.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_130.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_131.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_132.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_133.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_134.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_135.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_136.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_137.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_138.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_139.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_140.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_141.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_142.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_143.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_144.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_145.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_146.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_147.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_148.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_149.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_150.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_151.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_152.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_153.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_154.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_155.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_156.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_157.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_158.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_159.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_160.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_161.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_162.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_163.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_164.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_165.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_166.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_167.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_168.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_169.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_170.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_171.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_172.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_173.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_174.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_175.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_176.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_177.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_178.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_179.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_180.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_181.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_182.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_183.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_184.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_185.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_186.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_187.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_188.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_189.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_190.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_191.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_192.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_193.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_194.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_195.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_196.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_197.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_198.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_199.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_200.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_201.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_202.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_203.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_204.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_205.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_206.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_207.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_208.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_209.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_210.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_211.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_212.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_213.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_214.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_215.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_216.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_217.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_218.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_219.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_220.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_221.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_222.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_223.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_224.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_225.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_226.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_227.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_228.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_229.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_230.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_231.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_232.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_233.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_234.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_235.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_236.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_237.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_238.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_239.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_240.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_241.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_242.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_243.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_244.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_245.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_246.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_247.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_248.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_249.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_250.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_251.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_252.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_253.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_254.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_255.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_256.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_257.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_258.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_259.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_260.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_261.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_262.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_263.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_264.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_265.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_266.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_267.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_268.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_269.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_270.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_271.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_272.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_273.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_274.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_275.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_276.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_277.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_278.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_279.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_280.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_281.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_282.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_283.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_284.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_285.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_286.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_287.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_288.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_289.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_290.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_291.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_292.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_293.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_294.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_295.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_296.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_297.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_298.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_299.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_300.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_301.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_302.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_303.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_304.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_305.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_306.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_307.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_308.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_309.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_310.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_311.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_312.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_313.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_314.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_315.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_316.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_317.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_318.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_319.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_320.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_321.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_322.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_323.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_324.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_325.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_326.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_327.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_328.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_329.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_330.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_331.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_332.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_333.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_334.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_335.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_336.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_337.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_338.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_339.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_340.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_341.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_342.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_343.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_344.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_345.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_346.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_347.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_348.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_349.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_350.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_351.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_352.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_353.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_354.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_355.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_356.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_357.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_358.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_359.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_360.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_361.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_362.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_363.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_364.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_365.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_366.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_367.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_368.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_369.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_370.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_371.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_372.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_373.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_374.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_375.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_376.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_377.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_378.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_379.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_380.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_381.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_382.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_383.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_384.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_385.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_386.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_387.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_388.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_389.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_390.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_391.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_392.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_393.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_394.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_395.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_396.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_397.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_398.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_399.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_400.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_401.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_402.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_403.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_404.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_405.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_406.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_407.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_408.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_409.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_410.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_411.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_412.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_413.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_414.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_415.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_416.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_417.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_418.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_419.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_420.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_421.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_422.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_423.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_424.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_425.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_426.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_427.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_428.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_429.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_430.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_431.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_432.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_433.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_434.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_435.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_436.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_437.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_438.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_439.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_440.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_441.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_442.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_443.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_444.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_445.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_446.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_447.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_448.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_449.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_450.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_451.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_452.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_453.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_454.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_455.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_456.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_457.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_458.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_459.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_460.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_461.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_462.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_463.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_464.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_465.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_466.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_467.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_468.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_469.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_470.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_471.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_472.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_473.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_474.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_475.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_476.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_477.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_478.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_479.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_480.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_481.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_482.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_483.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_484.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_485.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_486.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_487.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_488.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_489.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_490.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_491.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_492.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_493.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_494.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_495.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_496.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_497.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_498.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_499.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_300_500/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_300_500/batch/nJobs.500 delete mode 100755 test/ntuple_qcd_300_500/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_118.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_119.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_120.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_121.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_122.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_123.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_124.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_125.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_126.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_127.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_128.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_129.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_130.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_131.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_132.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_133.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_134.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_135.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_136.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_137.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_138.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_139.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_140.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_141.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_142.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_143.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_144.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_145.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_146.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_147.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_148.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_149.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_150.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_151.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_152.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_153.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_154.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_155.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_156.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_157.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_158.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_159.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_160.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_161.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_162.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_163.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_164.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_165.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_166.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_167.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_168.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_169.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_170.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_171.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_172.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_173.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_174.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_175.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_176.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_177.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_178.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_179.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_180.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_181.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_182.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_183.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_184.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_185.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_186.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_187.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_188.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_189.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_190.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_191.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_192.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_193.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_194.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_195.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_196.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_197.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_198.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_199.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_200.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_201.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_202.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_203.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_204.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_205.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_206.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_207.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_208.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_209.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_210.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_211.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_212.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_213.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_214.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_215.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_216.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_217.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_218.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_219.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_220.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_221.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_222.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_223.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_224.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_225.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_226.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_227.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_228.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_229.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_230.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_231.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_232.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_233.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_234.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_235.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_236.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_237.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_238.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_239.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_240.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_241.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_242.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_243.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_244.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_245.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_246.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_247.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_248.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_249.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_250.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_251.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_252.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_253.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_254.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_255.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_256.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_257.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_258.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_259.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_260.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_261.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_262.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_263.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_264.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_265.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_266.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_267.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_268.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_269.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_270.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_271.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_272.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_273.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_274.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_275.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_276.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_277.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_278.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_279.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_280.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_281.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_282.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_283.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_284.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_285.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_286.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_287.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_288.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_289.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_290.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_291.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_292.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_293.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_294.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_295.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_296.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_297.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_298.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_299.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_300.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_301.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_302.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_303.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_304.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_305.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_306.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_307.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_308.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_309.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_310.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_311.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_312.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_313.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_314.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_315.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_316.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_317.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_318.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_319.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_320.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_321.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_322.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_323.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_324.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_325.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_326.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_327.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_328.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_329.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_330.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_331.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_332.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_333.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_334.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_335.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_336.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_337.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_338.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_339.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_340.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_341.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_342.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_343.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_344.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_345.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_346.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_347.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_348.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_349.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_350.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_351.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_352.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_353.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_354.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_355.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_356.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_357.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_358.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_359.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_360.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_361.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_362.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_363.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_364.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_365.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_366.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_367.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_368.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_369.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_370.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_371.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_372.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_373.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_374.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_375.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_376.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_377.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_378.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_379.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_380.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_381.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_382.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_383.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_384.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_385.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_386.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_387.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_388.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_389.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_390.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_391.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_392.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_393.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_394.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_395.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_396.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_397.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_398.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_399.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_400.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_401.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_402.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_403.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_404.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_405.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_406.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_407.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_408.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_409.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_410.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_411.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_412.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_413.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_414.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_415.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_416.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_417.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_418.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_419.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_420.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_421.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_422.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_423.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_424.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_425.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_426.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_427.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_428.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_429.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_430.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_431.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_432.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_433.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_434.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_435.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_436.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_437.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_438.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_439.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_440.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_441.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_442.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_443.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_444.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_445.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_446.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_447.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_448.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_449.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_450.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_451.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_452.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_453.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_454.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_455.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_456.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_457.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_458.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_459.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_460.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_461.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_462.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_463.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_464.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_465.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_466.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_467.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_468.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_469.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_470.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_471.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_472.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_473.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_474.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_475.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_476.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_477.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_478.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_479.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_480.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_481.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_482.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_483.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_484.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_485.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_486.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_487.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_488.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_489.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_490.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_491.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_492.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_493.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_494.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_495.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_496.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_497.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_498.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_499.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_300_500/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_300_500/batchscript.sh delete mode 100644 test/ntuple_qcd_300_500/condor.sub delete mode 120000 test/ntuple_qcd_300_500/helper delete mode 120000 test/ntuple_qcd_300_500/output delete mode 100755 test/ntuple_qcd_300_500/sge_sub.sh delete mode 100644 test/ntuple_qcd_500_700/ademoor.cc delete mode 100644 test/ntuple_qcd_500_700/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_500_700/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_500_700/batch/nJobs.118 delete mode 100755 test/ntuple_qcd_500_700/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_500_700/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_500_700/batchscript.sh delete mode 100644 test/ntuple_qcd_500_700/condor.sub delete mode 120000 test/ntuple_qcd_500_700/helper delete mode 120000 test/ntuple_qcd_500_700/output delete mode 100755 test/ntuple_qcd_500_700/sge_sub.sh delete mode 100644 test/ntuple_qcd_700_1000/ademoor.cc delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_0.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_1.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_10.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_100.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_101.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_102.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_103.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_104.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_105.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_106.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_107.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_108.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_109.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_11.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_110.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_111.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_112.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_113.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_114.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_115.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_116.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_117.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_118.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_119.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_12.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_120.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_121.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_122.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_123.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_124.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_125.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_126.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_127.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_128.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_129.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_13.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_130.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_131.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_132.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_133.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_134.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_135.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_136.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_137.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_138.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_139.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_14.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_140.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_141.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_142.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_143.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_144.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_145.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_146.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_147.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_148.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_149.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_15.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_150.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_151.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_152.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_153.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_154.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_155.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_156.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_157.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_158.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_159.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_16.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_160.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_161.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_162.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_163.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_164.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_165.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_166.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_167.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_168.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_169.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_17.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_170.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_171.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_172.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_173.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_174.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_175.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_176.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_177.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_178.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_179.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_18.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_180.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_181.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_182.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_183.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_184.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_185.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_186.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_187.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_188.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_189.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_19.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_190.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_191.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_192.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_193.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_194.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_195.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_196.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_197.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_198.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_199.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_2.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_20.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_200.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_201.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_202.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_203.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_204.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_205.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_206.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_207.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_208.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_209.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_21.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_210.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_211.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_212.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_213.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_214.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_215.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_216.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_217.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_218.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_219.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_22.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_220.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_221.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_222.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_223.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_224.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_225.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_226.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_227.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_228.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_229.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_23.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_230.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_231.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_232.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_233.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_234.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_235.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_236.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_237.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_238.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_239.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_24.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_240.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_241.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_242.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_243.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_244.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_245.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_246.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_247.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_248.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_249.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_25.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_250.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_251.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_252.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_253.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_254.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_255.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_256.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_257.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_258.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_259.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_26.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_260.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_261.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_262.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_263.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_264.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_265.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_266.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_267.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_268.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_269.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_27.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_270.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_271.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_272.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_273.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_274.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_275.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_276.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_277.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_278.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_279.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_28.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_280.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_281.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_282.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_283.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_284.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_285.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_286.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_287.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_288.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_289.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_29.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_290.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_291.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_292.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_293.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_294.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_295.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_296.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_297.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_298.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_299.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_3.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_30.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_300.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_301.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_302.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_303.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_304.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_305.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_306.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_307.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_308.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_309.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_31.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_310.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_311.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_312.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_313.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_314.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_315.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_316.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_317.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_318.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_319.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_32.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_320.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_321.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_322.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_323.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_324.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_325.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_326.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_327.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_328.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_329.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_33.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_330.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_331.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_332.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_333.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_334.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_335.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_336.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_337.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_338.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_339.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_34.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_340.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_341.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_342.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_343.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_344.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_345.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_346.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_347.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_348.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_349.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_35.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_350.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_351.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_352.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_353.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_354.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_355.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_356.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_357.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_358.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_359.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_36.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_360.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_361.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_362.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_363.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_364.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_365.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_366.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_367.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_368.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_369.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_37.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_370.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_371.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_372.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_373.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_374.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_375.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_376.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_377.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_378.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_379.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_38.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_380.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_381.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_382.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_383.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_384.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_385.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_386.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_387.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_388.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_389.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_39.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_390.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_391.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_392.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_393.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_394.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_395.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_396.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_397.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_398.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_399.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_4.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_40.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_400.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_401.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_402.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_403.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_404.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_405.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_406.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_407.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_408.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_409.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_41.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_410.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_411.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_412.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_413.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_414.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_415.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_416.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_417.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_418.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_419.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_42.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_420.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_421.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_422.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_423.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_424.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_425.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_426.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_427.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_428.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_429.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_43.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_430.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_431.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_432.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_433.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_434.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_435.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_436.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_437.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_438.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_439.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_44.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_440.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_441.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_442.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_443.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_444.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_445.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_446.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_447.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_448.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_449.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_45.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_450.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_451.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_452.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_453.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_454.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_455.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_456.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_457.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_458.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_459.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_46.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_460.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_461.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_462.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_463.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_464.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_465.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_466.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_467.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_468.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_469.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_47.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_470.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_471.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_472.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_473.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_474.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_475.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_476.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_477.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_478.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_479.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_48.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_480.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_481.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_482.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_483.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_484.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_485.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_486.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_487.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_488.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_489.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_49.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_490.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_491.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_492.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_493.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_494.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_495.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_496.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_497.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_498.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_499.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_5.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_50.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_51.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_52.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_53.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_54.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_55.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_56.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_57.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_58.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_59.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_6.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_60.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_61.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_62.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_63.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_64.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_65.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_66.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_67.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_68.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_69.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_7.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_70.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_71.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_72.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_73.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_74.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_75.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_76.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_77.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_78.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_79.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_8.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_80.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_81.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_82.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_83.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_84.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_85.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_86.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_87.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_88.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_89.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_9.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_90.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_91.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_92.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_93.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_94.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_95.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_96.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_97.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_98.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/condor_99.sub delete mode 100644 test/ntuple_qcd_700_1000/batch/nJobs.500 delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_0.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_1.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_10.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_100.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_101.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_102.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_103.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_104.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_105.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_106.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_107.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_108.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_109.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_11.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_110.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_111.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_112.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_113.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_114.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_115.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_116.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_117.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_118.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_119.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_12.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_120.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_121.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_122.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_123.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_124.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_125.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_126.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_127.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_128.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_129.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_13.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_130.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_131.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_132.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_133.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_134.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_135.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_136.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_137.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_138.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_139.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_14.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_140.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_141.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_142.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_143.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_144.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_145.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_146.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_147.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_148.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_149.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_15.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_150.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_151.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_152.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_153.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_154.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_155.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_156.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_157.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_158.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_159.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_16.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_160.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_161.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_162.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_163.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_164.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_165.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_166.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_167.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_168.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_169.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_17.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_170.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_171.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_172.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_173.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_174.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_175.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_176.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_177.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_178.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_179.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_18.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_180.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_181.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_182.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_183.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_184.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_185.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_186.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_187.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_188.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_189.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_19.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_190.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_191.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_192.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_193.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_194.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_195.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_196.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_197.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_198.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_199.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_2.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_20.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_200.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_201.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_202.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_203.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_204.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_205.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_206.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_207.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_208.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_209.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_21.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_210.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_211.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_212.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_213.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_214.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_215.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_216.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_217.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_218.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_219.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_22.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_220.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_221.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_222.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_223.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_224.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_225.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_226.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_227.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_228.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_229.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_23.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_230.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_231.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_232.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_233.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_234.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_235.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_236.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_237.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_238.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_239.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_24.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_240.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_241.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_242.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_243.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_244.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_245.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_246.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_247.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_248.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_249.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_25.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_250.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_251.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_252.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_253.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_254.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_255.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_256.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_257.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_258.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_259.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_26.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_260.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_261.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_262.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_263.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_264.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_265.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_266.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_267.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_268.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_269.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_27.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_270.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_271.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_272.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_273.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_274.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_275.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_276.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_277.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_278.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_279.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_28.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_280.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_281.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_282.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_283.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_284.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_285.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_286.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_287.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_288.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_289.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_29.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_290.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_291.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_292.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_293.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_294.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_295.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_296.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_297.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_298.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_299.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_3.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_30.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_300.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_301.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_302.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_303.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_304.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_305.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_306.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_307.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_308.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_309.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_31.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_310.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_311.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_312.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_313.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_314.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_315.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_316.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_317.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_318.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_319.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_32.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_320.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_321.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_322.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_323.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_324.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_325.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_326.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_327.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_328.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_329.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_33.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_330.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_331.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_332.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_333.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_334.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_335.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_336.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_337.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_338.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_339.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_34.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_340.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_341.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_342.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_343.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_344.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_345.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_346.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_347.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_348.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_349.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_35.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_350.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_351.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_352.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_353.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_354.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_355.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_356.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_357.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_358.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_359.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_36.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_360.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_361.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_362.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_363.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_364.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_365.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_366.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_367.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_368.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_369.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_37.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_370.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_371.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_372.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_373.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_374.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_375.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_376.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_377.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_378.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_379.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_38.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_380.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_381.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_382.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_383.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_384.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_385.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_386.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_387.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_388.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_389.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_39.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_390.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_391.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_392.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_393.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_394.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_395.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_396.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_397.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_398.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_399.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_4.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_40.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_400.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_401.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_402.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_403.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_404.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_405.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_406.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_407.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_408.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_409.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_41.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_410.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_411.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_412.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_413.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_414.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_415.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_416.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_417.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_418.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_419.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_42.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_420.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_421.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_422.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_423.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_424.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_425.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_426.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_427.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_428.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_429.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_43.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_430.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_431.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_432.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_433.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_434.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_435.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_436.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_437.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_438.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_439.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_44.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_440.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_441.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_442.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_443.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_444.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_445.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_446.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_447.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_448.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_449.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_45.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_450.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_451.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_452.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_453.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_454.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_455.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_456.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_457.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_458.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_459.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_46.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_460.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_461.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_462.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_463.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_464.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_465.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_466.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_467.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_468.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_469.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_47.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_470.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_471.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_472.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_473.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_474.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_475.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_476.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_477.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_478.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_479.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_48.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_480.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_481.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_482.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_483.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_484.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_485.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_486.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_487.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_488.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_489.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_49.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_490.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_491.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_492.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_493.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_494.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_495.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_496.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_497.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_498.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_499.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_5.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_50.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_51.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_52.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_53.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_54.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_55.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_56.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_57.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_58.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_59.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_6.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_60.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_61.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_62.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_63.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_64.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_65.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_66.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_67.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_68.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_69.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_7.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_70.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_71.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_72.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_73.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_74.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_75.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_76.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_77.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_78.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_79.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_8.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_80.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_81.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_82.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_83.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_84.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_85.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_86.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_87.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_88.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_89.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_9.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_90.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_91.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_92.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_93.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_94.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_95.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_96.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_97.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_98.sh delete mode 100755 test/ntuple_qcd_700_1000/batch/sge_99.sh delete mode 100755 test/ntuple_qcd_700_1000/batchscript.sh delete mode 100644 test/ntuple_qcd_700_1000/condor.sub delete mode 120000 test/ntuple_qcd_700_1000/helper delete mode 120000 test/ntuple_qcd_700_1000/output delete mode 100755 test/ntuple_qcd_700_1000/sge_sub.sh diff --git a/test/DeepNtuplizer.py b/test/DeepNtuplizer.py deleted file mode 100644 index 626752a2939..00000000000 --- a/test/DeepNtuplizer.py +++ /dev/null @@ -1,313 +0,0 @@ - -import FWCore.ParameterSet.Config as cms - -import FWCore.ParameterSet.VarParsing as VarParsing -### parsing job options -import sys - -options = VarParsing.VarParsing() - -options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") -options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',-1,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") -options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") -options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") -options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 10000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") -options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") -options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") -options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") -options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") -options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") - - -import os -release=os.environ['CMSSW_VERSION'][6:] -print("Using release "+release) - - -options.register( - 'inputFiles','', - VarParsing.VarParsing.multiplicity.list, - VarParsing.VarParsing.varType.string, - "input files (default is the tt RelVal)" - ) - -if hasattr(sys, "argv"): - options.parseArguments() - - - -if options.puppi: - usePuppi = True -else: - usePuppi = False -process = cms.Process("DNNFiller") - -process.load("FWCore.MessageService.MessageLogger_cfi") -process.load("Configuration.EventContent.EventContent_cff") -process.load('Configuration.StandardSequences.Services_cff') -process.load('Configuration.StandardSequences.GeometryRecoDB_cff') -process.load('Configuration.StandardSequences.MagneticField_cff') -process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') -from Configuration.AlCa.GlobalTag import GlobalTag -#'auto:run2_mc' -process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') -#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') - -process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) - -process.load('FWCore.MessageService.MessageLogger_cfi') -process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery - -process.options = cms.untracked.PSet( - allowUnscheduled = cms.untracked.bool(True), - wantSummary=cms.untracked.bool(False) -) - - -process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input - - -if options.inputFiles: - process.source.fileNames = options.inputFiles - -if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': - process.load(options.inputScript) - -numberOfFiles = len(process.source.fileNames) -numberOfJobs = options.nJobs -jobNumber = options.job - - -process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] -if options.nJobs > 1: - print ("running over these files:") - print (process.source.fileNames) - -process.source.skipEvents = cms.untracked.uint32(options.skipEvents) -process.maxEvents = cms.untracked.PSet( - input = cms.untracked.int32 (options.maxEvents) -) -releases = release.split("_") -if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'pfDeepCSVTagInfos', - 'pfParticleNetAK4TagInfos', -] -else : - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'deepNNTagInfos', - 'pfParticleNetAK4TagInfos', - ] - - -if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] -else : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepCSVJetTags:probcc', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] - -jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') - -from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection -if options.phase2: - usePuppi = True - -if usePuppi: - jet_collection = 'slimmedJetsPuppi' -else: - jet_collection = 'slimmedJets' - -updateJetCollection( - process, - labelName = "DeepFlavour", -# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' - jetSource = cms.InputTag(jet_collection), # 'ak4Jets' - jetCorrections = jetCorrectionsAK4, - pfCandidates = cms.InputTag('packedPFCandidates'), - pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), - svSource = cms.InputTag('slimmedSecondaryVertices'), - muSource = cms.InputTag('slimmedMuons'), - elSource = cms.InputTag('slimmedElectrons'), - btagInfos = bTagInfos, - btagDiscriminators = bTagDiscriminators, - explicitJTA = False -) - -if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): - process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) - process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) -else: - raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') - - -# QGLikelihood -process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") -process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") -process.load('RecoJets.JetProducers.QGTagger_cfi') -process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") -process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') - - -from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets -process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') - - ## Filter out neutrinos from packed GenParticles -process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) - ## Define GenJets -process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') - -process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - - -process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) - - -# Very Loose IVF SV collection -from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix -loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") -process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 - -process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") -process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 - - -outFileName = options.outputFile + '_' + str(options.job) + '.root' -print ('Using output file ' + outFileName) - -process.TFileService = cms.Service("TFileService", - fileName = cms.string(outFileName)) - -# DeepNtuplizer -process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") -process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') -process.deepntuplizer.bDiscriminators = bTagDiscriminators -process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') -process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") - -process.deepntuplizer.applySelection = cms.bool(options.selectJets) - -if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') - -if options.eta : - process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) - process.deepntuplizer.jetPtMin = cms.double(10.0) -else : - process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) - process.deepntuplizer.jetPtMin = cms.double(15.0) - -if options.phase2 : - process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) - -process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) - -#1631 -process.ProfilerService = cms.Service ( - "ProfilerService", - firstEvent = cms.untracked.int32(1631), - lastEvent = cms.untracked.int32(1641), - paths = cms.untracked.vstring('p') -) - -#Trick to make it work in 9_1_X -process.tsk = cms.Task() -for mod in process.producers_().values(): #.itervalues(): - process.tsk.add(mod) -for mod in process.filters_().values(): #.itervalues(): - process.tsk.add(mod) - -process.p = cms.Path( - process.QGTagger + process.genJetSequence* - process.deepntuplizer, - process.tsk - ) diff --git a/test/ntuple_bulk_grav_1/ademoor.cc b/test/ntuple_bulk_grav_1/ademoor.cc deleted file mode 100644 index 77f222f1efe8b3feadde937445018c726cf20132..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai&WmH`2l7?yA-MVonSQ-!75Fj`S1b1uPo#5`$K=8(b1_(}qySr-$K|=@0oET$bFr^=;;2P%&tsmgx2CV}~s^-d`|_1?BUs{TkCx+A)o3(ap~J#ITb#x_zvzP+Ke0C17;TtoR7Fjf`HuM z2y}BoFlyao4Mi5+E-YYcO1Ql`6D^tV{&#(h3GINc*==$TnQs`pW{NzioLQ8hTw+Ya z_{pW#xG-gNoCx7sK=tCBU7>)UEOUUXqEyofJ&^6Q1nnvzdsW~farNd#Nm?~!#3aPg zW1v2(>;p^jygE@61Q0lQg~5P;4mU2oZRpM!@{guBe}!Lk_)RWu#--?-ju`nPf3v7E zOy?nOf!>MuLKCUVTM}T;*MWGC1Ogyz*rHltpAA53mm6MrFJB zLpUVn_2&)!OcY`X%i~dVH8Lb(M$pxW@q4=yjb#wrjO@U`2|K@7zj}U7)2`ov=%@ z(?W(`fCFn2Em(bRT0M_7A~Z`iU^{fpB$+w4{0zF3oj+*l!gwYz+0g(Q6L>1`$SDdCO$#bgmRo*oYNeb&BF#1Gm1y!+KC_X#?yS+1cZJoYnNdO*s>z z4G(NBmaiZa!ipCBT7ZLwJ2lT(W=-WU@3Fr*96Ws`olqRT$WfI)*Yiz|u#lzDrj(r! zz4}7ngfXakB-6CP2=RuO^(X{)mDP9{1u7GrXn5uLtcDWHC##zOmxYF#)u#590CP1H zGCN*r@p{1n(NZF^AvUSNAVF6T3QC4`qNEYRgfrb%RSP#^|BSb__^e9ad`6ltX0X0^ zrA@;Y_QIjzBDqmDw;f}*`u-w~Fw$qo8Htrp&_!#{;V|=x3+XwHmfbLJYqwX)2}?|< zA%B(U>pPnFj+iq>*|J0xXJypqOpe|A2CRrpM=+|7O{PQ8p+6cC)%|%=nOWWGE8BP> zAKgxSH_0f^Mg-#h{K4#RlAK&`#!dTSjdQ>hwrN;}zSW$gZ}@D|MM7K99)E)Ol)gPGlXwm`*)HV#eXokgj$(jU zFLC1BB|n+`PRUh>MgwTS1}>LYEh9T%OCal8^Sr6DZZ!s^XNbxoCufv`pO(Egx$`M{r)8Am=2eadh5;jaTCW)ZFipk^v&;g zN>>k)c(LmJjppIpuNP(X9BWs;`r4z08+;WGN9{LBaJ9#Y7>SY5*=aP$0o+g^5$^Y* zbYhh|>X!PQ5NTU?deK8a z&GuC|NoNWNKsS*;zmo^HOe-|>vJH%tPpGn~FNTl1w~-oOaiEp?Tdunp$SSuPE81H1 zhLQKDk1wgu>aAfm9ZipN4?YLsq<_6NeTl%xT2cRL~)X_xy?VI zZ<(?J&th?-XUsYHrg2mPBgKHXPbSjxx#>_{DN6g$;<4IBL|sXyL0SQP9mBSqyQ{ri zpAhroDmEP-Gq-7FLm5h3aE#HS!p|!Y=wMSY7Sjjsm6p37ZC_};8lI{-ZR9g;bP$e@ z22PAmx=nznEq*kejxfAP=e9x%kmpCMak?s6DnDKE_3v>lDZ5@y#`Jvwn582>@JPu% z(1pBu&oV>&O)@hwV1tKiDdSSOWIjG{mz{vBXjaT%RaZH>i?UQd+VV#Gc1rDbh0Jjt zK9pGXoMtD5M(WAg1KX(OYxt@R|IuKP$6e;^2S`+e?`I)ZN1B@2cgvjwI<8Bn957>>VQoITdi?Gw1sf3@qQi^9oQnuz{4m zFV2exN)jAlnmFI?2V+1I*VIRl0vkFaTRVgkxP$}!pyJ}1`i_Q#i50Q9m8%2ja`eFT zZ-#!~g$FOe+qXzUq`M==zQWnEkYf3d^9gI#B`>WpI>pku>`?)A*n5{JVVhyr0vgG7 zaB;Y{VXMaS!qo@7q4w-Dm`c0Yc1iq+pIn!Qj%zZFr|lOar*{|c28GX#n8#uxw$epk zp2WhD4(4i)9*7l0_{h4Rs;i!-?Is*AZg8I*Xwld?3PO`ML!M}wd4l3#{)Ey#)1hZQDfpqiuEON!rr?|*>KkKF2 zih`4nl6P<*(#DCE9{9UB$GmmRd%%M2SzN!=oDRVl=(!YK~j^%xur_ zznelb=Y}u)(62Q=Oz>=o$-W`7RJ9RX{>75d9Dl|=jrp7;BQ7FH$D%m8*nJ5Mv^VMuVy+bvYvAEhHh+29g?h%halkPzvxolw~;N@7N5;|je74$z**;i-IFG)$&x_n*wY zt&H)Z-!7hArbQCGbidJa^R=TAWGO1Vt+Nk*p*}9Njicxe!JWQonrCI~cH0_!VL{W> zm-?iOaX;Ohiw+v=yLfT*obwLR)_L!HT1KEW;&qFlkZ7o3)YTu!0F4JgSiN$A7yEt9 z02{yXW-L8BzLV>5JKIP_AgK^rO?`>t2|$`uK^Vhzf>YD<<|h7V90NoQw&%E0}Jh&Zl^ z#HhO`E{xFXh%nK~B2w0zl9v(3yXMQ6At6%}B5CASCU_V@rpUL-+BW5(igq>k#*6{w z2`l8G8I6@%f&g+Zt9#&H+4`4gf*T>bP|~fFSSrz%r8uE2*`+U1dYry?V)njhJ(-cV zDg32BA+0@dY)-6H15ld-%Cvp5VG%Amh=0gS$D=^rf*OHZl`I`!qi2&pEv!g-Hj1o4 zk0pwAl@jUMWpbWID%gvWNbR2(+42OhG4r00qwr!KXZ7VG}`B;gMc+cV#O zs((-xm~Rmodj*N>{&A*|e*A21;h{F#{;JEZ0}`P@DJjIiQ$&AvUSEikfF=#bT6w%W%&5j7N}?`=PNjDf)xdC$f`|hql+BV4uz< zu7&T7ZU}fL&iFvn51Vb^sd=~5wE4O1ERoU}tY7z>T-GCCR3lmY1sq)lg)7N}E(vOX zW*lgt&KLj2k%|F{zSGEn?7f0&6qU|W6p z;|9NyUN`i!EoV{7d>f?=kl@2;t&R#%JQl#oRKZ9|Qvk^*RAca}&pUh=gk5HPh`6n9 zJuNj163sFZk>KHxwHdj@78PIC#n0yRfcXhneqpRXivZB(HbfpESBcaJckT;KSm8qY z54%P--d)z3IGrXsD?ONx&Z2E^Pvan#gIkcMTe?x#k3B}Q1AoE^YpwLN(YV!vPEjlu zw=|mLtXEmAcAU5zPzv`s{M*r(YZ`i~KUL!7-Oy^-)LN*-wTj9+()BEs?aIx51?-{4 zcdOzSy`{03P#+-kaFG{tp~jDs?l?sqD#eI-?{%Zfv+J5l+vzT&+Goz8UBa)Jyp213 z|C*IV*qd7?E8E2VMC(Z!zI4rj10ppgNc9@fJ3f?o98 z%E~;z?^Amb9Ta||^0W7R@c_8jt3c|sy$`SvBrfb4x;#m!lZclh9p9QTg^oDg_+0Uz z$hJc2^%1T2j%4eJ(6G?gDn<4hP$YB%_heB2SLPZd=BfE~RGxvsOWoSR-b*)WnL4@f zQS2Yzkpj-j^iVE@(RFj!PuXfuT-J_ZKIRzrBPa-kK zhGGm^AF6HmVuml!KZMdy>gns%25Y}umMROgDz2mKw7E<1{PEn~m*7%KIuAsaBSScn z!V*q=en7HRc8qLpy#XN=7f_vzd~=a{`z1)@0^0CiGbcYw zqI{<;)Su40%iKZOO^L1}3x6;0`Sa8`OrFU@W!XbQqvRWx(H1sr?T6{s@hTM|LD$(N z^S5c=dyXPuiv^y6_L)L<6S&)T*PtIV9MlPsNXpLPigxisfhNwZN5Uk=!EcD8+AIYF z$~3N4+dJa5a$0;Pwj>NL+DiFdrg!`!+j$>M-|_1`5ZDbf-Qh=(Z;$72aywI2Z{QRM zA!t@IOSJ?>=pf%akHi51O|eRq zHV?_?h&roMUXrUU@ESl++c3Cr2so?SbUvLKLCc@6o4Au1u&{%F9}=F#{|>hfH^%>c ztoEinh$BOUK=Q*gLU XDfII~D=s=COG|S{?E25ISET;}pFc8t diff --git a/test/ntuple_bulk_grav_1/batch/condor_0.sub b/test/ntuple_bulk_grav_1/batch/condor_0.sub deleted file mode 100644 index 19ca71b654f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_1.sub b/test/ntuple_bulk_grav_1/batch/condor_1.sub deleted file mode 100644 index 5e6f6201792..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_10.sub b/test/ntuple_bulk_grav_1/batch/condor_10.sub deleted file mode 100644 index 3cffe1d6b0a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_100.sub b/test/ntuple_bulk_grav_1/batch/condor_100.sub deleted file mode 100644 index f28b42f64b3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_101.sub b/test/ntuple_bulk_grav_1/batch/condor_101.sub deleted file mode 100644 index 4edd266807d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_102.sub b/test/ntuple_bulk_grav_1/batch/condor_102.sub deleted file mode 100644 index d3ab4ae760f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_103.sub b/test/ntuple_bulk_grav_1/batch/condor_103.sub deleted file mode 100644 index c10fb5c4bcb..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_104.sub b/test/ntuple_bulk_grav_1/batch/condor_104.sub deleted file mode 100644 index 0c2bf71a6f7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_105.sub b/test/ntuple_bulk_grav_1/batch/condor_105.sub deleted file mode 100644 index 64cd0b6860a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_106.sub b/test/ntuple_bulk_grav_1/batch/condor_106.sub deleted file mode 100644 index ec9f1d25809..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_107.sub b/test/ntuple_bulk_grav_1/batch/condor_107.sub deleted file mode 100644 index f39c25256a6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_108.sub b/test/ntuple_bulk_grav_1/batch/condor_108.sub deleted file mode 100644 index ea8b849605f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_109.sub b/test/ntuple_bulk_grav_1/batch/condor_109.sub deleted file mode 100644 index c052555b004..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_11.sub b/test/ntuple_bulk_grav_1/batch/condor_11.sub deleted file mode 100644 index fa5baddc389..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_110.sub b/test/ntuple_bulk_grav_1/batch/condor_110.sub deleted file mode 100644 index 3bda5fb714f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_111.sub b/test/ntuple_bulk_grav_1/batch/condor_111.sub deleted file mode 100644 index 43ab5c7bf8d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_112.sub b/test/ntuple_bulk_grav_1/batch/condor_112.sub deleted file mode 100644 index 78c4af5e0f5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_113.sub b/test/ntuple_bulk_grav_1/batch/condor_113.sub deleted file mode 100644 index 83a64676531..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_114.sub b/test/ntuple_bulk_grav_1/batch/condor_114.sub deleted file mode 100644 index 99b278115b0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_115.sub b/test/ntuple_bulk_grav_1/batch/condor_115.sub deleted file mode 100644 index 04255f09bd4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_116.sub b/test/ntuple_bulk_grav_1/batch/condor_116.sub deleted file mode 100644 index d020c46ad6c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_117.sub b/test/ntuple_bulk_grav_1/batch/condor_117.sub deleted file mode 100644 index 4f3e528c11e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_118.sub b/test/ntuple_bulk_grav_1/batch/condor_118.sub deleted file mode 100644 index b9324730dea..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_119.sub b/test/ntuple_bulk_grav_1/batch/condor_119.sub deleted file mode 100644 index 96510f19408..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_12.sub b/test/ntuple_bulk_grav_1/batch/condor_12.sub deleted file mode 100644 index 5501f5cdcd6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_120.sub b/test/ntuple_bulk_grav_1/batch/condor_120.sub deleted file mode 100644 index 6de0f975b5b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_121.sub b/test/ntuple_bulk_grav_1/batch/condor_121.sub deleted file mode 100644 index dde22bd427e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_122.sub b/test/ntuple_bulk_grav_1/batch/condor_122.sub deleted file mode 100644 index 518197bde68..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_123.sub b/test/ntuple_bulk_grav_1/batch/condor_123.sub deleted file mode 100644 index d2e6a047c62..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_124.sub b/test/ntuple_bulk_grav_1/batch/condor_124.sub deleted file mode 100644 index e813caed4e1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_125.sub b/test/ntuple_bulk_grav_1/batch/condor_125.sub deleted file mode 100644 index cfd1f03b3c6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_126.sub b/test/ntuple_bulk_grav_1/batch/condor_126.sub deleted file mode 100644 index 358934a0073..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_127.sub b/test/ntuple_bulk_grav_1/batch/condor_127.sub deleted file mode 100644 index 5c0fd408aba..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_128.sub b/test/ntuple_bulk_grav_1/batch/condor_128.sub deleted file mode 100644 index 4222963b8f1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_129.sub b/test/ntuple_bulk_grav_1/batch/condor_129.sub deleted file mode 100644 index 34f27aea07b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_13.sub b/test/ntuple_bulk_grav_1/batch/condor_13.sub deleted file mode 100644 index faceb9ee0a6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_130.sub b/test/ntuple_bulk_grav_1/batch/condor_130.sub deleted file mode 100644 index 8ef9b1ff1fa..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_131.sub b/test/ntuple_bulk_grav_1/batch/condor_131.sub deleted file mode 100644 index e7e8974dc10..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_132.sub b/test/ntuple_bulk_grav_1/batch/condor_132.sub deleted file mode 100644 index 6081d85f0f0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_133.sub b/test/ntuple_bulk_grav_1/batch/condor_133.sub deleted file mode 100644 index d493416818c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_134.sub b/test/ntuple_bulk_grav_1/batch/condor_134.sub deleted file mode 100644 index 6f0020ab91f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_135.sub b/test/ntuple_bulk_grav_1/batch/condor_135.sub deleted file mode 100644 index 35f4172f279..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_136.sub b/test/ntuple_bulk_grav_1/batch/condor_136.sub deleted file mode 100644 index 03650754360..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_137.sub b/test/ntuple_bulk_grav_1/batch/condor_137.sub deleted file mode 100644 index dfb3348a55d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_138.sub b/test/ntuple_bulk_grav_1/batch/condor_138.sub deleted file mode 100644 index efa9b6897df..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_139.sub b/test/ntuple_bulk_grav_1/batch/condor_139.sub deleted file mode 100644 index 323d6f66f2f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_139.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=139 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.139.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_139.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.139.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_14.sub b/test/ntuple_bulk_grav_1/batch/condor_14.sub deleted file mode 100644 index 959649ad7f3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_140.sub b/test/ntuple_bulk_grav_1/batch/condor_140.sub deleted file mode 100644 index 5eaa9848c49..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_140.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=140 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.140.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_140.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.140.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_141.sub b/test/ntuple_bulk_grav_1/batch/condor_141.sub deleted file mode 100644 index a6d07c048e2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_141.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=141 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.141.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_141.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.141.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_142.sub b/test/ntuple_bulk_grav_1/batch/condor_142.sub deleted file mode 100644 index 67e376dfc21..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_142.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=142 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.142.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_142.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.142.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_143.sub b/test/ntuple_bulk_grav_1/batch/condor_143.sub deleted file mode 100644 index eab070ff87f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_143.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=143 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.143.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_143.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.143.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_144.sub b/test/ntuple_bulk_grav_1/batch/condor_144.sub deleted file mode 100644 index 09b13aff33d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_144.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=144 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.144.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_144.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.144.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_145.sub b/test/ntuple_bulk_grav_1/batch/condor_145.sub deleted file mode 100644 index 442afc9ba7d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_145.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=145 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.145.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_145.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.145.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_146.sub b/test/ntuple_bulk_grav_1/batch/condor_146.sub deleted file mode 100644 index 1aaa98831fd..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_146.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=146 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.146.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_146.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.146.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_147.sub b/test/ntuple_bulk_grav_1/batch/condor_147.sub deleted file mode 100644 index d8a44d5f523..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_147.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=147 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.147.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_147.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.147.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_148.sub b/test/ntuple_bulk_grav_1/batch/condor_148.sub deleted file mode 100644 index abf86db1e71..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_148.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=148 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.148.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_148.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.148.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_149.sub b/test/ntuple_bulk_grav_1/batch/condor_149.sub deleted file mode 100644 index bd7b1410df7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_149.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=149 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.149.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_149.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.149.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_15.sub b/test/ntuple_bulk_grav_1/batch/condor_15.sub deleted file mode 100644 index 29a9ed4d157..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_150.sub b/test/ntuple_bulk_grav_1/batch/condor_150.sub deleted file mode 100644 index 54368e8915f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_150.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=150 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.150.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_150.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.150.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_151.sub b/test/ntuple_bulk_grav_1/batch/condor_151.sub deleted file mode 100644 index d55fa9c3bf9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_151.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=151 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.151.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_151.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.151.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_152.sub b/test/ntuple_bulk_grav_1/batch/condor_152.sub deleted file mode 100644 index 2b29f358502..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_152.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=152 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.152.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_152.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.152.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_153.sub b/test/ntuple_bulk_grav_1/batch/condor_153.sub deleted file mode 100644 index d94a578c5c7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_153.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=153 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.153.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_153.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.153.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_154.sub b/test/ntuple_bulk_grav_1/batch/condor_154.sub deleted file mode 100644 index 8a34c7d2df5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_154.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=154 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.154.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_154.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.154.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_155.sub b/test/ntuple_bulk_grav_1/batch/condor_155.sub deleted file mode 100644 index 95dc68c85d5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_155.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=155 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.155.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_155.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.155.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_156.sub b/test/ntuple_bulk_grav_1/batch/condor_156.sub deleted file mode 100644 index 1b09c519c8c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_156.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=156 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.156.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_156.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.156.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_157.sub b/test/ntuple_bulk_grav_1/batch/condor_157.sub deleted file mode 100644 index 27fba474423..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_157.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=157 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.157.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_157.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.157.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_158.sub b/test/ntuple_bulk_grav_1/batch/condor_158.sub deleted file mode 100644 index 7cc90bd999f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_158.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=158 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.158.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_158.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.158.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_159.sub b/test/ntuple_bulk_grav_1/batch/condor_159.sub deleted file mode 100644 index 4efecc40f4b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_159.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=159 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.159.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_159.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.159.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_16.sub b/test/ntuple_bulk_grav_1/batch/condor_16.sub deleted file mode 100644 index 118dc0efebc..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_160.sub b/test/ntuple_bulk_grav_1/batch/condor_160.sub deleted file mode 100644 index fec21007d4e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_160.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=160 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.160.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_160.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.160.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_161.sub b/test/ntuple_bulk_grav_1/batch/condor_161.sub deleted file mode 100644 index 339b696f026..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_161.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=161 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.161.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_161.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.161.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_162.sub b/test/ntuple_bulk_grav_1/batch/condor_162.sub deleted file mode 100644 index 298ec4d6080..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_162.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=162 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.162.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_162.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.162.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_163.sub b/test/ntuple_bulk_grav_1/batch/condor_163.sub deleted file mode 100644 index 041a8171f29..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_163.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=163 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.163.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_163.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.163.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_164.sub b/test/ntuple_bulk_grav_1/batch/condor_164.sub deleted file mode 100644 index 647d50c50d5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_164.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=164 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.164.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_164.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.164.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_165.sub b/test/ntuple_bulk_grav_1/batch/condor_165.sub deleted file mode 100644 index 5fc79604d31..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_165.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=165 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.165.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_165.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.165.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_166.sub b/test/ntuple_bulk_grav_1/batch/condor_166.sub deleted file mode 100644 index 0cb7ce5624f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_166.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=166 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.166.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_166.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.166.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_167.sub b/test/ntuple_bulk_grav_1/batch/condor_167.sub deleted file mode 100644 index c632adfbc5f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_167.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=167 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.167.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_167.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.167.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_168.sub b/test/ntuple_bulk_grav_1/batch/condor_168.sub deleted file mode 100644 index bae72f9ad4b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_168.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=168 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.168.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_168.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.168.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_169.sub b/test/ntuple_bulk_grav_1/batch/condor_169.sub deleted file mode 100644 index 58dc5846c2a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_169.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=169 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.169.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_169.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.169.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_17.sub b/test/ntuple_bulk_grav_1/batch/condor_17.sub deleted file mode 100644 index b65a99fc10c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_170.sub b/test/ntuple_bulk_grav_1/batch/condor_170.sub deleted file mode 100644 index d6abd38d0c2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_170.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=170 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.170.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_170.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.170.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_171.sub b/test/ntuple_bulk_grav_1/batch/condor_171.sub deleted file mode 100644 index 1f02ca81504..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_171.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=171 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.171.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_171.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.171.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_172.sub b/test/ntuple_bulk_grav_1/batch/condor_172.sub deleted file mode 100644 index 9570c694fce..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_172.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=172 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.172.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_172.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.172.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_173.sub b/test/ntuple_bulk_grav_1/batch/condor_173.sub deleted file mode 100644 index e5657c7e931..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_173.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=173 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.173.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_173.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.173.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_174.sub b/test/ntuple_bulk_grav_1/batch/condor_174.sub deleted file mode 100644 index ce0bb1b7a10..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_174.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=174 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.174.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_174.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.174.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_175.sub b/test/ntuple_bulk_grav_1/batch/condor_175.sub deleted file mode 100644 index b1e0d256cd0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_175.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=175 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.175.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_175.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.175.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_176.sub b/test/ntuple_bulk_grav_1/batch/condor_176.sub deleted file mode 100644 index f4d33562537..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_176.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=176 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.176.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_176.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.176.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_177.sub b/test/ntuple_bulk_grav_1/batch/condor_177.sub deleted file mode 100644 index b4a3b89abe7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_177.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=177 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.177.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_177.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.177.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_178.sub b/test/ntuple_bulk_grav_1/batch/condor_178.sub deleted file mode 100644 index a174e24430a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_178.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=178 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.178.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_178.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.178.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_179.sub b/test/ntuple_bulk_grav_1/batch/condor_179.sub deleted file mode 100644 index ec9ebb6dabb..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_179.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=179 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.179.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_179.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.179.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_18.sub b/test/ntuple_bulk_grav_1/batch/condor_18.sub deleted file mode 100644 index 0b597d0e59e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_180.sub b/test/ntuple_bulk_grav_1/batch/condor_180.sub deleted file mode 100644 index 6bb2d707999..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_180.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=180 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.180.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_180.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.180.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_181.sub b/test/ntuple_bulk_grav_1/batch/condor_181.sub deleted file mode 100644 index f18478ea995..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_181.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=181 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.181.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_181.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.181.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_182.sub b/test/ntuple_bulk_grav_1/batch/condor_182.sub deleted file mode 100644 index 687f717297e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_182.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=182 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.182.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_182.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.182.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_183.sub b/test/ntuple_bulk_grav_1/batch/condor_183.sub deleted file mode 100644 index c0d860fac47..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_183.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=183 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.183.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_183.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.183.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_184.sub b/test/ntuple_bulk_grav_1/batch/condor_184.sub deleted file mode 100644 index 7b6583b25ec..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_184.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=184 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.184.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_184.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.184.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_185.sub b/test/ntuple_bulk_grav_1/batch/condor_185.sub deleted file mode 100644 index e8969e94935..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_185.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=185 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.185.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_185.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.185.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_186.sub b/test/ntuple_bulk_grav_1/batch/condor_186.sub deleted file mode 100644 index 229047716a3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_186.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=186 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.186.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_186.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.186.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_187.sub b/test/ntuple_bulk_grav_1/batch/condor_187.sub deleted file mode 100644 index 45722f34e8e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_187.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=187 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.187.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_187.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.187.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_188.sub b/test/ntuple_bulk_grav_1/batch/condor_188.sub deleted file mode 100644 index c3d650099a0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_188.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=188 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.188.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_188.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.188.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_189.sub b/test/ntuple_bulk_grav_1/batch/condor_189.sub deleted file mode 100644 index 1a361246177..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_189.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=189 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.189.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_189.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.189.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_19.sub b/test/ntuple_bulk_grav_1/batch/condor_19.sub deleted file mode 100644 index 835a737ff29..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_190.sub b/test/ntuple_bulk_grav_1/batch/condor_190.sub deleted file mode 100644 index 110cb6b9399..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_190.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=190 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.190.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_190.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.190.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_191.sub b/test/ntuple_bulk_grav_1/batch/condor_191.sub deleted file mode 100644 index 0e8d2b4894a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_191.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=191 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.191.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_191.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.191.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_192.sub b/test/ntuple_bulk_grav_1/batch/condor_192.sub deleted file mode 100644 index 1290a2cc277..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_192.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=192 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.192.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_192.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.192.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_193.sub b/test/ntuple_bulk_grav_1/batch/condor_193.sub deleted file mode 100644 index a04d7c39beb..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_193.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=193 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.193.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_193.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.193.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_194.sub b/test/ntuple_bulk_grav_1/batch/condor_194.sub deleted file mode 100644 index 35eba13be25..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_194.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=194 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.194.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_194.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.194.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_195.sub b/test/ntuple_bulk_grav_1/batch/condor_195.sub deleted file mode 100644 index 1ce8d2411a5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_195.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=195 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.195.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_195.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.195.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_196.sub b/test/ntuple_bulk_grav_1/batch/condor_196.sub deleted file mode 100644 index a65e042eb46..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_196.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=196 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.196.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_196.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.196.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_197.sub b/test/ntuple_bulk_grav_1/batch/condor_197.sub deleted file mode 100644 index 8bbf014eb84..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_197.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=197 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.197.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_197.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.197.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_198.sub b/test/ntuple_bulk_grav_1/batch/condor_198.sub deleted file mode 100644 index e71bebaec25..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_198.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=198 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.198.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_198.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.198.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_199.sub b/test/ntuple_bulk_grav_1/batch/condor_199.sub deleted file mode 100644 index e3310f87157..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_199.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=199 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.199.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_199.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.199.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_2.sub b/test/ntuple_bulk_grav_1/batch/condor_2.sub deleted file mode 100644 index 60cc1886fa9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_20.sub b/test/ntuple_bulk_grav_1/batch/condor_20.sub deleted file mode 100644 index 33c18a8115b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_200.sub b/test/ntuple_bulk_grav_1/batch/condor_200.sub deleted file mode 100644 index 07edf0b45a1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_200.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=200 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.200.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_200.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.200.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_201.sub b/test/ntuple_bulk_grav_1/batch/condor_201.sub deleted file mode 100644 index 7d8d4240e31..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_201.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=201 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.201.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_201.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.201.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_21.sub b/test/ntuple_bulk_grav_1/batch/condor_21.sub deleted file mode 100644 index 1eff591eacc..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_22.sub b/test/ntuple_bulk_grav_1/batch/condor_22.sub deleted file mode 100644 index 4a87076e116..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_23.sub b/test/ntuple_bulk_grav_1/batch/condor_23.sub deleted file mode 100644 index 48178db1c8a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_24.sub b/test/ntuple_bulk_grav_1/batch/condor_24.sub deleted file mode 100644 index 5f736c3f90b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_25.sub b/test/ntuple_bulk_grav_1/batch/condor_25.sub deleted file mode 100644 index 4e4bb965f64..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_26.sub b/test/ntuple_bulk_grav_1/batch/condor_26.sub deleted file mode 100644 index 5b0679f835a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_27.sub b/test/ntuple_bulk_grav_1/batch/condor_27.sub deleted file mode 100644 index d82a20c3040..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_28.sub b/test/ntuple_bulk_grav_1/batch/condor_28.sub deleted file mode 100644 index 314601fab79..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_29.sub b/test/ntuple_bulk_grav_1/batch/condor_29.sub deleted file mode 100644 index 529e0082c99..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_3.sub b/test/ntuple_bulk_grav_1/batch/condor_3.sub deleted file mode 100644 index 190ccceb3d3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_30.sub b/test/ntuple_bulk_grav_1/batch/condor_30.sub deleted file mode 100644 index bd3415b60e1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_31.sub b/test/ntuple_bulk_grav_1/batch/condor_31.sub deleted file mode 100644 index 4c95e87b039..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_32.sub b/test/ntuple_bulk_grav_1/batch/condor_32.sub deleted file mode 100644 index 029742a3f37..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_33.sub b/test/ntuple_bulk_grav_1/batch/condor_33.sub deleted file mode 100644 index 94b269f58d0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_34.sub b/test/ntuple_bulk_grav_1/batch/condor_34.sub deleted file mode 100644 index 2f7608eee1c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_35.sub b/test/ntuple_bulk_grav_1/batch/condor_35.sub deleted file mode 100644 index cf3a7a41825..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_36.sub b/test/ntuple_bulk_grav_1/batch/condor_36.sub deleted file mode 100644 index 93e41eb35e8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_37.sub b/test/ntuple_bulk_grav_1/batch/condor_37.sub deleted file mode 100644 index 0df9e66c2d8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_38.sub b/test/ntuple_bulk_grav_1/batch/condor_38.sub deleted file mode 100644 index 104a669fb61..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_39.sub b/test/ntuple_bulk_grav_1/batch/condor_39.sub deleted file mode 100644 index 3f7c8257c69..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_4.sub b/test/ntuple_bulk_grav_1/batch/condor_4.sub deleted file mode 100644 index 05d7d87e9ba..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_40.sub b/test/ntuple_bulk_grav_1/batch/condor_40.sub deleted file mode 100644 index 9c5b7674731..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_41.sub b/test/ntuple_bulk_grav_1/batch/condor_41.sub deleted file mode 100644 index 1869379c7d6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_42.sub b/test/ntuple_bulk_grav_1/batch/condor_42.sub deleted file mode 100644 index af5bd60effa..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_43.sub b/test/ntuple_bulk_grav_1/batch/condor_43.sub deleted file mode 100644 index 2dbe95fd761..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_44.sub b/test/ntuple_bulk_grav_1/batch/condor_44.sub deleted file mode 100644 index cca2c294a56..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_45.sub b/test/ntuple_bulk_grav_1/batch/condor_45.sub deleted file mode 100644 index cf3176fedf4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_46.sub b/test/ntuple_bulk_grav_1/batch/condor_46.sub deleted file mode 100644 index 00de52f913c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_47.sub b/test/ntuple_bulk_grav_1/batch/condor_47.sub deleted file mode 100644 index 59995075c8c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_48.sub b/test/ntuple_bulk_grav_1/batch/condor_48.sub deleted file mode 100644 index 13b1e72338d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_49.sub b/test/ntuple_bulk_grav_1/batch/condor_49.sub deleted file mode 100644 index 76caf84cb0b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_5.sub b/test/ntuple_bulk_grav_1/batch/condor_5.sub deleted file mode 100644 index fc6fe73c6ed..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_50.sub b/test/ntuple_bulk_grav_1/batch/condor_50.sub deleted file mode 100644 index dc10e1e7519..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_51.sub b/test/ntuple_bulk_grav_1/batch/condor_51.sub deleted file mode 100644 index 84f8305d802..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_52.sub b/test/ntuple_bulk_grav_1/batch/condor_52.sub deleted file mode 100644 index a5ab03f3959..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_53.sub b/test/ntuple_bulk_grav_1/batch/condor_53.sub deleted file mode 100644 index 57e39327ece..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_54.sub b/test/ntuple_bulk_grav_1/batch/condor_54.sub deleted file mode 100644 index 1e11e8ea6b9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_55.sub b/test/ntuple_bulk_grav_1/batch/condor_55.sub deleted file mode 100644 index c379fbcf75d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_56.sub b/test/ntuple_bulk_grav_1/batch/condor_56.sub deleted file mode 100644 index f0d087c59ba..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_57.sub b/test/ntuple_bulk_grav_1/batch/condor_57.sub deleted file mode 100644 index e5f05cdd0a3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_58.sub b/test/ntuple_bulk_grav_1/batch/condor_58.sub deleted file mode 100644 index 27feacae2d0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_59.sub b/test/ntuple_bulk_grav_1/batch/condor_59.sub deleted file mode 100644 index a15a32ea218..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_6.sub b/test/ntuple_bulk_grav_1/batch/condor_6.sub deleted file mode 100644 index c53507e7500..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_60.sub b/test/ntuple_bulk_grav_1/batch/condor_60.sub deleted file mode 100644 index d8373043290..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_61.sub b/test/ntuple_bulk_grav_1/batch/condor_61.sub deleted file mode 100644 index ccafc82c403..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_62.sub b/test/ntuple_bulk_grav_1/batch/condor_62.sub deleted file mode 100644 index dabf4864c69..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_63.sub b/test/ntuple_bulk_grav_1/batch/condor_63.sub deleted file mode 100644 index 2c353cb0469..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_64.sub b/test/ntuple_bulk_grav_1/batch/condor_64.sub deleted file mode 100644 index 44aa3ad34d3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_65.sub b/test/ntuple_bulk_grav_1/batch/condor_65.sub deleted file mode 100644 index f070e962b6d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_66.sub b/test/ntuple_bulk_grav_1/batch/condor_66.sub deleted file mode 100644 index 1286f54fad5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_67.sub b/test/ntuple_bulk_grav_1/batch/condor_67.sub deleted file mode 100644 index 6051e2e2037..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_68.sub b/test/ntuple_bulk_grav_1/batch/condor_68.sub deleted file mode 100644 index db8dfc877a5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_69.sub b/test/ntuple_bulk_grav_1/batch/condor_69.sub deleted file mode 100644 index 5c7c88e8eb7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_7.sub b/test/ntuple_bulk_grav_1/batch/condor_7.sub deleted file mode 100644 index 9c0293acc0e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_70.sub b/test/ntuple_bulk_grav_1/batch/condor_70.sub deleted file mode 100644 index 1fe2a300b41..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_71.sub b/test/ntuple_bulk_grav_1/batch/condor_71.sub deleted file mode 100644 index fbcaad8d847..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_72.sub b/test/ntuple_bulk_grav_1/batch/condor_72.sub deleted file mode 100644 index 909306f9f6d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_73.sub b/test/ntuple_bulk_grav_1/batch/condor_73.sub deleted file mode 100644 index ad901972b78..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_74.sub b/test/ntuple_bulk_grav_1/batch/condor_74.sub deleted file mode 100644 index 4a995ef24db..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_75.sub b/test/ntuple_bulk_grav_1/batch/condor_75.sub deleted file mode 100644 index 43270f23ae9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_76.sub b/test/ntuple_bulk_grav_1/batch/condor_76.sub deleted file mode 100644 index 18527a77132..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_77.sub b/test/ntuple_bulk_grav_1/batch/condor_77.sub deleted file mode 100644 index 009e7e97f26..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_78.sub b/test/ntuple_bulk_grav_1/batch/condor_78.sub deleted file mode 100644 index 3f5eb503eb6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_79.sub b/test/ntuple_bulk_grav_1/batch/condor_79.sub deleted file mode 100644 index b1fe6f8d0d1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_8.sub b/test/ntuple_bulk_grav_1/batch/condor_8.sub deleted file mode 100644 index 7320edc409c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_80.sub b/test/ntuple_bulk_grav_1/batch/condor_80.sub deleted file mode 100644 index d8b58e14c31..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_81.sub b/test/ntuple_bulk_grav_1/batch/condor_81.sub deleted file mode 100644 index edffdad21e1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_82.sub b/test/ntuple_bulk_grav_1/batch/condor_82.sub deleted file mode 100644 index 49376f6a9d0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_83.sub b/test/ntuple_bulk_grav_1/batch/condor_83.sub deleted file mode 100644 index edae3a9d981..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_84.sub b/test/ntuple_bulk_grav_1/batch/condor_84.sub deleted file mode 100644 index 00a35d462a0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_85.sub b/test/ntuple_bulk_grav_1/batch/condor_85.sub deleted file mode 100644 index 912332006d2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_86.sub b/test/ntuple_bulk_grav_1/batch/condor_86.sub deleted file mode 100644 index 8eeae1453c5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_87.sub b/test/ntuple_bulk_grav_1/batch/condor_87.sub deleted file mode 100644 index 388cbcb4781..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_88.sub b/test/ntuple_bulk_grav_1/batch/condor_88.sub deleted file mode 100644 index 69747614f1f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_89.sub b/test/ntuple_bulk_grav_1/batch/condor_89.sub deleted file mode 100644 index e4b218c5f59..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_9.sub b/test/ntuple_bulk_grav_1/batch/condor_9.sub deleted file mode 100644 index 4ebdcca5b8e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_90.sub b/test/ntuple_bulk_grav_1/batch/condor_90.sub deleted file mode 100644 index cb4b56d8d99..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_91.sub b/test/ntuple_bulk_grav_1/batch/condor_91.sub deleted file mode 100644 index 834556310b0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_92.sub b/test/ntuple_bulk_grav_1/batch/condor_92.sub deleted file mode 100644 index 7f46709464f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_93.sub b/test/ntuple_bulk_grav_1/batch/condor_93.sub deleted file mode 100644 index 6621c7947c9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_94.sub b/test/ntuple_bulk_grav_1/batch/condor_94.sub deleted file mode 100644 index 28c558c2e84..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_95.sub b/test/ntuple_bulk_grav_1/batch/condor_95.sub deleted file mode 100644 index 49b88bc0021..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_96.sub b/test/ntuple_bulk_grav_1/batch/condor_96.sub deleted file mode 100644 index 9866064b6c7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_97.sub b/test/ntuple_bulk_grav_1/batch/condor_97.sub deleted file mode 100644 index 1bacf17c09e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_98.sub b/test/ntuple_bulk_grav_1/batch/condor_98.sub deleted file mode 100644 index 6c0439500cd..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/condor_99.sub b/test/ntuple_bulk_grav_1/batch/condor_99.sub deleted file mode 100644 index fbd97283766..00000000000 --- a/test/ntuple_bulk_grav_1/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/nJobs.202 b/test/ntuple_bulk_grav_1/batch/nJobs.202 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_bulk_grav_1/batch/sge_0.sh b/test/ntuple_bulk_grav_1/batch/sge_0.sh deleted file mode 100755 index b6c923e9e1a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=0 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_1.sh b/test/ntuple_bulk_grav_1/batch/sge_1.sh deleted file mode 100755 index b3288610ab2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_10.sh b/test/ntuple_bulk_grav_1/batch/sge_10.sh deleted file mode 100755 index 242df5f4bef..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=10 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_100.sh b/test/ntuple_bulk_grav_1/batch/sge_100.sh deleted file mode 100755 index 4ab52c344e2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=100 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_101.sh b/test/ntuple_bulk_grav_1/batch/sge_101.sh deleted file mode 100755 index 4106234bd22..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=101 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_102.sh b/test/ntuple_bulk_grav_1/batch/sge_102.sh deleted file mode 100755 index d62bd37372a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=102 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_103.sh b/test/ntuple_bulk_grav_1/batch/sge_103.sh deleted file mode 100755 index 49b5f32c71d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=103 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_104.sh b/test/ntuple_bulk_grav_1/batch/sge_104.sh deleted file mode 100755 index 2b137504354..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=104 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_105.sh b/test/ntuple_bulk_grav_1/batch/sge_105.sh deleted file mode 100755 index 92bf8c70211..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=105 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_106.sh b/test/ntuple_bulk_grav_1/batch/sge_106.sh deleted file mode 100755 index 3d4d39201a8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=106 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_107.sh b/test/ntuple_bulk_grav_1/batch/sge_107.sh deleted file mode 100755 index 2ca0982b0be..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=107 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_108.sh b/test/ntuple_bulk_grav_1/batch/sge_108.sh deleted file mode 100755 index dd9da6d8fa8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=108 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_109.sh b/test/ntuple_bulk_grav_1/batch/sge_109.sh deleted file mode 100755 index d680d2f99ae..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=109 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_11.sh b/test/ntuple_bulk_grav_1/batch/sge_11.sh deleted file mode 100755 index 3d4d9b90f5f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=11 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_110.sh b/test/ntuple_bulk_grav_1/batch/sge_110.sh deleted file mode 100755 index 9f7287b07d0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=110 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_111.sh b/test/ntuple_bulk_grav_1/batch/sge_111.sh deleted file mode 100755 index bea37a10f67..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=111 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_112.sh b/test/ntuple_bulk_grav_1/batch/sge_112.sh deleted file mode 100755 index f5b9f4b08b2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=112 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_113.sh b/test/ntuple_bulk_grav_1/batch/sge_113.sh deleted file mode 100755 index 9d9a18b8de8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=113 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_114.sh b/test/ntuple_bulk_grav_1/batch/sge_114.sh deleted file mode 100755 index 11edd910cd4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=114 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_115.sh b/test/ntuple_bulk_grav_1/batch/sge_115.sh deleted file mode 100755 index 0db07eb8599..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=115 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_116.sh b/test/ntuple_bulk_grav_1/batch/sge_116.sh deleted file mode 100755 index 92af03449dd..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=116 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_117.sh b/test/ntuple_bulk_grav_1/batch/sge_117.sh deleted file mode 100755 index 7e6189ea26e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=117 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_118.sh b/test/ntuple_bulk_grav_1/batch/sge_118.sh deleted file mode 100755 index 3149e168ede..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=118 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_119.sh b/test/ntuple_bulk_grav_1/batch/sge_119.sh deleted file mode 100755 index 4baba0aa9a1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=119 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_12.sh b/test/ntuple_bulk_grav_1/batch/sge_12.sh deleted file mode 100755 index b1eb0a28f0b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=12 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_120.sh b/test/ntuple_bulk_grav_1/batch/sge_120.sh deleted file mode 100755 index 9b7c9761f47..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=120 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_121.sh b/test/ntuple_bulk_grav_1/batch/sge_121.sh deleted file mode 100755 index 4197ba3b741..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=121 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_122.sh b/test/ntuple_bulk_grav_1/batch/sge_122.sh deleted file mode 100755 index 897ec1e4630..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=122 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_123.sh b/test/ntuple_bulk_grav_1/batch/sge_123.sh deleted file mode 100755 index fd8c9d94aa2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=123 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_124.sh b/test/ntuple_bulk_grav_1/batch/sge_124.sh deleted file mode 100755 index 77b3ea5c34d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=124 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_125.sh b/test/ntuple_bulk_grav_1/batch/sge_125.sh deleted file mode 100755 index 9a93e98404d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=125 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_126.sh b/test/ntuple_bulk_grav_1/batch/sge_126.sh deleted file mode 100755 index 73f20325468..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=126 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_127.sh b/test/ntuple_bulk_grav_1/batch/sge_127.sh deleted file mode 100755 index 1669d196160..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=127 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_128.sh b/test/ntuple_bulk_grav_1/batch/sge_128.sh deleted file mode 100755 index f3e7fc0cfcb..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=128 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_129.sh b/test/ntuple_bulk_grav_1/batch/sge_129.sh deleted file mode 100755 index 1c071872d27..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=129 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_13.sh b/test/ntuple_bulk_grav_1/batch/sge_13.sh deleted file mode 100755 index 5de00f9c5ea..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=13 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_130.sh b/test/ntuple_bulk_grav_1/batch/sge_130.sh deleted file mode 100755 index 21021fcb81a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=130 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_131.sh b/test/ntuple_bulk_grav_1/batch/sge_131.sh deleted file mode 100755 index 6d4533bcbec..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=131 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_132.sh b/test/ntuple_bulk_grav_1/batch/sge_132.sh deleted file mode 100755 index 2d014090c73..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=132 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_133.sh b/test/ntuple_bulk_grav_1/batch/sge_133.sh deleted file mode 100755 index ae5ff2c7760..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=133 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_134.sh b/test/ntuple_bulk_grav_1/batch/sge_134.sh deleted file mode 100755 index 33b8281a44f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=134 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_135.sh b/test/ntuple_bulk_grav_1/batch/sge_135.sh deleted file mode 100755 index 21d8a25a2d3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=135 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_136.sh b/test/ntuple_bulk_grav_1/batch/sge_136.sh deleted file mode 100755 index 565fc640d6d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=136 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_137.sh b/test/ntuple_bulk_grav_1/batch/sge_137.sh deleted file mode 100755 index 367b66ea60d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=137 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_138.sh b/test/ntuple_bulk_grav_1/batch/sge_138.sh deleted file mode 100755 index 82c6a022a1d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=138 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_139.sh b/test/ntuple_bulk_grav_1/batch/sge_139.sh deleted file mode 100755 index aa367a17c76..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_139.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=139 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_139.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=139 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_14.sh b/test/ntuple_bulk_grav_1/batch/sge_14.sh deleted file mode 100755 index a98c960b964..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=14 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_140.sh b/test/ntuple_bulk_grav_1/batch/sge_140.sh deleted file mode 100755 index 0c342dc8024..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_140.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=140 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_140.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=140 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_141.sh b/test/ntuple_bulk_grav_1/batch/sge_141.sh deleted file mode 100755 index 73679a831d1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_141.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=141 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_141.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=141 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_142.sh b/test/ntuple_bulk_grav_1/batch/sge_142.sh deleted file mode 100755 index 571bef53230..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_142.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=142 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_142.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=142 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_143.sh b/test/ntuple_bulk_grav_1/batch/sge_143.sh deleted file mode 100755 index 9c4924baebc..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_143.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=143 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_143.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=143 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_144.sh b/test/ntuple_bulk_grav_1/batch/sge_144.sh deleted file mode 100755 index f24051f8e5f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_144.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=144 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_144.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=144 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_145.sh b/test/ntuple_bulk_grav_1/batch/sge_145.sh deleted file mode 100755 index 9c080e06df3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_145.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=145 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_145.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=145 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_146.sh b/test/ntuple_bulk_grav_1/batch/sge_146.sh deleted file mode 100755 index 44414fa7fd5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_146.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=146 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_146.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=146 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_147.sh b/test/ntuple_bulk_grav_1/batch/sge_147.sh deleted file mode 100755 index 57501e9e949..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_147.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=147 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_147.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=147 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_148.sh b/test/ntuple_bulk_grav_1/batch/sge_148.sh deleted file mode 100755 index 65a4112ebdb..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_148.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=148 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_148.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=148 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_149.sh b/test/ntuple_bulk_grav_1/batch/sge_149.sh deleted file mode 100755 index 44ffcac9def..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_149.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=149 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_149.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=149 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_15.sh b/test/ntuple_bulk_grav_1/batch/sge_15.sh deleted file mode 100755 index e905d77bc9e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=15 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_150.sh b/test/ntuple_bulk_grav_1/batch/sge_150.sh deleted file mode 100755 index 8ef3f152d2c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_150.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=150 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_150.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=150 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_151.sh b/test/ntuple_bulk_grav_1/batch/sge_151.sh deleted file mode 100755 index f4aac64a9aa..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_151.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=151 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_151.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=151 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_152.sh b/test/ntuple_bulk_grav_1/batch/sge_152.sh deleted file mode 100755 index 731cbe1084a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_152.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=152 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_152.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=152 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_153.sh b/test/ntuple_bulk_grav_1/batch/sge_153.sh deleted file mode 100755 index 2975b9b3408..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_153.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=153 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_153.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=153 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_154.sh b/test/ntuple_bulk_grav_1/batch/sge_154.sh deleted file mode 100755 index aeb1ef42ba0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_154.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=154 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_154.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=154 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_155.sh b/test/ntuple_bulk_grav_1/batch/sge_155.sh deleted file mode 100755 index 63b0809d122..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_155.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=155 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_155.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=155 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_156.sh b/test/ntuple_bulk_grav_1/batch/sge_156.sh deleted file mode 100755 index b3b3b187d91..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_156.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=156 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_156.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=156 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_157.sh b/test/ntuple_bulk_grav_1/batch/sge_157.sh deleted file mode 100755 index f65dbcbe3a6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_157.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=157 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_157.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=157 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_158.sh b/test/ntuple_bulk_grav_1/batch/sge_158.sh deleted file mode 100755 index 5f0c1b0312d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_158.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=158 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_158.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=158 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_159.sh b/test/ntuple_bulk_grav_1/batch/sge_159.sh deleted file mode 100755 index 65c4b5a6e86..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_159.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=159 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_159.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=159 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_16.sh b/test/ntuple_bulk_grav_1/batch/sge_16.sh deleted file mode 100755 index 6dcac6c084c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=16 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_160.sh b/test/ntuple_bulk_grav_1/batch/sge_160.sh deleted file mode 100755 index babb160ae66..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_160.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=160 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_160.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=160 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_161.sh b/test/ntuple_bulk_grav_1/batch/sge_161.sh deleted file mode 100755 index 0bc84577b16..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_161.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=161 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_161.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=161 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_162.sh b/test/ntuple_bulk_grav_1/batch/sge_162.sh deleted file mode 100755 index 955397e784f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_162.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=162 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_162.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=162 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_163.sh b/test/ntuple_bulk_grav_1/batch/sge_163.sh deleted file mode 100755 index d6dc173e8f8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_163.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=163 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_163.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=163 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_164.sh b/test/ntuple_bulk_grav_1/batch/sge_164.sh deleted file mode 100755 index eeab21f1553..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_164.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=164 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_164.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=164 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_165.sh b/test/ntuple_bulk_grav_1/batch/sge_165.sh deleted file mode 100755 index 8a169b23c05..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_165.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=165 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_165.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=165 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_166.sh b/test/ntuple_bulk_grav_1/batch/sge_166.sh deleted file mode 100755 index 0d99042c9ee..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_166.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=166 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_166.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=166 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_167.sh b/test/ntuple_bulk_grav_1/batch/sge_167.sh deleted file mode 100755 index 6caf118a4e7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_167.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=167 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_167.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=167 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_168.sh b/test/ntuple_bulk_grav_1/batch/sge_168.sh deleted file mode 100755 index c91e5aee18b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_168.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=168 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_168.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=168 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_169.sh b/test/ntuple_bulk_grav_1/batch/sge_169.sh deleted file mode 100755 index 6794c0a5d09..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_169.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=169 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_169.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=169 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_17.sh b/test/ntuple_bulk_grav_1/batch/sge_17.sh deleted file mode 100755 index 3cc08795825..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=17 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_170.sh b/test/ntuple_bulk_grav_1/batch/sge_170.sh deleted file mode 100755 index 7e9a39c2142..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_170.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=170 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_170.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=170 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_171.sh b/test/ntuple_bulk_grav_1/batch/sge_171.sh deleted file mode 100755 index f0b0639eca1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_171.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=171 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_171.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=171 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_172.sh b/test/ntuple_bulk_grav_1/batch/sge_172.sh deleted file mode 100755 index 7cb7aba3aab..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_172.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=172 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_172.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=172 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_173.sh b/test/ntuple_bulk_grav_1/batch/sge_173.sh deleted file mode 100755 index 52d2b293be0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_173.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=173 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_173.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=173 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_174.sh b/test/ntuple_bulk_grav_1/batch/sge_174.sh deleted file mode 100755 index 318884584aa..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_174.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=174 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_174.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=174 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_175.sh b/test/ntuple_bulk_grav_1/batch/sge_175.sh deleted file mode 100755 index c77d7f1cc5c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_175.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=175 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_175.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=175 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_176.sh b/test/ntuple_bulk_grav_1/batch/sge_176.sh deleted file mode 100755 index 622f62754b4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_176.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=176 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_176.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=176 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_177.sh b/test/ntuple_bulk_grav_1/batch/sge_177.sh deleted file mode 100755 index 06457adc86d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_177.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=177 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_177.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=177 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_178.sh b/test/ntuple_bulk_grav_1/batch/sge_178.sh deleted file mode 100755 index 564b5b006d6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_178.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=178 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_178.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=178 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_179.sh b/test/ntuple_bulk_grav_1/batch/sge_179.sh deleted file mode 100755 index 5e8155bc906..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_179.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=179 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_179.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=179 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_18.sh b/test/ntuple_bulk_grav_1/batch/sge_18.sh deleted file mode 100755 index 290f700ec33..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=18 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_180.sh b/test/ntuple_bulk_grav_1/batch/sge_180.sh deleted file mode 100755 index b81d6deee9c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_180.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=180 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_180.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=180 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_181.sh b/test/ntuple_bulk_grav_1/batch/sge_181.sh deleted file mode 100755 index 957a2986b4a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_181.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=181 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_181.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=181 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_182.sh b/test/ntuple_bulk_grav_1/batch/sge_182.sh deleted file mode 100755 index d579aeccb50..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_182.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=182 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_182.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=182 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_183.sh b/test/ntuple_bulk_grav_1/batch/sge_183.sh deleted file mode 100755 index 06f9fde68cd..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_183.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=183 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_183.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=183 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_184.sh b/test/ntuple_bulk_grav_1/batch/sge_184.sh deleted file mode 100755 index 0a0ef95c50b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_184.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=184 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_184.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=184 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_185.sh b/test/ntuple_bulk_grav_1/batch/sge_185.sh deleted file mode 100755 index dff1c0be0b4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_185.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=185 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_185.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=185 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_186.sh b/test/ntuple_bulk_grav_1/batch/sge_186.sh deleted file mode 100755 index 0e4bc6c28c7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_186.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=186 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_186.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=186 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_187.sh b/test/ntuple_bulk_grav_1/batch/sge_187.sh deleted file mode 100755 index 8ac87b38741..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_187.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=187 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_187.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=187 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_188.sh b/test/ntuple_bulk_grav_1/batch/sge_188.sh deleted file mode 100755 index 19cad4b8a9d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_188.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=188 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_188.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=188 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_189.sh b/test/ntuple_bulk_grav_1/batch/sge_189.sh deleted file mode 100755 index 230c798e21c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_189.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=189 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_189.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=189 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_19.sh b/test/ntuple_bulk_grav_1/batch/sge_19.sh deleted file mode 100755 index 7ee027daacf..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=19 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_190.sh b/test/ntuple_bulk_grav_1/batch/sge_190.sh deleted file mode 100755 index 2f701ef3f48..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_190.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=190 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_190.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=190 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_191.sh b/test/ntuple_bulk_grav_1/batch/sge_191.sh deleted file mode 100755 index cf29ba56382..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_191.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=191 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_191.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=191 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_192.sh b/test/ntuple_bulk_grav_1/batch/sge_192.sh deleted file mode 100755 index a20dad1548f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_192.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=192 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_192.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=192 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_193.sh b/test/ntuple_bulk_grav_1/batch/sge_193.sh deleted file mode 100755 index 3cd9387269f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_193.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=193 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_193.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=193 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_194.sh b/test/ntuple_bulk_grav_1/batch/sge_194.sh deleted file mode 100755 index ebb8622a17f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_194.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=194 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_194.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=194 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_195.sh b/test/ntuple_bulk_grav_1/batch/sge_195.sh deleted file mode 100755 index e313acd6c1a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_195.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=195 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_195.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=195 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_196.sh b/test/ntuple_bulk_grav_1/batch/sge_196.sh deleted file mode 100755 index 2dbd10a724d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_196.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=196 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_196.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=196 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_197.sh b/test/ntuple_bulk_grav_1/batch/sge_197.sh deleted file mode 100755 index ef7755ee30f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_197.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=197 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_197.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=197 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_198.sh b/test/ntuple_bulk_grav_1/batch/sge_198.sh deleted file mode 100755 index 346e13ba087..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_198.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=198 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_198.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=198 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_199.sh b/test/ntuple_bulk_grav_1/batch/sge_199.sh deleted file mode 100755 index 37b20fa1730..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_199.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=199 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_199.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=199 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_2.sh b/test/ntuple_bulk_grav_1/batch/sge_2.sh deleted file mode 100755 index 87afb3d4eea..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=2 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_20.sh b/test/ntuple_bulk_grav_1/batch/sge_20.sh deleted file mode 100755 index 640b2449916..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=20 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_200.sh b/test/ntuple_bulk_grav_1/batch/sge_200.sh deleted file mode 100755 index 0faf4cb5a9b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_200.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=200 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_200.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=200 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_201.sh b/test/ntuple_bulk_grav_1/batch/sge_201.sh deleted file mode 100755 index b42775b83e1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_201.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=201 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_201.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=201 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_21.sh b/test/ntuple_bulk_grav_1/batch/sge_21.sh deleted file mode 100755 index 4eb09d87d8e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=21 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_22.sh b/test/ntuple_bulk_grav_1/batch/sge_22.sh deleted file mode 100755 index 37014aa3966..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=22 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_23.sh b/test/ntuple_bulk_grav_1/batch/sge_23.sh deleted file mode 100755 index 5e3e8fa025e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=23 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_24.sh b/test/ntuple_bulk_grav_1/batch/sge_24.sh deleted file mode 100755 index 23bbd7abd91..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=24 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_25.sh b/test/ntuple_bulk_grav_1/batch/sge_25.sh deleted file mode 100755 index 0bda2386778..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=25 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_26.sh b/test/ntuple_bulk_grav_1/batch/sge_26.sh deleted file mode 100755 index 7f23cb6159f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=26 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_27.sh b/test/ntuple_bulk_grav_1/batch/sge_27.sh deleted file mode 100755 index 0639126b8f4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=27 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_28.sh b/test/ntuple_bulk_grav_1/batch/sge_28.sh deleted file mode 100755 index 24e37cb90bc..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=28 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_29.sh b/test/ntuple_bulk_grav_1/batch/sge_29.sh deleted file mode 100755 index be1f957adaa..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=29 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_3.sh b/test/ntuple_bulk_grav_1/batch/sge_3.sh deleted file mode 100755 index d6749f3751b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=3 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_30.sh b/test/ntuple_bulk_grav_1/batch/sge_30.sh deleted file mode 100755 index 76f1d2173dd..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=30 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_31.sh b/test/ntuple_bulk_grav_1/batch/sge_31.sh deleted file mode 100755 index a9846e1b1d3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=31 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_32.sh b/test/ntuple_bulk_grav_1/batch/sge_32.sh deleted file mode 100755 index 437ff1c1493..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=32 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_33.sh b/test/ntuple_bulk_grav_1/batch/sge_33.sh deleted file mode 100755 index d5c2653d81a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=33 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_34.sh b/test/ntuple_bulk_grav_1/batch/sge_34.sh deleted file mode 100755 index 760c39ac31a..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=34 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_35.sh b/test/ntuple_bulk_grav_1/batch/sge_35.sh deleted file mode 100755 index d98798283d0..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=35 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_36.sh b/test/ntuple_bulk_grav_1/batch/sge_36.sh deleted file mode 100755 index 74a13cc7c36..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=36 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_37.sh b/test/ntuple_bulk_grav_1/batch/sge_37.sh deleted file mode 100755 index 5d5a2614550..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=37 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_38.sh b/test/ntuple_bulk_grav_1/batch/sge_38.sh deleted file mode 100755 index 248b5790ee6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=38 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_39.sh b/test/ntuple_bulk_grav_1/batch/sge_39.sh deleted file mode 100755 index 693d8a40e8d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=39 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_4.sh b/test/ntuple_bulk_grav_1/batch/sge_4.sh deleted file mode 100755 index ab883edc146..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=4 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_40.sh b/test/ntuple_bulk_grav_1/batch/sge_40.sh deleted file mode 100755 index 9d73f7618c1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=40 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_41.sh b/test/ntuple_bulk_grav_1/batch/sge_41.sh deleted file mode 100755 index f2c5990dbf3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=41 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_42.sh b/test/ntuple_bulk_grav_1/batch/sge_42.sh deleted file mode 100755 index 24e06486f50..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=42 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_43.sh b/test/ntuple_bulk_grav_1/batch/sge_43.sh deleted file mode 100755 index ae9ed317ad4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=43 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_44.sh b/test/ntuple_bulk_grav_1/batch/sge_44.sh deleted file mode 100755 index 4e9a3c8d453..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=44 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_45.sh b/test/ntuple_bulk_grav_1/batch/sge_45.sh deleted file mode 100755 index 56592d979a4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=45 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_46.sh b/test/ntuple_bulk_grav_1/batch/sge_46.sh deleted file mode 100755 index fd8a9e9a570..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=46 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_47.sh b/test/ntuple_bulk_grav_1/batch/sge_47.sh deleted file mode 100755 index 1c95e7ea64e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=47 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_48.sh b/test/ntuple_bulk_grav_1/batch/sge_48.sh deleted file mode 100755 index b749836d236..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=48 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_49.sh b/test/ntuple_bulk_grav_1/batch/sge_49.sh deleted file mode 100755 index 362a61591a1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=49 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_5.sh b/test/ntuple_bulk_grav_1/batch/sge_5.sh deleted file mode 100755 index 782e1a747ec..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=5 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_50.sh b/test/ntuple_bulk_grav_1/batch/sge_50.sh deleted file mode 100755 index 06d5ec44658..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=50 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_51.sh b/test/ntuple_bulk_grav_1/batch/sge_51.sh deleted file mode 100755 index bfcb927f2b8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=51 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_52.sh b/test/ntuple_bulk_grav_1/batch/sge_52.sh deleted file mode 100755 index 364be36c8c8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=52 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_53.sh b/test/ntuple_bulk_grav_1/batch/sge_53.sh deleted file mode 100755 index a6d20f32d45..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=53 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_54.sh b/test/ntuple_bulk_grav_1/batch/sge_54.sh deleted file mode 100755 index 8f589376d24..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=54 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_55.sh b/test/ntuple_bulk_grav_1/batch/sge_55.sh deleted file mode 100755 index d1e83ec15a2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=55 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_56.sh b/test/ntuple_bulk_grav_1/batch/sge_56.sh deleted file mode 100755 index 5718438ca89..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=56 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_57.sh b/test/ntuple_bulk_grav_1/batch/sge_57.sh deleted file mode 100755 index 511aadd5cad..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=57 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_58.sh b/test/ntuple_bulk_grav_1/batch/sge_58.sh deleted file mode 100755 index 8579bb89f64..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=58 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_59.sh b/test/ntuple_bulk_grav_1/batch/sge_59.sh deleted file mode 100755 index 873280862e3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=59 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_6.sh b/test/ntuple_bulk_grav_1/batch/sge_6.sh deleted file mode 100755 index bf93888a302..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=6 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_60.sh b/test/ntuple_bulk_grav_1/batch/sge_60.sh deleted file mode 100755 index 1f378bbf2e4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=60 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_61.sh b/test/ntuple_bulk_grav_1/batch/sge_61.sh deleted file mode 100755 index e7b8957b597..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=61 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_62.sh b/test/ntuple_bulk_grav_1/batch/sge_62.sh deleted file mode 100755 index 1b79e1a8636..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=62 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_63.sh b/test/ntuple_bulk_grav_1/batch/sge_63.sh deleted file mode 100755 index ea94c8ba3d7..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=63 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_64.sh b/test/ntuple_bulk_grav_1/batch/sge_64.sh deleted file mode 100755 index fbd13d822e1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=64 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_65.sh b/test/ntuple_bulk_grav_1/batch/sge_65.sh deleted file mode 100755 index 7f602c383b1..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=65 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_66.sh b/test/ntuple_bulk_grav_1/batch/sge_66.sh deleted file mode 100755 index 317c00ce2d2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=66 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_67.sh b/test/ntuple_bulk_grav_1/batch/sge_67.sh deleted file mode 100755 index d4f923c5cb9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=67 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_68.sh b/test/ntuple_bulk_grav_1/batch/sge_68.sh deleted file mode 100755 index 78af5e23ec3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=68 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_69.sh b/test/ntuple_bulk_grav_1/batch/sge_69.sh deleted file mode 100755 index 790f0ee71ef..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=69 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_7.sh b/test/ntuple_bulk_grav_1/batch/sge_7.sh deleted file mode 100755 index 415d6123fd6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=7 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_70.sh b/test/ntuple_bulk_grav_1/batch/sge_70.sh deleted file mode 100755 index 2e2aff43d44..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=70 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_71.sh b/test/ntuple_bulk_grav_1/batch/sge_71.sh deleted file mode 100755 index 5c58cb8db6e..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=71 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_72.sh b/test/ntuple_bulk_grav_1/batch/sge_72.sh deleted file mode 100755 index c887dc700f4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=72 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_73.sh b/test/ntuple_bulk_grav_1/batch/sge_73.sh deleted file mode 100755 index 1d7faafd74f..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=73 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_74.sh b/test/ntuple_bulk_grav_1/batch/sge_74.sh deleted file mode 100755 index e67ed898884..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=74 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_75.sh b/test/ntuple_bulk_grav_1/batch/sge_75.sh deleted file mode 100755 index f6385357b4c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=75 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_76.sh b/test/ntuple_bulk_grav_1/batch/sge_76.sh deleted file mode 100755 index 25c2b5118d9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=76 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_77.sh b/test/ntuple_bulk_grav_1/batch/sge_77.sh deleted file mode 100755 index fc4f04b1e1c..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=77 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_78.sh b/test/ntuple_bulk_grav_1/batch/sge_78.sh deleted file mode 100755 index b36b7ec7dc2..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=78 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_79.sh b/test/ntuple_bulk_grav_1/batch/sge_79.sh deleted file mode 100755 index 4d2f04011aa..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=79 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_8.sh b/test/ntuple_bulk_grav_1/batch/sge_8.sh deleted file mode 100755 index 44d27177551..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=8 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_80.sh b/test/ntuple_bulk_grav_1/batch/sge_80.sh deleted file mode 100755 index 02ff58aa159..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=80 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_81.sh b/test/ntuple_bulk_grav_1/batch/sge_81.sh deleted file mode 100755 index f272d9b09a3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=81 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_82.sh b/test/ntuple_bulk_grav_1/batch/sge_82.sh deleted file mode 100755 index b3b1a8fb0c3..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=82 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_83.sh b/test/ntuple_bulk_grav_1/batch/sge_83.sh deleted file mode 100755 index d5d8dc3075d..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=83 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_84.sh b/test/ntuple_bulk_grav_1/batch/sge_84.sh deleted file mode 100755 index 52c3a12abe4..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=84 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_85.sh b/test/ntuple_bulk_grav_1/batch/sge_85.sh deleted file mode 100755 index 8936b81de0b..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=85 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_86.sh b/test/ntuple_bulk_grav_1/batch/sge_86.sh deleted file mode 100755 index fc796c431a5..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=86 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_87.sh b/test/ntuple_bulk_grav_1/batch/sge_87.sh deleted file mode 100755 index 17802ba4a36..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=87 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_88.sh b/test/ntuple_bulk_grav_1/batch/sge_88.sh deleted file mode 100755 index 9afb454e8f8..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=88 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_89.sh b/test/ntuple_bulk_grav_1/batch/sge_89.sh deleted file mode 100755 index 158308a0420..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=89 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_9.sh b/test/ntuple_bulk_grav_1/batch/sge_9.sh deleted file mode 100755 index 9d49353b1d9..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=9 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_90.sh b/test/ntuple_bulk_grav_1/batch/sge_90.sh deleted file mode 100755 index 91ea36a1f60..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=90 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_91.sh b/test/ntuple_bulk_grav_1/batch/sge_91.sh deleted file mode 100755 index 2e6fc5ff527..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=91 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_92.sh b/test/ntuple_bulk_grav_1/batch/sge_92.sh deleted file mode 100755 index ecd1f30fb20..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=92 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_93.sh b/test/ntuple_bulk_grav_1/batch/sge_93.sh deleted file mode 100755 index 64d432f0306..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=93 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_94.sh b/test/ntuple_bulk_grav_1/batch/sge_94.sh deleted file mode 100755 index 8f389326cca..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=94 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_95.sh b/test/ntuple_bulk_grav_1/batch/sge_95.sh deleted file mode 100755 index e0c7e9922eb..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=95 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_96.sh b/test/ntuple_bulk_grav_1/batch/sge_96.sh deleted file mode 100755 index 58d34196384..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=96 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_97.sh b/test/ntuple_bulk_grav_1/batch/sge_97.sh deleted file mode 100755 index 7d88cd39fcc..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=97 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_98.sh b/test/ntuple_bulk_grav_1/batch/sge_98.sh deleted file mode 100755 index 9e42f9adf55..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=98 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batch/sge_99.sh b/test/ntuple_bulk_grav_1/batch/sge_99.sh deleted file mode 100755 index 1de3bd4a4e6..00000000000 --- a/test/ntuple_bulk_grav_1/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=99 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/batchscript.sh b/test/ntuple_bulk_grav_1/batchscript.sh deleted file mode 100755 index 093b7a44122..00000000000 --- a/test/ntuple_bulk_grav_1/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_bulk_grav_1" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/condor.sub b/test/ntuple_bulk_grav_1/condor.sub deleted file mode 100644 index b34cd5215da..00000000000 --- a/test/ntuple_bulk_grav_1/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part1TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=202 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ntuple_bulk_grav_1_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 202 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/helper b/test/ntuple_bulk_grav_1/helper deleted file mode 120000 index cbb5694c383..00000000000 --- a/test/ntuple_bulk_grav_1/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_bulk_grav_1/batch/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/output b/test/ntuple_bulk_grav_1/output deleted file mode 120000 index 5361aa788bd..00000000000 --- a/test/ntuple_bulk_grav_1/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_1/output/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_1/sge_sub.sh b/test/ntuple_bulk_grav_1/sge_sub.sh deleted file mode 100755 index 660f7811033..00000000000 --- a/test/ntuple_bulk_grav_1/sge_sub.sh +++ /dev/null @@ -1,202 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_182.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_183.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_184.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_185.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_186.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_187.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_188.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_189.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_190.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_191.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_192.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_193.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_194.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_195.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_196.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_197.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_198.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_199.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_200.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_1/batch/sge_201.sh diff --git a/test/ntuple_bulk_grav_2/ademoor.cc b/test/ntuple_bulk_grav_2/ademoor.cc deleted file mode 100644 index 2485069921e04ececb7e09ffe705a35e0c7f748c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$Wl$X4l7v{&^7K0e=GKuY)KmuB^Z!D)o{g8kw5eIXF1~zg5_mjz8z0W?$Jj z8@pP#{~k8MNeviV`vL%p8!v5t2eOM% zAhH7_5ZUH494rh16dC-F9eG3$!ao`;^fd$v{MWj_tNDS*JTFsk|8!tO|BU7ZBGbYL zB2#XA*q1HLKZ9Kdh06NG8#v|?S2~19m3mrtW$y&O7!(=dXp|1sW#8FHN)2jN#FKFN ze8q`MI#JAQXpQkckEcO7YJT%^Yvdt;O2vaP7}Df)Huv*EA55`-{DEibQgn?_Z!_g2 zmPK|X@T?!^Q$;p%vp(BqSWsJKE1drob+z*+Ol2nzY2y#mMxKM_3%KX_McLcE1z=?+ z^O(Bzefb9-4o(6&n{%Ru=3efZijr)l+~NBAc4vPNRc>AO8ka_kqgNI0gvpNUk^H;i z4Ju+h+B5iW;AvZ)B7to3^94mIJK}O|OwsMkMQk{6k(D10nD= z6IJ*bq&o?|o0D8^73m1^Y)|*K5e6jvnnri=nYf-o*;SKxaV1o|m?iH< z1#?PR4T3O!16PRT4`xI4-%{$jG6#La$&3{-@(zBAM@>8Cos(k2er0dul}*riPM#;T z$G%Vn6g{enJ?K1?RW~TimUQw=6nxAod#=#964WUxY-{g=erAM68eYsfT*8g!&fq5h zbv;@rgTZzK^GvRdMde%HqW9F1jfKNn``Ora+aNUw`W2PQ?6QaRlysiaJKIi9OxCRV zH2(UF@CT4h2nLbP0rezboivyH4QgnQ!Y7>$aZ#q+%f|EshA8qAX}Qb`N_6>01wJfL}~;wW#0(B6!u)<={8W{#ODERwK(f&SR6w}Azo3Il7%yO$?1 zO8rLdqL)heJ;_>XbPyL&xvRyPYd=I!rN;J?Q-y`!mqZQE*~L6-KU4P_F2_du`7|wG zTbc$Eh|=V1~T!R^YNhJXKc7nc2dp+yPTZinDivZf>h@ALPKgC(ZS032eSB zT8+U!1-Sr=DU^ox=Q6&~dSw6dQ#gmJY>O*&ClS` zRz5#tEyTj=qTp~0V0L!H!KGQm3g|r;Fs53`tD(j0ow2qQoRv!&PYbg}4Ad4ZwklgC zNZ8h0#MjGbwIS|QJY6IMLp`<~05rh2j%vHM2kBQ#01;v}>mjt3F89I{>WDyH_Hs9s zN8(aDq-niRVpw0!iiyrC?Yj1KXdc$>An+cR>9!vad=Rj}Pv>#PMm493R?(aunjJRI z0%30T4-cht`!n~iGqXNWtlJDJpTkU|7zTaOHlMZg4DQ$Ay$DU1?XybJFwOh_&jo;6z6+3?J zm>ZAxDC5LQtPHYQhLi})7vt{J#^ClYyWNyqGYF!R=kKWD$yd<={4hsbB){g;8j|H< z%%HB&VG3{JG9`DldJQQFv1N>4r>lcE8MHoeA<8yIe?yK;P{ZtnACuAV2* zBbEBZ?ev_Wn6Ls_SCoD;}Pq17V5 zcJYCzZnDCrB z%+yD=MRrx%1S2K*+KlGBDS0Ltu~X$A!`1MR)cj;3S+P?4N*W69VX^rL3YXzcv=q8< zkm3=tL|-c}Qx2bz9(BgRhi1jyOH~6eEp)i=W;nuXM8XJb7W(WTk~bf-2hxP|cUEeaMP&XQ_v&>0xe6 z&a(Y$`WA^;AbFu9sy;$k@OjxjX~JXzwc+!J#pcJu)*mG9b#D~x*K#S>+JR#ue&b^k z&f|ncCWj5D!{idF%;pHblI#do_E&ieC8vv?KHW}*#n<2Ckvt_}W=Qe&T@yd;YYHls zQcq+56i5&CU1MQdNW0`JoQw9`p~D2{&G6|gY08Fo5)^5No8GA3O)A_i;@Zt+55|^@ z5N{_E3(=oF(~g*`WG{)b9}VQWKBmu93WkMvu5!xT5l?>&E~U?9by8t3v2dE)cOr{+ zVdo;(AZ4kS(qDS&tY)|leckmI2lObndkpw!|CtekD%TUU|NC9OyRX!~rC?EMK~6MC z0P_gRz~OGsA5k!NS!o#HSJxie(#{pb#O3F0#?P;+ZKn&2{St{*w$%ShoD7uuQ`h?! z*T5xY>khz)vooyk$@NK0ut4(bT+FgX;d=|j4!-108+e!+l-6K+2>#64{)6wQH@51Y^L(QKZ(o+ z?9WyoJ!4Dpu;F&TQIbDT-j)=F-mSl}-1Ps_H5C$I-2=n^i01yPh|Dyq*KnMo- z&u;KPHs=TIKms=ZWHfy+)!+>PdxS6Tuv&SbjnK@ zYHs-*XbafJPjxNzKvsd7oa%dxcUC^6=$2CVi5ww#$Y*^yT9ip*$Z0XoSeT^dXnWN+7ldD^ z7)e8Aw3yR{-{h3?nc1?Pq7B*VEO_tJz^QO7{**D+1E(L}6ozN^s7$uTTPa9v$cu(3 z(FL=V**CPlzVX_rN|CF;GYoNp=Q?)y>y!SoQGcrcV$>@SX9ovY)0YBn*gMku42*7{60{ky;ctLlimtpz8?Sp?ocfl8Q=gSa8OP0uqZthmu1A%Gq8p4N1 ztsms;@$aC=X8yqODCu(f8KIh9q#TD|L+3xJ#Ps}2SJpOA_OWCCF;4bV7LI#y z4OzU4`txrKO+pc826Ple>yK@-Py;hyXmb#d?uRSbOTyLTu-%M&p=YE6gX~ztPGYkR zbVE}`>w5>vU5tx5G@Rki75tPXc(hDQ*V=K}@J$=|BSS%}Ira^bzsMI9CZZ2JI6R89H>k7kk{Fi`NxV~y@uxBnx^!ZJrrNbeY&m(H@OC6*Q({=yWAFgDbeL+*O$mJ=YvF^h zU%7wmT3xRd_ZDRmD82mZ$lvJQB6eiuYe~)y=g~ItBuun*AR8MEZ>z3ce!iM*AcU9l zdFJ#8KBv=(RpKz(X+`vLE(nD}J*`p&IWNpn@wj=`N#uCOR<#%*GC!v|lCH9n1NbS9 z{z~9xRVQYNK--+_NDyu_jhKeS{zMp)sm&`=YLV(}qUdVd3cRM81~R=KuDgY?nI?WG z`i+AT1mQ>Om`&ayWvroC$$P-5bHnG8oPU2wo zett*-NeE)bFU@_VLyp|WwKi@4eRpe0Rgu%UoZDmG>r@geu~UysY6e#A2Y7V52Yv|% z_Nuu53>sS{Z`IX&r1OHm7X3-LlY2?&YaJSKJ(T>D#x}Eqqek* zM=7YqBhqmbk~0)=81d61KcJzS57&tsGeV@BVIYk95Ubad>X{e`Q7acPLWek<;vMJm z1xOmubGU~wMU=0r94-pna#APCls=w5ZSdQgcb1bFNXW-z?n!hy&_qq)B5Dk;6~!tT zm@I`*N`#d&y2AMA|E!#{(n3FD={;M(i&7QlkByW|JJ{2jvzHHFouI_VYQCZ>@;~mo znR)B@1njL~$-V3~d7_EshF45Yaoc;(3Ct{rHa$lM12THMSTcc9uZTs+G*unIrWd_u zw@5xGGZHN4MQ=$ZnBOb${`i1V8ne`fSbTvclxUU2EWW!wL9h2cTcZ`o8AKbr$H%zq zk9F(WPcuPDlz47JBU8c4u%=w*scJwisvV@>XK8nTR9cO?(>gTVY@@8y80#IuS$x~n z8bV`A0gX+IMEN;fDea;AcyMmxkqr~56MQ*>79{T?+KN_e`P&)SAVN0zvMDE1y+T4c zZpDYuAKxM>He8TYN@2KbcTt8Kk#Y;1^tw5BeXHSO?t*hx;Pk!7?Mdd04Z9M5p^3}| zK(^XBvq4sr51Mj<`XeC=5octjhM+DalbYyxl>Qam8b2MA zIAqOdzjoHORbq{F00!*c@@NEn=vk?Fb33JKyuX(~C{lz+#lMuIu03cY=z4uEElJ1z zF!B9$L?dFJwmO8TNtF|-h~?7VHamLr$=6Zkmj{eTF*iuhaVMitz*k)@7bY|8UH-waNINGhQwid*rVD;1btOf3r*dN5q(l(Pk@o6N5^_V8+nOva&uaolMx1CvUm! zZ+z)V6~zpJU_H|lZBm>&;g9|BYm-^%Xe%y7-OO^4w@r5FVLJv@__8%xrd(tt7#p1H z%%)Xnd0b5qnkS;G9EiCx@*NK`ExcH=*i-Wk`FptpgKoDvL~VSY^cvezdct7{D=E0- z1TKJUxvKEg>#EoE1adi*h;^o;g)Hu-l`(c3=&&{SI&!XWVt)UEQl`tUc;B@~Oqntl z!48$Hten=er5k98mkzM4F^ZHPUG-G6lenu$)#-F7i=&tMpc%1v%^BV(g%@DZrX(H) zb5iRHc6! "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_bulk_grav_2" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/condor.sub b/test/ntuple_bulk_grav_2/condor.sub deleted file mode 100644 index a6e89aad931..00000000000 --- a/test/ntuple_bulk_grav_2/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part2TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=180 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_2/output/ntuple_bulk_grav_2_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 180 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/helper b/test/ntuple_bulk_grav_2/helper deleted file mode 120000 index 2a88abf2197..00000000000 --- a/test/ntuple_bulk_grav_2/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_bulk_grav_2/batch/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/output b/test/ntuple_bulk_grav_2/output deleted file mode 120000 index a91aa166817..00000000000 --- a/test/ntuple_bulk_grav_2/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_2/output/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_2/sge_sub.sh b/test/ntuple_bulk_grav_2/sge_sub.sh deleted file mode 100755 index 7e96a8e1812..00000000000 --- a/test/ntuple_bulk_grav_2/sge_sub.sh +++ /dev/null @@ -1,180 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_2/batch/sge_179.sh diff --git a/test/ntuple_bulk_grav_3/ademoor.cc b/test/ntuple_bulk_grav_3/ademoor.cc deleted file mode 100644 index 90e5220ef816224a2c9942912798d34610324c89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$WmFXGw#ON|y9SVw&XI1A2I-J)=@}XYC5II0k}m0vp+N+O?oLsVZb4uqFRuHZ z_nv#sy65h-o)7!K_kQ-Xp8uC08Yx?c;u8HQw*zDwh&iWkN>xd{Mhm5 z{L?JDvxl{pz1KgB6psnvH}YCbfbw?}hOOlE*OLS});3!~);4=W*0#$1)=vINNLuTU zZGQ)rrxg^-6$Hg{&O<>4pygvx|6@l14T$QGhMZ3VBBK6l-QU$uP%P2MDZxJ-#QA?l z3!qr6s8Fn@n?5cT3v&k1^k*xKO~)KWj40QygQF)!9Hr`4g4{Do4};&Llp{YaX*{gy)~z1+&g|Fx_lwG zMrF2vOhwvl6+2o z48siSMzyGl@##z#N1(E{-A57fsm~P_r)(*x@o`0Wav#xtL_FJLa>KxB#zhhYWCewx zTN8p%>&9y+(&@Gm{5K|qJF3#q;`#1x>fc+?_8D4T$7hoHhGf@FkjIrWi4l}aj_8=P zU+9ktQ#O4NC0y~ZnxApX7ci1%@^@E}X*{6^vVN7MT_$9!445ab`o30_Ttyi+E)DVO zt4}YfW-gr7CTf%h1oU5GFx=V>!sb&NzGM#gMbcYq;TIh2Dtwr7D>$bkMsDVB5_^$g z@Q^%5??U`b52^T0PyW{AwxYICW2UrAbi6PytKy-`;8NP8qNtuLN|+4DC*=P-O4lLO`n@dg!Pbp%d$k4A>cX9YQ~+>55P1db03Cn{>0znV4u;3Ke($FF;|3N-xHvCv3v=d4P4&9@LKW zhr+?{b-z}ROOAKvykQ8gUm@lrZc{ueSfz5YWvTa*qXf)yb45f^!4}w$ZF?JeP?_+F z2H*9HCVqH{(EruT^jwp6Ej2nsn5NRpe$=ZEWTsmO&Ty}?4=77C@SRyIa0+IpFR6Rq$4g+VrFq zrk}v)&tudSx+^V=w3PDH(&b#$KOcq_RC$WxT9a*miHG%|(b^8!G;?ys_d2VArzD<< z(}o7L6)KgH31LMFuIJ&P;ZDplme^DKDS7RD9}Jqjd>&I6InPm*?@-J} zh+g$e;Dj--YADUJ!R+?!GnS)Z++`N?K@?lL$XL@$h)4}3mQQ*W|8E-|54-O#F9n#Y zo+7j16&J4NJrFI#BAa593iK0nb)%qsw2zfCyS3me2{sboF%obP>q zec@8Oj$?u%xZzhkOg*auW2@@^S2AI^&!#I93!$K!{xGI3 zXdxfN&(0oF5#F%d+w$4H=^K*FtT&9`odMry|2k5*4Dt)eALbk^mL)N?Eji_|ukj7#7w53n3Uc-tMKrqs# z)SSy|Nne0JjkC%|@O*=eE4h0HmCJp2*+pi6U6r00(hp~LJN;}k7cVXD$U{I(5lVoU zwCJZAJ_8$Qpi+JPg*tQFs}s3@EL3V;%Nitv-NBDteiC?0hf7Ga@pkmMkpoftCC6_P zaq~&_@?jh=N*fNd4&~OJmotLYF0K1IqlTKS3x}e@En?iAal(e)%NcCKOfmro3M9gv z9<(lc2*bwuu$T9I&>`Qp_wMJ0qnP7OjrVBm?!`F)(-49W3yg!UN*v2A6MG{~+0OaH zC1sus*uN9P^*-~`OvDc$@8^MOB3#4XbX!|@#DMi14+y?{uYc;Cc}+HDQQv)A(WMjT z4t%T8ZXXO@x}_^scuU{?jKmc&hweES6!Y#(K5s2>$!;@nO(I&=jm?cafoj=#xPqx- zQ73rZck(dP91D!)rM*Fonc(j{lEYj2KsyZ4lNcp4@KG|%uu-a7tw&eMNA^=v0KzvMtG@q4xEW+MNh-CV`d zt|x>Xo;tdqJ#Dmt*?2TL%-t_bg_F8|ZK-*Sk-nt;(+)f?H(P;#>{xA%4ZhyXk-pB| zqi>zC15IObqko(M`zCW#0K>(B*X(1-x!iQ9?i9tnXwg{hLt^eElT`Zte4T@ioLkF1 zTrIb=qiPPF&1pYq<)I8kZaC&>5uxW5dvpmC3CxxcZva9PWJy4FcJ zIvg-II_@z>MPqZ=csj(On96O3=C8z$R^xJ6uuyus-gA&H zE-%c921*eeVOqFe?*w5;$F67(Aq6yahPQPJ$8ZS;yt9>%&@+aZ62_KA;Z`j7p)1e> zQ+G|@?F;u`fPP#f36X9MnfnT7$V(S0HP6PZ*cWNqV|*4*?s7&2)M0O5oP>N2u@}&Z zcgmK?erejKvp9EIjW^JdQIeq6A^xK%`sAHLmyUsZ{1b1-Z$vJietqf}K09I>i3;0D z71KP4%0}9osXcliRu<(W>*Cc`KTqC#p)yTK;B=$zs{P@p2WEyl4l1ybH)BB=pf_#W z_&`NGN|o8u$XTE){1<)wXCnO5^e@bZVrA#~sAAaIdbse|I3N)}CiHym3>I32LGp88 z@``|AJlW%Hb9S>h!f7=sw4^UA7(M?Dfcr212LOxyT>Xy#P+LI(6d)*o|W-@TvdorvAs~Pr+ND;Eli852GM>4mEgM9AYUCGg;_g5?ozmDrWS?1{0t7n)7*{ zRJof}mU7hnmT+Y)s)|$<;l_IXzYrW5Ax|B4tt4e@>IAqwv!;;ERao@KQUk1Qe;`slxj+^!pm(d0RrDlq4**JaJ%aTw%i{kJ%diq3nLYNA zzN7xlvZo-1KN=vP3Pef$*DI+1Le*X;_Zs8_8I&!I@HVg98vBIWSG>XL2&qKmia`upuciHWbLX zRsf#Pvhs8KO+c%9HDqPV*ry7E)dH(dQjP|0l1BOhNsxU;h}^V0N+Ow=zXkXJS3r|z zY&cSx?y4=@B=(|N-^uXnlm<)h4K^b`djq91K-T-56jyHXN zb(t*Vq&Py(Dfe76F_3FVRg^u+5rULQmz2^{!*C6%m(gi081*(VA+;`1_p1wcnA>K- zD-bI%w0*Tsx^pcOIS_wnPhtnOC)iR^MC+Ov>E=6~hj&4R5yWk{!ZBXX5GTy2@s@{W zPBZIy{h^1TC386)7CE}S=sV8?W=nzG9jf4+;Jv*CgW>N{jIUrHF8teKJ-6C6elKsw zYDT}?_|T9KZ8!mDr#|6kRKWF7VnKm)f__#J5JOU;qjfj?+T)Y+wq~1(d^go|!alBw zxfn((%f`|-J7JTuTg0NJE^2m;@^YA5HEGAR8UMf%=yZVRA)u5JM7kR2cmTKcInpfR z8Ln@3(a{Yto=9la`ucVJBVVZkZ%DGQ9gC{$W`_{Eq_?dH*F zeQr?;M!T$@q|4D7Vq0dO#jfn2a1`&D_A5D(=L#LxMaiY*mYnkZ`W7I1B~>TyZ)1}vpv0~@vx%A+}IFxy;0ws8AEH$aKprmr0%xvdkrdb-bF;h_^cs_$Cr{L?JVj#qK;as%x zY)>B^QQ%XgT_)mM%vkcfM273dI%*++=#4bh6fPxL8*0p~hj-G#uuEZxIP5*0!i=rptl^Wp!Xz`l9% ziWC1PD>}fHdj?&E$4{*NjJ;Ld((>HGmvR8<+VR2QBVTEOHkG^8*xmc;=z8@n%MS*| z1GZLA3Qe67-~RUa6cFlDmWF9trJbXbA&y`(t?Di7prpL#{9=c;ZM6SBRj&XewxZcT zpW{SuYBsrJ(Fen6&UvTVv}l4+@M)9I+wjc%BsyotQ#@VZxwrc6F505R3bK#G{RN)e z_lE`MoK(cXjf4Y#<5WxtlKC-Vt_X{BI!b0S7Rj5NY96JqTFPq9%8cis)M(v0BD!!w zJe>XO!8l&J19hx76+;NB>adPE++E#~SRTgZ6kY4zfE`@IUA+y`P7e$WbKUBLhYYzs z?*f;Um9du&i1pV~P*y4rYw-#^lp+y3_8NvCoR&XyS;astvKb)!fU14u zi&IFa^;4w;VIaq1PSLotES@KBR;(fYD6y83S2z7yN^~9}tdUPjc!XRs$skty7GFCd zg71M77NRqI!4O=0r?D`Ug4}dyCX#?i7C4bUfOO&? zcPzW>=xCBPVbQoztRW^%IXPWfm`;`h-h|U$9166?=&!D41m4fpW72Ewp~&dvo(G=w zc%TP&r8F<~f^9WN7Lx1Oj(=Rsm~8!SFS;>FasvjcxaU&vsWojzC?RpHL>id0TV9P(4#GC%%0pl*)eR?8Xr-!OEqV0t zSsWuz`D*f-zyyEO7B=gt!26uNHxPP+?y+o z5XVW?5}io&l!z99G4u>?N4jw{Ux%N2aC6Y-rXuKiT87k_u&9QfiCBiotB7b=cVo^i zI9`eB4;hw96LJ7o*EQeZ5poZII&snA@%bb}zreS+!Y$*J64? zrL?v;8VaQd-EF_5xs{1959jkZ(93*_h>aiNes(`!w!Cfr zd+ja9d24>U zYV9hN{d)gWu_E)?+6O%;by8E@lFCKya9+;)Fl)1%$sw<%m90JhV%1J$!R2X*ddHo- z(rgt%wq%HG1Xf!?WJEth#iHc@b!~nV-EFOuZr3UmRWBMK^;HK z?)OKrlXbz)7xBdDyA$xKlLpdC)y-xC{Ygi${rO1++u~rus?wpCq#{|3zgz{<0-P&2 zrCB@m1I3KnBXpEPxLzkeN7|fQp1_qD4~a6GN@lo#ZApdNc0vsi<%}N>Q~NDk(z<>I zR466*aHl;vyhkqLL9XID|42 diff --git a/test/ntuple_bulk_grav_3/batch/condor_0.sub b/test/ntuple_bulk_grav_3/batch/condor_0.sub deleted file mode 100644 index 972fa227155..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_1.sub b/test/ntuple_bulk_grav_3/batch/condor_1.sub deleted file mode 100644 index 76d51d04e4c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_10.sub b/test/ntuple_bulk_grav_3/batch/condor_10.sub deleted file mode 100644 index e9080fe87be..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_100.sub b/test/ntuple_bulk_grav_3/batch/condor_100.sub deleted file mode 100644 index e37b4d30dbc..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_101.sub b/test/ntuple_bulk_grav_3/batch/condor_101.sub deleted file mode 100644 index cea8719bd79..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_102.sub b/test/ntuple_bulk_grav_3/batch/condor_102.sub deleted file mode 100644 index 23849b7f3ce..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_103.sub b/test/ntuple_bulk_grav_3/batch/condor_103.sub deleted file mode 100644 index 1f9b460a1a0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_104.sub b/test/ntuple_bulk_grav_3/batch/condor_104.sub deleted file mode 100644 index 0ff49d123df..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_105.sub b/test/ntuple_bulk_grav_3/batch/condor_105.sub deleted file mode 100644 index 2e5e9906586..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_106.sub b/test/ntuple_bulk_grav_3/batch/condor_106.sub deleted file mode 100644 index 4731950d28c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_107.sub b/test/ntuple_bulk_grav_3/batch/condor_107.sub deleted file mode 100644 index d860bf4abb3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_108.sub b/test/ntuple_bulk_grav_3/batch/condor_108.sub deleted file mode 100644 index 5673845cf9f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_109.sub b/test/ntuple_bulk_grav_3/batch/condor_109.sub deleted file mode 100644 index c1a3fffe278..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_11.sub b/test/ntuple_bulk_grav_3/batch/condor_11.sub deleted file mode 100644 index d0a30ee9ffb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_110.sub b/test/ntuple_bulk_grav_3/batch/condor_110.sub deleted file mode 100644 index 070bb1207cc..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_111.sub b/test/ntuple_bulk_grav_3/batch/condor_111.sub deleted file mode 100644 index 845e055ef2b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_112.sub b/test/ntuple_bulk_grav_3/batch/condor_112.sub deleted file mode 100644 index 959a6d5a4dc..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_113.sub b/test/ntuple_bulk_grav_3/batch/condor_113.sub deleted file mode 100644 index 79a1ee2ef51..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_114.sub b/test/ntuple_bulk_grav_3/batch/condor_114.sub deleted file mode 100644 index 85f20d5429c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_115.sub b/test/ntuple_bulk_grav_3/batch/condor_115.sub deleted file mode 100644 index 0ae05791932..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_116.sub b/test/ntuple_bulk_grav_3/batch/condor_116.sub deleted file mode 100644 index fcdc7414acd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_117.sub b/test/ntuple_bulk_grav_3/batch/condor_117.sub deleted file mode 100644 index 7f1219adeb1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_118.sub b/test/ntuple_bulk_grav_3/batch/condor_118.sub deleted file mode 100644 index 9d393420732..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_119.sub b/test/ntuple_bulk_grav_3/batch/condor_119.sub deleted file mode 100644 index f1ca2918b74..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_12.sub b/test/ntuple_bulk_grav_3/batch/condor_12.sub deleted file mode 100644 index 304dcb544c3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_120.sub b/test/ntuple_bulk_grav_3/batch/condor_120.sub deleted file mode 100644 index 327f798024d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_121.sub b/test/ntuple_bulk_grav_3/batch/condor_121.sub deleted file mode 100644 index 0b11bb389f4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_122.sub b/test/ntuple_bulk_grav_3/batch/condor_122.sub deleted file mode 100644 index a6a1130a19f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_123.sub b/test/ntuple_bulk_grav_3/batch/condor_123.sub deleted file mode 100644 index 6387080c060..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_124.sub b/test/ntuple_bulk_grav_3/batch/condor_124.sub deleted file mode 100644 index 4f3368d5348..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_125.sub b/test/ntuple_bulk_grav_3/batch/condor_125.sub deleted file mode 100644 index 304b36a32cc..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_126.sub b/test/ntuple_bulk_grav_3/batch/condor_126.sub deleted file mode 100644 index 2f97179ae08..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_127.sub b/test/ntuple_bulk_grav_3/batch/condor_127.sub deleted file mode 100644 index d5b46b9397d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_128.sub b/test/ntuple_bulk_grav_3/batch/condor_128.sub deleted file mode 100644 index d9394a65bf4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_129.sub b/test/ntuple_bulk_grav_3/batch/condor_129.sub deleted file mode 100644 index ee596fbc3b0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_13.sub b/test/ntuple_bulk_grav_3/batch/condor_13.sub deleted file mode 100644 index 02e6161142b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_130.sub b/test/ntuple_bulk_grav_3/batch/condor_130.sub deleted file mode 100644 index 18968a4a6ef..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_131.sub b/test/ntuple_bulk_grav_3/batch/condor_131.sub deleted file mode 100644 index dc4a94ccd9f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_132.sub b/test/ntuple_bulk_grav_3/batch/condor_132.sub deleted file mode 100644 index 1d9b3e021c4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_133.sub b/test/ntuple_bulk_grav_3/batch/condor_133.sub deleted file mode 100644 index 432e983f915..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_134.sub b/test/ntuple_bulk_grav_3/batch/condor_134.sub deleted file mode 100644 index 954f3f6f798..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_135.sub b/test/ntuple_bulk_grav_3/batch/condor_135.sub deleted file mode 100644 index a4b037c036d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_136.sub b/test/ntuple_bulk_grav_3/batch/condor_136.sub deleted file mode 100644 index 81c28a2d8c3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_137.sub b/test/ntuple_bulk_grav_3/batch/condor_137.sub deleted file mode 100644 index 0923a4793f8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_138.sub b/test/ntuple_bulk_grav_3/batch/condor_138.sub deleted file mode 100644 index 98f2872e443..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_139.sub b/test/ntuple_bulk_grav_3/batch/condor_139.sub deleted file mode 100644 index 46f70006920..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_139.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=139 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.139.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_139.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.139.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_14.sub b/test/ntuple_bulk_grav_3/batch/condor_14.sub deleted file mode 100644 index 63c9d2b410c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_140.sub b/test/ntuple_bulk_grav_3/batch/condor_140.sub deleted file mode 100644 index dba0dbb1bcc..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_140.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=140 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.140.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_140.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.140.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_141.sub b/test/ntuple_bulk_grav_3/batch/condor_141.sub deleted file mode 100644 index 234cce16a23..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_141.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=141 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.141.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_141.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.141.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_142.sub b/test/ntuple_bulk_grav_3/batch/condor_142.sub deleted file mode 100644 index 0a346d9f00b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_142.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=142 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.142.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_142.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.142.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_143.sub b/test/ntuple_bulk_grav_3/batch/condor_143.sub deleted file mode 100644 index 227290288d2..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_143.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=143 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.143.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_143.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.143.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_144.sub b/test/ntuple_bulk_grav_3/batch/condor_144.sub deleted file mode 100644 index a99f201773d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_144.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=144 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.144.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_144.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.144.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_145.sub b/test/ntuple_bulk_grav_3/batch/condor_145.sub deleted file mode 100644 index 4c97edc5b8d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_145.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=145 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.145.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_145.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.145.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_146.sub b/test/ntuple_bulk_grav_3/batch/condor_146.sub deleted file mode 100644 index 6d4f5ce6a9e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_146.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=146 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.146.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_146.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.146.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_147.sub b/test/ntuple_bulk_grav_3/batch/condor_147.sub deleted file mode 100644 index 036d4db0d69..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_147.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=147 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.147.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_147.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.147.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_148.sub b/test/ntuple_bulk_grav_3/batch/condor_148.sub deleted file mode 100644 index ab7b3e1acc8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_148.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=148 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.148.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_148.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.148.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_149.sub b/test/ntuple_bulk_grav_3/batch/condor_149.sub deleted file mode 100644 index ff3e0a8cf7b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_149.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=149 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.149.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_149.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.149.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_15.sub b/test/ntuple_bulk_grav_3/batch/condor_15.sub deleted file mode 100644 index 8374894432f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_150.sub b/test/ntuple_bulk_grav_3/batch/condor_150.sub deleted file mode 100644 index 9af859205d9..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_150.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=150 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.150.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_150.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.150.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_151.sub b/test/ntuple_bulk_grav_3/batch/condor_151.sub deleted file mode 100644 index 79701d46055..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_151.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=151 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.151.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_151.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.151.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_152.sub b/test/ntuple_bulk_grav_3/batch/condor_152.sub deleted file mode 100644 index e3b40db02a6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_152.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=152 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.152.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_152.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.152.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_153.sub b/test/ntuple_bulk_grav_3/batch/condor_153.sub deleted file mode 100644 index fcd1ad61991..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_153.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=153 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.153.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_153.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.153.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_154.sub b/test/ntuple_bulk_grav_3/batch/condor_154.sub deleted file mode 100644 index b6ed65a43d5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_154.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=154 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.154.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_154.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.154.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_155.sub b/test/ntuple_bulk_grav_3/batch/condor_155.sub deleted file mode 100644 index f1c3c235c1a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_155.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=155 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.155.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_155.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.155.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_156.sub b/test/ntuple_bulk_grav_3/batch/condor_156.sub deleted file mode 100644 index 0d8847764f5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_156.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=156 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.156.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_156.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.156.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_157.sub b/test/ntuple_bulk_grav_3/batch/condor_157.sub deleted file mode 100644 index 31a97c7e176..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_157.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=157 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.157.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_157.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.157.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_158.sub b/test/ntuple_bulk_grav_3/batch/condor_158.sub deleted file mode 100644 index 0f25af7f1c1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_158.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=158 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.158.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_158.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.158.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_159.sub b/test/ntuple_bulk_grav_3/batch/condor_159.sub deleted file mode 100644 index 296efd4cff6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_159.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=159 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.159.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_159.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.159.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_16.sub b/test/ntuple_bulk_grav_3/batch/condor_16.sub deleted file mode 100644 index 6fd9ffefcfb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_160.sub b/test/ntuple_bulk_grav_3/batch/condor_160.sub deleted file mode 100644 index a813f10e244..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_160.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=160 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.160.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_160.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.160.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_161.sub b/test/ntuple_bulk_grav_3/batch/condor_161.sub deleted file mode 100644 index ca8de9215d5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_161.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=161 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.161.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_161.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.161.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_162.sub b/test/ntuple_bulk_grav_3/batch/condor_162.sub deleted file mode 100644 index e478f5c17ae..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_162.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=162 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.162.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_162.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.162.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_163.sub b/test/ntuple_bulk_grav_3/batch/condor_163.sub deleted file mode 100644 index a41394d4a29..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_163.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=163 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.163.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_163.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.163.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_164.sub b/test/ntuple_bulk_grav_3/batch/condor_164.sub deleted file mode 100644 index 3e3e68f88d8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_164.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=164 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.164.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_164.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.164.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_165.sub b/test/ntuple_bulk_grav_3/batch/condor_165.sub deleted file mode 100644 index 401f6144a19..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_165.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=165 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.165.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_165.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.165.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_166.sub b/test/ntuple_bulk_grav_3/batch/condor_166.sub deleted file mode 100644 index f545ecf9762..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_166.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=166 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.166.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_166.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.166.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_167.sub b/test/ntuple_bulk_grav_3/batch/condor_167.sub deleted file mode 100644 index 1d12f2ad737..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_167.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=167 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.167.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_167.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.167.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_168.sub b/test/ntuple_bulk_grav_3/batch/condor_168.sub deleted file mode 100644 index eeae3ba202a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_168.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=168 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.168.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_168.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.168.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_169.sub b/test/ntuple_bulk_grav_3/batch/condor_169.sub deleted file mode 100644 index 987ff3dd32b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_169.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=169 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.169.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_169.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.169.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_17.sub b/test/ntuple_bulk_grav_3/batch/condor_17.sub deleted file mode 100644 index d283c23a1f4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_170.sub b/test/ntuple_bulk_grav_3/batch/condor_170.sub deleted file mode 100644 index b3b78a64bcb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_170.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=170 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.170.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_170.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.170.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_171.sub b/test/ntuple_bulk_grav_3/batch/condor_171.sub deleted file mode 100644 index a2d0dc13899..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_171.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=171 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.171.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_171.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.171.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_172.sub b/test/ntuple_bulk_grav_3/batch/condor_172.sub deleted file mode 100644 index 865904fe950..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_172.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=172 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.172.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_172.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.172.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_173.sub b/test/ntuple_bulk_grav_3/batch/condor_173.sub deleted file mode 100644 index 3e7f35d408f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_173.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=173 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.173.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_173.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.173.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_174.sub b/test/ntuple_bulk_grav_3/batch/condor_174.sub deleted file mode 100644 index 43132292cc3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_174.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=174 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.174.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_174.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.174.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_175.sub b/test/ntuple_bulk_grav_3/batch/condor_175.sub deleted file mode 100644 index 158dce2b34b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_175.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=175 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.175.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_175.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.175.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_176.sub b/test/ntuple_bulk_grav_3/batch/condor_176.sub deleted file mode 100644 index a62c11b371b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_176.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=176 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.176.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_176.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.176.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_177.sub b/test/ntuple_bulk_grav_3/batch/condor_177.sub deleted file mode 100644 index 4832493e82f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_177.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=177 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.177.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_177.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.177.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_178.sub b/test/ntuple_bulk_grav_3/batch/condor_178.sub deleted file mode 100644 index bae98d0faa5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_178.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=178 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.178.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_178.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.178.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_179.sub b/test/ntuple_bulk_grav_3/batch/condor_179.sub deleted file mode 100644 index 6cae96d2633..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_179.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=179 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.179.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_179.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.179.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_18.sub b/test/ntuple_bulk_grav_3/batch/condor_18.sub deleted file mode 100644 index 0cf0447cfc5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_180.sub b/test/ntuple_bulk_grav_3/batch/condor_180.sub deleted file mode 100644 index 36826035584..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_180.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=180 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.180.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_180.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.180.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_181.sub b/test/ntuple_bulk_grav_3/batch/condor_181.sub deleted file mode 100644 index 0e92a079d99..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_181.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=181 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.181.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_181.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.181.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_182.sub b/test/ntuple_bulk_grav_3/batch/condor_182.sub deleted file mode 100644 index c2b8e7deffa..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_182.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=182 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.182.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_182.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.182.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_19.sub b/test/ntuple_bulk_grav_3/batch/condor_19.sub deleted file mode 100644 index a54a198883c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_2.sub b/test/ntuple_bulk_grav_3/batch/condor_2.sub deleted file mode 100644 index 3568fce3ea0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_20.sub b/test/ntuple_bulk_grav_3/batch/condor_20.sub deleted file mode 100644 index e15ca6e0fb4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_21.sub b/test/ntuple_bulk_grav_3/batch/condor_21.sub deleted file mode 100644 index 9064c368389..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_22.sub b/test/ntuple_bulk_grav_3/batch/condor_22.sub deleted file mode 100644 index 8fc266e3bdf..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_23.sub b/test/ntuple_bulk_grav_3/batch/condor_23.sub deleted file mode 100644 index 263c88dd4c8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_24.sub b/test/ntuple_bulk_grav_3/batch/condor_24.sub deleted file mode 100644 index 8961ae5b1c9..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_25.sub b/test/ntuple_bulk_grav_3/batch/condor_25.sub deleted file mode 100644 index 7d5ef4def93..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_26.sub b/test/ntuple_bulk_grav_3/batch/condor_26.sub deleted file mode 100644 index 934e293529d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_27.sub b/test/ntuple_bulk_grav_3/batch/condor_27.sub deleted file mode 100644 index cf9844bba32..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_28.sub b/test/ntuple_bulk_grav_3/batch/condor_28.sub deleted file mode 100644 index 89ba4e911fd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_29.sub b/test/ntuple_bulk_grav_3/batch/condor_29.sub deleted file mode 100644 index 6016d99bc74..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_3.sub b/test/ntuple_bulk_grav_3/batch/condor_3.sub deleted file mode 100644 index 8a8d93ec747..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_30.sub b/test/ntuple_bulk_grav_3/batch/condor_30.sub deleted file mode 100644 index 03c568e7ff6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_31.sub b/test/ntuple_bulk_grav_3/batch/condor_31.sub deleted file mode 100644 index 1578c99b377..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_32.sub b/test/ntuple_bulk_grav_3/batch/condor_32.sub deleted file mode 100644 index 98b4eee02fa..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_33.sub b/test/ntuple_bulk_grav_3/batch/condor_33.sub deleted file mode 100644 index 4f99fef8c92..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_34.sub b/test/ntuple_bulk_grav_3/batch/condor_34.sub deleted file mode 100644 index 7342649d9c5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_35.sub b/test/ntuple_bulk_grav_3/batch/condor_35.sub deleted file mode 100644 index 46c8ea67fd8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_36.sub b/test/ntuple_bulk_grav_3/batch/condor_36.sub deleted file mode 100644 index 4625cf8d888..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_37.sub b/test/ntuple_bulk_grav_3/batch/condor_37.sub deleted file mode 100644 index 2a93a5c06ec..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_38.sub b/test/ntuple_bulk_grav_3/batch/condor_38.sub deleted file mode 100644 index 00185f3f24c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_39.sub b/test/ntuple_bulk_grav_3/batch/condor_39.sub deleted file mode 100644 index 5ceb0b6f09f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_4.sub b/test/ntuple_bulk_grav_3/batch/condor_4.sub deleted file mode 100644 index 4ea11c07475..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_40.sub b/test/ntuple_bulk_grav_3/batch/condor_40.sub deleted file mode 100644 index e0e50f91e64..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_41.sub b/test/ntuple_bulk_grav_3/batch/condor_41.sub deleted file mode 100644 index 14cbf42286b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_42.sub b/test/ntuple_bulk_grav_3/batch/condor_42.sub deleted file mode 100644 index a813f0355df..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_43.sub b/test/ntuple_bulk_grav_3/batch/condor_43.sub deleted file mode 100644 index bf2e522beb9..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_44.sub b/test/ntuple_bulk_grav_3/batch/condor_44.sub deleted file mode 100644 index 56dec6eb757..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_45.sub b/test/ntuple_bulk_grav_3/batch/condor_45.sub deleted file mode 100644 index 516f286b417..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_46.sub b/test/ntuple_bulk_grav_3/batch/condor_46.sub deleted file mode 100644 index f812c8ac6b8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_47.sub b/test/ntuple_bulk_grav_3/batch/condor_47.sub deleted file mode 100644 index 7d1d6b7b2fd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_48.sub b/test/ntuple_bulk_grav_3/batch/condor_48.sub deleted file mode 100644 index d4be2678767..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_49.sub b/test/ntuple_bulk_grav_3/batch/condor_49.sub deleted file mode 100644 index cbb9aa327ae..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_5.sub b/test/ntuple_bulk_grav_3/batch/condor_5.sub deleted file mode 100644 index 700b67ebcbd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_50.sub b/test/ntuple_bulk_grav_3/batch/condor_50.sub deleted file mode 100644 index 4567d5ca81c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_51.sub b/test/ntuple_bulk_grav_3/batch/condor_51.sub deleted file mode 100644 index ece89782aad..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_52.sub b/test/ntuple_bulk_grav_3/batch/condor_52.sub deleted file mode 100644 index 0207fbf1c45..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_53.sub b/test/ntuple_bulk_grav_3/batch/condor_53.sub deleted file mode 100644 index 0b7c38a0c65..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_54.sub b/test/ntuple_bulk_grav_3/batch/condor_54.sub deleted file mode 100644 index 34c0a765eff..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_55.sub b/test/ntuple_bulk_grav_3/batch/condor_55.sub deleted file mode 100644 index 153696c9253..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_56.sub b/test/ntuple_bulk_grav_3/batch/condor_56.sub deleted file mode 100644 index 16bcc511d19..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_57.sub b/test/ntuple_bulk_grav_3/batch/condor_57.sub deleted file mode 100644 index 6e064cb8c6e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_58.sub b/test/ntuple_bulk_grav_3/batch/condor_58.sub deleted file mode 100644 index 754c983368e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_59.sub b/test/ntuple_bulk_grav_3/batch/condor_59.sub deleted file mode 100644 index 4a8bbd6c10e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_6.sub b/test/ntuple_bulk_grav_3/batch/condor_6.sub deleted file mode 100644 index 97e353cd638..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_60.sub b/test/ntuple_bulk_grav_3/batch/condor_60.sub deleted file mode 100644 index 36d6504ac98..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_61.sub b/test/ntuple_bulk_grav_3/batch/condor_61.sub deleted file mode 100644 index e282a382741..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_62.sub b/test/ntuple_bulk_grav_3/batch/condor_62.sub deleted file mode 100644 index 6bee1ce5639..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_63.sub b/test/ntuple_bulk_grav_3/batch/condor_63.sub deleted file mode 100644 index 341d865a2e2..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_64.sub b/test/ntuple_bulk_grav_3/batch/condor_64.sub deleted file mode 100644 index fec83ccd1b9..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_65.sub b/test/ntuple_bulk_grav_3/batch/condor_65.sub deleted file mode 100644 index 5219cdfcc40..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_66.sub b/test/ntuple_bulk_grav_3/batch/condor_66.sub deleted file mode 100644 index 1a1ef2c1659..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_67.sub b/test/ntuple_bulk_grav_3/batch/condor_67.sub deleted file mode 100644 index ef77845d5c3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_68.sub b/test/ntuple_bulk_grav_3/batch/condor_68.sub deleted file mode 100644 index 4bb51992ae5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_69.sub b/test/ntuple_bulk_grav_3/batch/condor_69.sub deleted file mode 100644 index 20f1797bb13..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_7.sub b/test/ntuple_bulk_grav_3/batch/condor_7.sub deleted file mode 100644 index 9559e772281..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_70.sub b/test/ntuple_bulk_grav_3/batch/condor_70.sub deleted file mode 100644 index 1be676f1749..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_71.sub b/test/ntuple_bulk_grav_3/batch/condor_71.sub deleted file mode 100644 index 8e4371963f5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_72.sub b/test/ntuple_bulk_grav_3/batch/condor_72.sub deleted file mode 100644 index bd1552a1f0d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_73.sub b/test/ntuple_bulk_grav_3/batch/condor_73.sub deleted file mode 100644 index 9e0b23ccede..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_74.sub b/test/ntuple_bulk_grav_3/batch/condor_74.sub deleted file mode 100644 index 330bc59413c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_75.sub b/test/ntuple_bulk_grav_3/batch/condor_75.sub deleted file mode 100644 index b60ada863e1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_76.sub b/test/ntuple_bulk_grav_3/batch/condor_76.sub deleted file mode 100644 index 9d72dc9877d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_77.sub b/test/ntuple_bulk_grav_3/batch/condor_77.sub deleted file mode 100644 index 921da138db8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_78.sub b/test/ntuple_bulk_grav_3/batch/condor_78.sub deleted file mode 100644 index 83a4d564233..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_79.sub b/test/ntuple_bulk_grav_3/batch/condor_79.sub deleted file mode 100644 index 272d4ddb155..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_8.sub b/test/ntuple_bulk_grav_3/batch/condor_8.sub deleted file mode 100644 index 81092948613..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_80.sub b/test/ntuple_bulk_grav_3/batch/condor_80.sub deleted file mode 100644 index f71194bc8f8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_81.sub b/test/ntuple_bulk_grav_3/batch/condor_81.sub deleted file mode 100644 index eef75bee77e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_82.sub b/test/ntuple_bulk_grav_3/batch/condor_82.sub deleted file mode 100644 index b44782eb634..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_83.sub b/test/ntuple_bulk_grav_3/batch/condor_83.sub deleted file mode 100644 index b4b65d148f5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_84.sub b/test/ntuple_bulk_grav_3/batch/condor_84.sub deleted file mode 100644 index 37b872b2ac1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_85.sub b/test/ntuple_bulk_grav_3/batch/condor_85.sub deleted file mode 100644 index 37ec870bc02..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_86.sub b/test/ntuple_bulk_grav_3/batch/condor_86.sub deleted file mode 100644 index 9605c72a36c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_87.sub b/test/ntuple_bulk_grav_3/batch/condor_87.sub deleted file mode 100644 index 74491b2dd95..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_88.sub b/test/ntuple_bulk_grav_3/batch/condor_88.sub deleted file mode 100644 index 722a69330eb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_89.sub b/test/ntuple_bulk_grav_3/batch/condor_89.sub deleted file mode 100644 index 3043a55304e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_9.sub b/test/ntuple_bulk_grav_3/batch/condor_9.sub deleted file mode 100644 index babf7dce56b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_90.sub b/test/ntuple_bulk_grav_3/batch/condor_90.sub deleted file mode 100644 index 81d19c01096..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_91.sub b/test/ntuple_bulk_grav_3/batch/condor_91.sub deleted file mode 100644 index 2cf34c67e9c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_92.sub b/test/ntuple_bulk_grav_3/batch/condor_92.sub deleted file mode 100644 index 076f66810b6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_93.sub b/test/ntuple_bulk_grav_3/batch/condor_93.sub deleted file mode 100644 index 1127f7dd57b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_94.sub b/test/ntuple_bulk_grav_3/batch/condor_94.sub deleted file mode 100644 index c131d5debde..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_95.sub b/test/ntuple_bulk_grav_3/batch/condor_95.sub deleted file mode 100644 index 11fe143792e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_96.sub b/test/ntuple_bulk_grav_3/batch/condor_96.sub deleted file mode 100644 index 5998e50c79c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_97.sub b/test/ntuple_bulk_grav_3/batch/condor_97.sub deleted file mode 100644 index 015188e6bfe..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_98.sub b/test/ntuple_bulk_grav_3/batch/condor_98.sub deleted file mode 100644 index 1038cf5d799..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/condor_99.sub b/test/ntuple_bulk_grav_3/batch/condor_99.sub deleted file mode 100644 index 85da92d5630..00000000000 --- a/test/ntuple_bulk_grav_3/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/nJobs.183 b/test/ntuple_bulk_grav_3/batch/nJobs.183 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_bulk_grav_3/batch/sge_0.sh b/test/ntuple_bulk_grav_3/batch/sge_0.sh deleted file mode 100755 index 8f938a3ebc6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=0 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_1.sh b/test/ntuple_bulk_grav_3/batch/sge_1.sh deleted file mode 100755 index a99b0e1420a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=1 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_10.sh b/test/ntuple_bulk_grav_3/batch/sge_10.sh deleted file mode 100755 index 285f8e7972d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=10 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_100.sh b/test/ntuple_bulk_grav_3/batch/sge_100.sh deleted file mode 100755 index e0925413dfb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=100 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_101.sh b/test/ntuple_bulk_grav_3/batch/sge_101.sh deleted file mode 100755 index 15fbdf81c9c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=101 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_102.sh b/test/ntuple_bulk_grav_3/batch/sge_102.sh deleted file mode 100755 index e963601ef09..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=102 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_103.sh b/test/ntuple_bulk_grav_3/batch/sge_103.sh deleted file mode 100755 index 2ffcb232273..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=103 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_104.sh b/test/ntuple_bulk_grav_3/batch/sge_104.sh deleted file mode 100755 index c95f209d81d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=104 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_105.sh b/test/ntuple_bulk_grav_3/batch/sge_105.sh deleted file mode 100755 index 7d9e6626810..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=105 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_106.sh b/test/ntuple_bulk_grav_3/batch/sge_106.sh deleted file mode 100755 index 18cd0a209a8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=106 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_107.sh b/test/ntuple_bulk_grav_3/batch/sge_107.sh deleted file mode 100755 index 87a12cd290c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=107 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_108.sh b/test/ntuple_bulk_grav_3/batch/sge_108.sh deleted file mode 100755 index 4534a4a5e50..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=108 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_109.sh b/test/ntuple_bulk_grav_3/batch/sge_109.sh deleted file mode 100755 index 9d9054ba712..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=109 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_11.sh b/test/ntuple_bulk_grav_3/batch/sge_11.sh deleted file mode 100755 index 0ee9030c2b7..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=11 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_110.sh b/test/ntuple_bulk_grav_3/batch/sge_110.sh deleted file mode 100755 index df28307bab3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=110 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_111.sh b/test/ntuple_bulk_grav_3/batch/sge_111.sh deleted file mode 100755 index 679f4c054eb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=111 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_112.sh b/test/ntuple_bulk_grav_3/batch/sge_112.sh deleted file mode 100755 index dbab6cd77b4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=112 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_113.sh b/test/ntuple_bulk_grav_3/batch/sge_113.sh deleted file mode 100755 index 042d7999db8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=113 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_114.sh b/test/ntuple_bulk_grav_3/batch/sge_114.sh deleted file mode 100755 index a890655cb09..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=114 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_115.sh b/test/ntuple_bulk_grav_3/batch/sge_115.sh deleted file mode 100755 index 5cb62ddd8b2..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=115 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_116.sh b/test/ntuple_bulk_grav_3/batch/sge_116.sh deleted file mode 100755 index 83ec23f8b68..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=116 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_117.sh b/test/ntuple_bulk_grav_3/batch/sge_117.sh deleted file mode 100755 index 7b33755eba5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=117 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_118.sh b/test/ntuple_bulk_grav_3/batch/sge_118.sh deleted file mode 100755 index e298848d322..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=118 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_119.sh b/test/ntuple_bulk_grav_3/batch/sge_119.sh deleted file mode 100755 index 3ed7b6c2a3d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=119 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_12.sh b/test/ntuple_bulk_grav_3/batch/sge_12.sh deleted file mode 100755 index 9fb91625b92..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=12 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_120.sh b/test/ntuple_bulk_grav_3/batch/sge_120.sh deleted file mode 100755 index bd21f08f45e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=120 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_121.sh b/test/ntuple_bulk_grav_3/batch/sge_121.sh deleted file mode 100755 index 731e7811aba..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=121 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_122.sh b/test/ntuple_bulk_grav_3/batch/sge_122.sh deleted file mode 100755 index a60a2005d75..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=122 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_123.sh b/test/ntuple_bulk_grav_3/batch/sge_123.sh deleted file mode 100755 index 274a2b6ff31..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=123 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_124.sh b/test/ntuple_bulk_grav_3/batch/sge_124.sh deleted file mode 100755 index 4f2b6daecc2..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=124 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_125.sh b/test/ntuple_bulk_grav_3/batch/sge_125.sh deleted file mode 100755 index 65e18581771..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=125 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_126.sh b/test/ntuple_bulk_grav_3/batch/sge_126.sh deleted file mode 100755 index 91a79dd0935..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=126 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_127.sh b/test/ntuple_bulk_grav_3/batch/sge_127.sh deleted file mode 100755 index 1b2d6d3e060..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=127 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_128.sh b/test/ntuple_bulk_grav_3/batch/sge_128.sh deleted file mode 100755 index fe103674242..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=128 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_129.sh b/test/ntuple_bulk_grav_3/batch/sge_129.sh deleted file mode 100755 index ce8fbbc8bea..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=129 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_13.sh b/test/ntuple_bulk_grav_3/batch/sge_13.sh deleted file mode 100755 index a7e7578d8af..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=13 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_130.sh b/test/ntuple_bulk_grav_3/batch/sge_130.sh deleted file mode 100755 index 2b358e081b3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=130 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_131.sh b/test/ntuple_bulk_grav_3/batch/sge_131.sh deleted file mode 100755 index 6688bb7278c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=131 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_132.sh b/test/ntuple_bulk_grav_3/batch/sge_132.sh deleted file mode 100755 index 89d90cba6e4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=132 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_133.sh b/test/ntuple_bulk_grav_3/batch/sge_133.sh deleted file mode 100755 index 4c467560874..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=133 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_134.sh b/test/ntuple_bulk_grav_3/batch/sge_134.sh deleted file mode 100755 index affec9eb810..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=134 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_135.sh b/test/ntuple_bulk_grav_3/batch/sge_135.sh deleted file mode 100755 index 8bcd5cf7ee8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=135 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_136.sh b/test/ntuple_bulk_grav_3/batch/sge_136.sh deleted file mode 100755 index 20bff8b44ce..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=136 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_137.sh b/test/ntuple_bulk_grav_3/batch/sge_137.sh deleted file mode 100755 index f841ef238e6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=137 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_138.sh b/test/ntuple_bulk_grav_3/batch/sge_138.sh deleted file mode 100755 index 0211939fa8f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=138 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_139.sh b/test/ntuple_bulk_grav_3/batch/sge_139.sh deleted file mode 100755 index e74fbd2e606..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_139.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=139 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_139.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=139 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_14.sh b/test/ntuple_bulk_grav_3/batch/sge_14.sh deleted file mode 100755 index 2e35fd2795e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=14 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_140.sh b/test/ntuple_bulk_grav_3/batch/sge_140.sh deleted file mode 100755 index eb33e814161..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_140.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=140 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_140.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=140 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_141.sh b/test/ntuple_bulk_grav_3/batch/sge_141.sh deleted file mode 100755 index 3cbe43a1095..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_141.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=141 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_141.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=141 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_142.sh b/test/ntuple_bulk_grav_3/batch/sge_142.sh deleted file mode 100755 index 6fdc4308b04..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_142.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=142 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_142.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=142 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_143.sh b/test/ntuple_bulk_grav_3/batch/sge_143.sh deleted file mode 100755 index 8d5ff9fd17e..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_143.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=143 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_143.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=143 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_144.sh b/test/ntuple_bulk_grav_3/batch/sge_144.sh deleted file mode 100755 index 4d074284dba..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_144.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=144 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_144.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=144 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_145.sh b/test/ntuple_bulk_grav_3/batch/sge_145.sh deleted file mode 100755 index 5df63b41534..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_145.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=145 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_145.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=145 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_146.sh b/test/ntuple_bulk_grav_3/batch/sge_146.sh deleted file mode 100755 index fba5585a74a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_146.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=146 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_146.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=146 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_147.sh b/test/ntuple_bulk_grav_3/batch/sge_147.sh deleted file mode 100755 index a0eb6d1f582..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_147.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=147 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_147.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=147 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_148.sh b/test/ntuple_bulk_grav_3/batch/sge_148.sh deleted file mode 100755 index 4d9ce77c6cb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_148.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=148 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_148.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=148 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_149.sh b/test/ntuple_bulk_grav_3/batch/sge_149.sh deleted file mode 100755 index 53bfcd3dadd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_149.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=149 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_149.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=149 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_15.sh b/test/ntuple_bulk_grav_3/batch/sge_15.sh deleted file mode 100755 index 4f7d6a8c410..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=15 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_150.sh b/test/ntuple_bulk_grav_3/batch/sge_150.sh deleted file mode 100755 index c25a4f5634b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_150.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=150 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_150.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=150 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_151.sh b/test/ntuple_bulk_grav_3/batch/sge_151.sh deleted file mode 100755 index e9602678437..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_151.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=151 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_151.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=151 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_152.sh b/test/ntuple_bulk_grav_3/batch/sge_152.sh deleted file mode 100755 index 7457c5c2afd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_152.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=152 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_152.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=152 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_153.sh b/test/ntuple_bulk_grav_3/batch/sge_153.sh deleted file mode 100755 index 911b97b1696..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_153.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=153 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_153.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=153 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_154.sh b/test/ntuple_bulk_grav_3/batch/sge_154.sh deleted file mode 100755 index 5df9ecd00bf..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_154.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=154 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_154.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=154 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_155.sh b/test/ntuple_bulk_grav_3/batch/sge_155.sh deleted file mode 100755 index 7d943b58cf6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_155.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=155 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_155.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=155 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_156.sh b/test/ntuple_bulk_grav_3/batch/sge_156.sh deleted file mode 100755 index 9073aba52a2..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_156.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=156 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_156.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=156 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_157.sh b/test/ntuple_bulk_grav_3/batch/sge_157.sh deleted file mode 100755 index d54b3033c59..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_157.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=157 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_157.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=157 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_158.sh b/test/ntuple_bulk_grav_3/batch/sge_158.sh deleted file mode 100755 index 321e00338de..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_158.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=158 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_158.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=158 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_159.sh b/test/ntuple_bulk_grav_3/batch/sge_159.sh deleted file mode 100755 index 435a7320d2d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_159.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=159 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_159.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=159 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_16.sh b/test/ntuple_bulk_grav_3/batch/sge_16.sh deleted file mode 100755 index d68623034d0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=16 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_160.sh b/test/ntuple_bulk_grav_3/batch/sge_160.sh deleted file mode 100755 index 845225d57ce..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_160.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=160 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_160.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=160 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_161.sh b/test/ntuple_bulk_grav_3/batch/sge_161.sh deleted file mode 100755 index 99e5692b028..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_161.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=161 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_161.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=161 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_162.sh b/test/ntuple_bulk_grav_3/batch/sge_162.sh deleted file mode 100755 index 2e3cf05298f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_162.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=162 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_162.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=162 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_163.sh b/test/ntuple_bulk_grav_3/batch/sge_163.sh deleted file mode 100755 index 526bf22a69f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_163.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=163 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_163.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=163 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_164.sh b/test/ntuple_bulk_grav_3/batch/sge_164.sh deleted file mode 100755 index 70fb7e37044..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_164.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=164 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_164.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=164 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_165.sh b/test/ntuple_bulk_grav_3/batch/sge_165.sh deleted file mode 100755 index 95cd2aaa3ad..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_165.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=165 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_165.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=165 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_166.sh b/test/ntuple_bulk_grav_3/batch/sge_166.sh deleted file mode 100755 index 3ec929d9fa5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_166.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=166 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_166.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=166 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_167.sh b/test/ntuple_bulk_grav_3/batch/sge_167.sh deleted file mode 100755 index 97735847503..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_167.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=167 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_167.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=167 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_168.sh b/test/ntuple_bulk_grav_3/batch/sge_168.sh deleted file mode 100755 index 7a6b6cc36dd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_168.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=168 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_168.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=168 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_169.sh b/test/ntuple_bulk_grav_3/batch/sge_169.sh deleted file mode 100755 index a16bc13bfd4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_169.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=169 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_169.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=169 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_17.sh b/test/ntuple_bulk_grav_3/batch/sge_17.sh deleted file mode 100755 index 4332946998c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=17 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_170.sh b/test/ntuple_bulk_grav_3/batch/sge_170.sh deleted file mode 100755 index 39b7d835d3c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_170.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=170 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_170.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=170 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_171.sh b/test/ntuple_bulk_grav_3/batch/sge_171.sh deleted file mode 100755 index 2e010e1c470..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_171.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=171 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_171.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=171 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_172.sh b/test/ntuple_bulk_grav_3/batch/sge_172.sh deleted file mode 100755 index cd27ba7bb9b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_172.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=172 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_172.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=172 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_173.sh b/test/ntuple_bulk_grav_3/batch/sge_173.sh deleted file mode 100755 index a9c430497c0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_173.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=173 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_173.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=173 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_174.sh b/test/ntuple_bulk_grav_3/batch/sge_174.sh deleted file mode 100755 index cf0290fd318..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_174.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=174 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_174.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=174 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_175.sh b/test/ntuple_bulk_grav_3/batch/sge_175.sh deleted file mode 100755 index 164f5a71ba4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_175.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=175 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_175.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=175 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_176.sh b/test/ntuple_bulk_grav_3/batch/sge_176.sh deleted file mode 100755 index a8d7c26f98f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_176.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=176 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_176.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=176 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_177.sh b/test/ntuple_bulk_grav_3/batch/sge_177.sh deleted file mode 100755 index bd405b1fbc5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_177.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=177 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_177.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=177 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_178.sh b/test/ntuple_bulk_grav_3/batch/sge_178.sh deleted file mode 100755 index d8d5c8f2e77..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_178.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=178 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_178.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=178 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_179.sh b/test/ntuple_bulk_grav_3/batch/sge_179.sh deleted file mode 100755 index eef569343fe..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_179.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=179 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_179.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=179 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_18.sh b/test/ntuple_bulk_grav_3/batch/sge_18.sh deleted file mode 100755 index 2093b6f55d5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=18 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_180.sh b/test/ntuple_bulk_grav_3/batch/sge_180.sh deleted file mode 100755 index 6b15f68fd90..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_180.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=180 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_180.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=180 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_181.sh b/test/ntuple_bulk_grav_3/batch/sge_181.sh deleted file mode 100755 index efb49b63258..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_181.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=181 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_181.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=181 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_182.sh b/test/ntuple_bulk_grav_3/batch/sge_182.sh deleted file mode 100755 index f3b4b951326..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_182.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=182 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_182.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=182 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_19.sh b/test/ntuple_bulk_grav_3/batch/sge_19.sh deleted file mode 100755 index abe8c03f30f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=19 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_2.sh b/test/ntuple_bulk_grav_3/batch/sge_2.sh deleted file mode 100755 index a564e21cd31..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=2 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_20.sh b/test/ntuple_bulk_grav_3/batch/sge_20.sh deleted file mode 100755 index 7986f3086b9..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=20 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_21.sh b/test/ntuple_bulk_grav_3/batch/sge_21.sh deleted file mode 100755 index 4941af2586c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=21 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_22.sh b/test/ntuple_bulk_grav_3/batch/sge_22.sh deleted file mode 100755 index 81cbffd5e2a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=22 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_23.sh b/test/ntuple_bulk_grav_3/batch/sge_23.sh deleted file mode 100755 index 47d028e476a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=23 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_24.sh b/test/ntuple_bulk_grav_3/batch/sge_24.sh deleted file mode 100755 index 18a769c4d01..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=24 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_25.sh b/test/ntuple_bulk_grav_3/batch/sge_25.sh deleted file mode 100755 index 47f059e8df1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=25 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_26.sh b/test/ntuple_bulk_grav_3/batch/sge_26.sh deleted file mode 100755 index 78b4883eb5c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=26 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_27.sh b/test/ntuple_bulk_grav_3/batch/sge_27.sh deleted file mode 100755 index 616438867ec..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=27 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_28.sh b/test/ntuple_bulk_grav_3/batch/sge_28.sh deleted file mode 100755 index fd41b96fb52..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=28 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_29.sh b/test/ntuple_bulk_grav_3/batch/sge_29.sh deleted file mode 100755 index 55f1ee882f0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=29 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_3.sh b/test/ntuple_bulk_grav_3/batch/sge_3.sh deleted file mode 100755 index 588f86f1a12..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=3 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_30.sh b/test/ntuple_bulk_grav_3/batch/sge_30.sh deleted file mode 100755 index e678fcde7ef..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=30 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_31.sh b/test/ntuple_bulk_grav_3/batch/sge_31.sh deleted file mode 100755 index 2e265a9236b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=31 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_32.sh b/test/ntuple_bulk_grav_3/batch/sge_32.sh deleted file mode 100755 index 01bcce5e2c7..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=32 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_33.sh b/test/ntuple_bulk_grav_3/batch/sge_33.sh deleted file mode 100755 index 2c7951dfb8f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=33 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_34.sh b/test/ntuple_bulk_grav_3/batch/sge_34.sh deleted file mode 100755 index 5527bc6987d..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=34 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_35.sh b/test/ntuple_bulk_grav_3/batch/sge_35.sh deleted file mode 100755 index ef3dd3946b7..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=35 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_36.sh b/test/ntuple_bulk_grav_3/batch/sge_36.sh deleted file mode 100755 index 0c0b7487080..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=36 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_37.sh b/test/ntuple_bulk_grav_3/batch/sge_37.sh deleted file mode 100755 index 7ad0fb42411..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=37 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_38.sh b/test/ntuple_bulk_grav_3/batch/sge_38.sh deleted file mode 100755 index b2d3bf00497..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=38 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_39.sh b/test/ntuple_bulk_grav_3/batch/sge_39.sh deleted file mode 100755 index 5f636751607..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=39 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_4.sh b/test/ntuple_bulk_grav_3/batch/sge_4.sh deleted file mode 100755 index c18c655c3aa..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=4 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_40.sh b/test/ntuple_bulk_grav_3/batch/sge_40.sh deleted file mode 100755 index d49ca883d4a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=40 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_41.sh b/test/ntuple_bulk_grav_3/batch/sge_41.sh deleted file mode 100755 index fff622c212c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=41 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_42.sh b/test/ntuple_bulk_grav_3/batch/sge_42.sh deleted file mode 100755 index a6f8d25d97a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=42 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_43.sh b/test/ntuple_bulk_grav_3/batch/sge_43.sh deleted file mode 100755 index 6dd4639688b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=43 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_44.sh b/test/ntuple_bulk_grav_3/batch/sge_44.sh deleted file mode 100755 index dd5fc28d4e0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=44 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_45.sh b/test/ntuple_bulk_grav_3/batch/sge_45.sh deleted file mode 100755 index 0b19c58fbe2..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=45 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_46.sh b/test/ntuple_bulk_grav_3/batch/sge_46.sh deleted file mode 100755 index 768a5ae0dda..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=46 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_47.sh b/test/ntuple_bulk_grav_3/batch/sge_47.sh deleted file mode 100755 index 091e2512466..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=47 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_48.sh b/test/ntuple_bulk_grav_3/batch/sge_48.sh deleted file mode 100755 index 9a47fdda099..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=48 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_49.sh b/test/ntuple_bulk_grav_3/batch/sge_49.sh deleted file mode 100755 index 5ee93ec19d9..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=49 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_5.sh b/test/ntuple_bulk_grav_3/batch/sge_5.sh deleted file mode 100755 index f2391055c49..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=5 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_50.sh b/test/ntuple_bulk_grav_3/batch/sge_50.sh deleted file mode 100755 index 43bef7add00..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=50 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_51.sh b/test/ntuple_bulk_grav_3/batch/sge_51.sh deleted file mode 100755 index 605f65e34dd..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=51 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_52.sh b/test/ntuple_bulk_grav_3/batch/sge_52.sh deleted file mode 100755 index 5b4b963c2be..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=52 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_53.sh b/test/ntuple_bulk_grav_3/batch/sge_53.sh deleted file mode 100755 index 6540bc9e42c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=53 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_54.sh b/test/ntuple_bulk_grav_3/batch/sge_54.sh deleted file mode 100755 index bf160b84688..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=54 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_55.sh b/test/ntuple_bulk_grav_3/batch/sge_55.sh deleted file mode 100755 index 5b9bed05c88..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=55 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_56.sh b/test/ntuple_bulk_grav_3/batch/sge_56.sh deleted file mode 100755 index 75f8b6614c7..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=56 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_57.sh b/test/ntuple_bulk_grav_3/batch/sge_57.sh deleted file mode 100755 index a1d4344b019..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=57 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_58.sh b/test/ntuple_bulk_grav_3/batch/sge_58.sh deleted file mode 100755 index e14bcdf179c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=58 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_59.sh b/test/ntuple_bulk_grav_3/batch/sge_59.sh deleted file mode 100755 index db1310ef2bc..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=59 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_6.sh b/test/ntuple_bulk_grav_3/batch/sge_6.sh deleted file mode 100755 index 13c98d68be1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=6 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_60.sh b/test/ntuple_bulk_grav_3/batch/sge_60.sh deleted file mode 100755 index 31e007d5b54..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=60 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_61.sh b/test/ntuple_bulk_grav_3/batch/sge_61.sh deleted file mode 100755 index edd78614615..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=61 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_62.sh b/test/ntuple_bulk_grav_3/batch/sge_62.sh deleted file mode 100755 index ade8e24e1cb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=62 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_63.sh b/test/ntuple_bulk_grav_3/batch/sge_63.sh deleted file mode 100755 index 5acb84457be..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=63 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_64.sh b/test/ntuple_bulk_grav_3/batch/sge_64.sh deleted file mode 100755 index 1b8c1cf74c1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=64 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_65.sh b/test/ntuple_bulk_grav_3/batch/sge_65.sh deleted file mode 100755 index 0333c5954c8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=65 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_66.sh b/test/ntuple_bulk_grav_3/batch/sge_66.sh deleted file mode 100755 index 10953c8cb47..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=66 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_67.sh b/test/ntuple_bulk_grav_3/batch/sge_67.sh deleted file mode 100755 index 8c87cdafee4..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=67 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_68.sh b/test/ntuple_bulk_grav_3/batch/sge_68.sh deleted file mode 100755 index c1d5f45871c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=68 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_69.sh b/test/ntuple_bulk_grav_3/batch/sge_69.sh deleted file mode 100755 index 26fbc2557c3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=69 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_7.sh b/test/ntuple_bulk_grav_3/batch/sge_7.sh deleted file mode 100755 index 43ac60d61da..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=7 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_70.sh b/test/ntuple_bulk_grav_3/batch/sge_70.sh deleted file mode 100755 index cc970117999..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=70 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_71.sh b/test/ntuple_bulk_grav_3/batch/sge_71.sh deleted file mode 100755 index dbad1045ecf..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=71 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_72.sh b/test/ntuple_bulk_grav_3/batch/sge_72.sh deleted file mode 100755 index 126f2b51397..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=72 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_73.sh b/test/ntuple_bulk_grav_3/batch/sge_73.sh deleted file mode 100755 index f77705c84a8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=73 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_74.sh b/test/ntuple_bulk_grav_3/batch/sge_74.sh deleted file mode 100755 index 7cfb11c7ff1..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=74 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_75.sh b/test/ntuple_bulk_grav_3/batch/sge_75.sh deleted file mode 100755 index bc2ef5219f3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=75 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_76.sh b/test/ntuple_bulk_grav_3/batch/sge_76.sh deleted file mode 100755 index 9f6d371c0c8..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=76 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_77.sh b/test/ntuple_bulk_grav_3/batch/sge_77.sh deleted file mode 100755 index 5fec97f824a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=77 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_78.sh b/test/ntuple_bulk_grav_3/batch/sge_78.sh deleted file mode 100755 index 1b0e09fd34b..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=78 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_79.sh b/test/ntuple_bulk_grav_3/batch/sge_79.sh deleted file mode 100755 index 0f92e2991f7..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=79 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_8.sh b/test/ntuple_bulk_grav_3/batch/sge_8.sh deleted file mode 100755 index 1696e493102..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=8 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_80.sh b/test/ntuple_bulk_grav_3/batch/sge_80.sh deleted file mode 100755 index 5faeda70f0f..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=80 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_81.sh b/test/ntuple_bulk_grav_3/batch/sge_81.sh deleted file mode 100755 index 4d00c9a7421..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=81 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_82.sh b/test/ntuple_bulk_grav_3/batch/sge_82.sh deleted file mode 100755 index bc2575137a3..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=82 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_83.sh b/test/ntuple_bulk_grav_3/batch/sge_83.sh deleted file mode 100755 index cf94ddbcb66..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=83 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_84.sh b/test/ntuple_bulk_grav_3/batch/sge_84.sh deleted file mode 100755 index 982ba792383..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=84 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_85.sh b/test/ntuple_bulk_grav_3/batch/sge_85.sh deleted file mode 100755 index 2a7d84bf086..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=85 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_86.sh b/test/ntuple_bulk_grav_3/batch/sge_86.sh deleted file mode 100755 index 16281932a94..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=86 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_87.sh b/test/ntuple_bulk_grav_3/batch/sge_87.sh deleted file mode 100755 index 334c74f1d70..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=87 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_88.sh b/test/ntuple_bulk_grav_3/batch/sge_88.sh deleted file mode 100755 index dae243869c6..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=88 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_89.sh b/test/ntuple_bulk_grav_3/batch/sge_89.sh deleted file mode 100755 index 2f9473ae5af..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=89 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_9.sh b/test/ntuple_bulk_grav_3/batch/sge_9.sh deleted file mode 100755 index 5bb610b37d5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=9 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_90.sh b/test/ntuple_bulk_grav_3/batch/sge_90.sh deleted file mode 100755 index 97ee1079067..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=90 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_91.sh b/test/ntuple_bulk_grav_3/batch/sge_91.sh deleted file mode 100755 index e49796e24f7..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=91 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_92.sh b/test/ntuple_bulk_grav_3/batch/sge_92.sh deleted file mode 100755 index f5527600879..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=92 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_93.sh b/test/ntuple_bulk_grav_3/batch/sge_93.sh deleted file mode 100755 index 9d49f7b644a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=93 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_94.sh b/test/ntuple_bulk_grav_3/batch/sge_94.sh deleted file mode 100755 index c32a2a70f7a..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=94 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_95.sh b/test/ntuple_bulk_grav_3/batch/sge_95.sh deleted file mode 100755 index 812575617d5..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=95 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_96.sh b/test/ntuple_bulk_grav_3/batch/sge_96.sh deleted file mode 100755 index 9ffd7f1ddbb..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=96 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_97.sh b/test/ntuple_bulk_grav_3/batch/sge_97.sh deleted file mode 100755 index 85605c08d14..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=97 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_98.sh b/test/ntuple_bulk_grav_3/batch/sge_98.sh deleted file mode 100755 index 1d2cccabf3c..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=98 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batch/sge_99.sh b/test/ntuple_bulk_grav_3/batch/sge_99.sh deleted file mode 100755 index 43003a5c8b0..00000000000 --- a/test/ntuple_bulk_grav_3/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=99 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/batchscript.sh b/test/ntuple_bulk_grav_3/batchscript.sh deleted file mode 100755 index 4afb8c7c7c9..00000000000 --- a/test/ntuple_bulk_grav_3/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_bulk_grav_3" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/condor.sub b/test/ntuple_bulk_grav_3/condor.sub deleted file mode 100644 index a47bc72656f..00000000000 --- a/test/ntuple_bulk_grav_3/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=BulkGravitonToHHTo4QMX600to6000MH15to250part3TuneCP513TeVmadgraphpythia8RunIISummer19UL17MiniAODv2multigridpack106Xmc2017realisticv9v1MINIAODSIM nJobs=183 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ntuple_bulk_grav_3_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 183 - \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/helper b/test/ntuple_bulk_grav_3/helper deleted file mode 120000 index b596a1e7636..00000000000 --- a/test/ntuple_bulk_grav_3/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_bulk_grav_3/batch/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/output b/test/ntuple_bulk_grav_3/output deleted file mode 120000 index 45103ac14bc..00000000000 --- a/test/ntuple_bulk_grav_3/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_bulk_grav_3/output/ \ No newline at end of file diff --git a/test/ntuple_bulk_grav_3/sge_sub.sh b/test/ntuple_bulk_grav_3/sge_sub.sh deleted file mode 100755 index 83ae3fba43d..00000000000 --- a/test/ntuple_bulk_grav_3/sge_sub.sh +++ /dev/null @@ -1,183 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_bulk_grav_3/batch/sge_182.sh diff --git a/test/ntuple_qcd_1000_1500/ademoor.cc b/test/ntuple_qcd_1000_1500/ademoor.cc deleted file mode 100644 index 739303eb6d9f281062da6d708f5447fd7ea56b38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$Wl$X4l7<!3+UsVcKe$UdcLhM!Gr?Cc!>-zwr$$Di{r zv#3^%M$Tr=|0ws@zNftTAu0nr8aSDm9FM3g&Wag{X#<`t&)M7j2qhs*?w(k zEESJ;JyGP>qYr7d&Cy<`u}sen8ejXZ58cHvsJT-FaWpubOz+(30qJ%R-2@lTB~~bO z*AkCn*cFDrC%u4FXa+{39@koEU`u&3lK%x`rDH0ts)M_nk=ul!N5APD@hNFx#zuEO zP?gm*x@L7(=}wS`k4(|(l(M$5TVN6j$xz7}guz-J{oU0CbhxXW>dX#Mp(1Z-4q@p2 zoyhvoX!q6>p(|wOriTbTE~T0L!o*D}MK0E;R<;AGq$|!{275HjdMpH9K)Qc0su3Os za@AM`X$tjboX;AZzXh6%63g{)TOF=X)%(%#CN_=OBQT=^PVxo9@CFwmGOVii@?2wt zpR6uY5O2{3Iy+^V!=o+9;Nu`CUVB7C&b%x_wSf1c%y*Umy1G)303{0^6SHydtxhQ_ zXUv~g!LJnq`1W0((cYO1z-AL`I@0>R!)S~?;NqfJfR-_zXUTDzD4gGIlbLuf!P0qXcj;Uu@yfSPQB^68> zk7F;3-@1`o1>;bH_88$pHFEq)SC}DP%Bi3>DGAoB^Sb1?SCO)G%6u&; z$MH+sp}OQ8&LlNo%r@}@MOyWgdWA%#O7DFXID+?O6vm?9#vwWE4V%Q3R@GVYHtZLz%(0cXaogp?&YCLcP%?I0}lRxSGQn% zq~?{zSvSMm_f#w2q5}CT%bd+doO?NR)vByh9iV2u#qnAmQ}el&zMoyI`0eX#XOgsi zteI-5I8+wLRWg}^!6`~U>)=KGScY`SiOF1QR^MlPx)YIp7nfz;J4K+*Q6o$vj?0H# zyDn%)j2~e>k>0@eRNf~ChT&g!jAU1lVRnIy@u=L`4A{`Mw8C*dspv_JKM|q|@@>kO zDJJH_2;=>kjfsK?xv&waAj5D^fpT9Pt2&ylYF_X#KD{u zWk2H2#UScDBjV}9ZSO=vN-~QP)xFba`DUS{ffc=d!r7F6QYK?G@s=yRuR4FeS=Ay= z+PdZ}7N(Tmg0=~LI7`3_ao?~*V8Y|I*VwY&OTJ)5c=uexasaET!?oauF&wPJUFM>8 z|GdNoeL^=?62JJQi1L))rehn#bhm25f$VOcZ0)z_je-w+IQ>#&SatltB8t!bW1E$u zXs8S9?yh8dck-4nE!~Z7)oMWX6aar_5Lo=lbjrpfs2B8x4}3aoLgxMRYXR!HqO<40 zp+;ErbW%GKecqlvN2{EUuKn4tWj;EM>vzoE!oIq8_DKi`PXIs+JUAAI1D7b$Wyr0f z>cHSdy-p|0Hx=oPK5}Q58AU%tGIBHm?=ChlHzxhk`KC5B0xx2Zv*RKbkki#yyTQ=i3bK$D9z ziMjLw_w5=nYeMG~GONSTf~|P}OL-bbo4y`K`{Op_nOHF)3wB%r(jZ*yuiw4pL#AN; zH5Br$9l*3L=T^kN(IC;EAB;Hop0#j4D>?Ezq{hOdT=N_`tbKJ=*^%izes!BCfAKhm z9ih?#GYVo;o0ZVEsht1mVTBw7`pF-J+@l}uV1*ex7%ri;0RyE0u1FE^w!2W;X>4fM zehxXi%=+(hZMp2U)f_}0ZYYPNymTnc^qsW9jhv$!Xq0)i&;Z{ZuFJ5>87eAvs(E%D z7oy(wni3w{kN7LwnljWb*sasZs3qE3qjnE>)#Ybi>y#_;gno7BU1_`O7YA}r-jrsh?FNyCnurZ)eNfBjDNJ(iDdSQ-@NID-->XQy!{J%wm6CftD#bc((kGPV;kEzBo(4}frxg2D7v$cEjF!?v}=Hh2| zvV!8~*ehkFs$r9I!;UzlIq6?+Wh?Q{%|HS-lRTkS??Nf6=6Y=J64vgu!}@<4ZY#17 zP2}`aT!sApMdI5yE?d*Z+&c^zRbp0|4H|K3Cepijg;M1GdC49msnDz^XJOhENYe9d zWKLyLdl9|%V0?(J?;Qo^x1To#@9)r3=2d>1T8~LgmtNUy8*Ypaxb9|(-DK_3G{Q|e zCNbDhlcuaa5?+;(hX|41yc|u)VxvZOAT8`hiNa_eeB(ekPNCt$)jD9ovboU3+Hf~L zqG;Y)pS(^b38pQu$J9d!4LU8|rH+HgF&aF&%{SifH~*k=t$D3%yOKq}(uy}Sl~lD`%&ye z3F8F8j%ad-&k8&1T+%sz!E}`G<_lb4?xYZC;iE!WJ6YkUu+LYTH*n>fd19OCjQ*Ii zch5KCpNqddd1M~?td_AL!F|w|>wKR)SuPeD?6J(JWb=HYKB(kn7N>(6H^j^VzUx2} z<;2ZTt3}NYlhs>zXs>*A8A8~>OGJLJxOIr&XPeD}!;s~H+xz_{&(%kE*IcZyBtJ8X zTom^JUEl6z+aFCVW>IAj!MCP0q^XrZnw8(z%S2dM{gaIjUQBTWR_Q`7suT_Rw;dg? zU;KUN9P2j-d_ z420dO%7aG&SwSx1_SY&(rwJPha+7$tmbXfFDv<|WFkP%Mj$C6&T_&V{8lAeeND6`x zinOj;mRwo>zv%1#Cc-~W|HgbshNezWDw?s0qb<9!IRe2`LbD=#T{|@EOwN}Y7y-!R zy$DVV0k`a6p1EK^2-8pVcK-o@dnNx3fCYc9{$~JyhF}0G2N*#39{@&@q9X}P(I%#yFywug^*_Y&Yg%bYHuNEa8QP%MF zuu}KJv&c65TD2U8gG}7v7%%5+rF|!iJ(maAYd4xKL0W|S-6IAX2w!d2>v%m7nA;L- z59F;7>L=*wxoa5CJx6{!&!bzOXLWlRlY|$^|1jwFGSmR|W({W{?KB7V@GA-y6i*ZkKf{oh9Yss5W$sP2w-cFv!l3OFWqPR2G) z?Ek~E+jW?+_Ab`rZd}YKTnq>dOWM|RFxz{*{r7I!$ZcuEKP)?>{a-A@h<{@Cm?!#< z_z%nIIcWcAfE)@AGT>jY0RGz>p3q(8X;|rR`;ec|UF-?ng-%24J=*uWY9QFu5ws7y zYTxmQZtU+FSXyyt6mf?M2fL);&nE)eou%~!c>>>b%@Q(mCN=V8f6)81d6RJOkX4cb z?Ij}2ao1%QM3Sh2dSLcpd4NyuXeG$Xz0Z3z{nDAN6B)O9<{fsimB3S6sjWn3so5T4 zJ{#py%qQqgq!#A(+qUYolA=jQGK{8r{7J#aXqt`MI>x+aZ0Ofod^Ta)#)`7 zyZg631zWaZ51tW}Lmxkkuj&u1Vo<7Aj&%G){aVvtxx@g-)P-lF3SL7v3C@p ztcdEkThKcrd>r(Nc*BrUz@=qMq#h}17WASPt)LkO1|=H#`dA5~o6Pwz0>eM%&_ zvOgALU3r`m9#_~$A;m#A`grGFpO#*FLj21?e5%%=p9^U3Q%2Y;m-8JF6lcP^74RJWmM|(p+(zG zQ`Z+AgDH409(0Ki>LDr^Nh0c)^xlK?Z*tbbbjGpZ<;T>T(VP;ArtGN~b7m8sJwt|U zp&sx={lOlmYqGK_l7aw&eSORQopUJ3p3$g*FVq~2-nbPB28vucK z?_kd&x#W8X+4EP=0t?ki!raeZD^z|Ax7)e@>Ilo5CWXNtYPUQfv$8 zU%9RkqGnjBEbw%n<6TiaU^`c^`$eb1bg%$7`f)HElDNYj?rzf+f!#J#aNJtx-CBjj z>HofJyVrnOK}||bJyi7lYH%!T9WQ11?I~>-ncr__a?0y9s>GYm=MCA*;T!o$C*%aD zCD597Mp;rZcl??94$>_(lz}!+b6XVu@tzI7qg{|<^Q}-s_To-X7As(9i6t=H;!!63 ztbUsRgW56K;Q~6IJxh>=TV-2prd%6WS74$FOX667e%9@Er2L&GEtr+D*S6H)N7>9{3DL3kR^I-Wmi|K-+FkP@s%XA0Zw3@l%S=ezc zM;+!VfRv?l${rDa3Ua1GaLD_DPY$85Vz4}C`G;o| zMDv_wefeKoa^4D+f6=bVsTVyNG27M*=g2_lq*2dW=sYC1G3FrW33q72ghWEV+IQPu z;=s|TXLM-!&X)xV1USR2%(xMPHuj>}(MDh@uVF5Ij{@>o@H4z>uz5nw$QKvIc$$v} zz6}+Dd>3J>o+z91Bvlc9xX_I$KoH@IV?hL@LwXqnm9!+nb0E&CoLx1?|I^yG=D8gF zz&L9ARNNHTMDIrz-lY9kAo?EG^y_f$;jJXl{98)H)2lsthrJUZ%laMZ(Y{*_%6WJw zq^NIpeajpy^|^j7*aOs8v*#iI{^X@}APEoi8vmt8tVc=_F&mq5t}ne~AE>j6oB0{7 zW+eRqiP&?WJ4k*2{dvC}OZBpU@fs_+Q)gF0xn=FTI!{*CmTd!q>d#*aI{QOt3s`Gx zE+S10?}!L&UZZM4lH-eJC>PpRXHwUpS$wj3TrNYpo`w|*vL4FECH|KYJWj*y7o@!F zc7h^Xh&xv!1YZI^B%FqGt}8CM{S5vzq*2_qVsHkze6PZN@vV0`#$$Kh)PYwd^YPb` zp+~K?;Lz$+@bb(x2p&Y@7>cS?HE$x{M=+Y1J5$2GhBT-LMreOgIo_InQmG;R7;C5w zDs8eMdRR)#&_iD?FfTD9J~4t(R|{cBY<*bj^|VBp@XyCQ)^@t!$`ylhW9TBLAMa`R z>W2mIWjE0Fo*SY!Xpg8{&F(E#90gswd{>Upi?Lh*avp<$*(7H#cj-%%C>hElMB%{k z(^`$UEU;LW?RqVtNi^*_E(?WHbU7OXwZf5m=88+T48^{eC^S&095J12M?%b+-H-xT zGqH4J=VIDU>%+85B*9Ez6G)Fr$aXkg0WV3e8FJ9PQV|;*FQUX|U$e9(psm%kN3F4? zF+7g98DxjgTaG%7(66CNCi4)6omU7^xF1y@ne_&~+R7XxD5E6B9U+_r-OJ}elqcH>3o=Cuv$=g=o4)X^P(ci)!k)_G1NFMfbA3lSa2hjL%`N>x#etd z2*tS6+e#bpX-}ZDAC(6BAk4Q1{a9=K$=!=~;b`>HgFnCQQn~avnPfdMY^^DY25_jp zkcpAhHd#tVmr$j{wqwv1tD4r?X@{l86Fv4}Zbf1B0p;}$J~@$6|J0$sE){qPcWox^ zHBxz?)66N2$@5~=rmdii)Uc(m^gA6md-rIE;$^AW>pIGNLIK7*?kv6Xm*E4RtZ15>o;mgXP! z*!1mwjkz&Q;o+ueGb!UJ7m{L9J&NWf6pmFf>Yt}ci>EWK+9#$14J6q*Z7?~-V<`t$ z0yG|zQ0j~aIr&k-e+zE8R(coDc*E?3)IuzK9JJ!H-}iwF@nfjqi&-Y-atF&p0+y4- z9bzP(0}NW`h6l3h>c5&Yl4(*PK195MZ?8F`e@CAcm=9$=;jZ9;^uwJw9_AxYyT4Ds T{W>#}aokBnh-X9pkm7#<+-6-4 diff --git a/test/ntuple_qcd_1000_1500/batch/condor_0.sub b/test/ntuple_qcd_1000_1500/batch/condor_0.sub deleted file mode 100644 index d79fd447c44..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_1.sub b/test/ntuple_qcd_1000_1500/batch/condor_1.sub deleted file mode 100644 index d6802aec171..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_10.sub b/test/ntuple_qcd_1000_1500/batch/condor_10.sub deleted file mode 100644 index 4296b9c3630..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_100.sub b/test/ntuple_qcd_1000_1500/batch/condor_100.sub deleted file mode 100644 index ddfc9837e53..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_101.sub b/test/ntuple_qcd_1000_1500/batch/condor_101.sub deleted file mode 100644 index 48f252d38e6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_102.sub b/test/ntuple_qcd_1000_1500/batch/condor_102.sub deleted file mode 100644 index b8b7be4ca5d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_103.sub b/test/ntuple_qcd_1000_1500/batch/condor_103.sub deleted file mode 100644 index 4eb4e8d90a0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_104.sub b/test/ntuple_qcd_1000_1500/batch/condor_104.sub deleted file mode 100644 index e93d8de25cc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_105.sub b/test/ntuple_qcd_1000_1500/batch/condor_105.sub deleted file mode 100644 index e3e560bbf13..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_106.sub b/test/ntuple_qcd_1000_1500/batch/condor_106.sub deleted file mode 100644 index 9352226dda9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_107.sub b/test/ntuple_qcd_1000_1500/batch/condor_107.sub deleted file mode 100644 index 3ac3c452a10..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_108.sub b/test/ntuple_qcd_1000_1500/batch/condor_108.sub deleted file mode 100644 index 9962b71d566..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_109.sub b/test/ntuple_qcd_1000_1500/batch/condor_109.sub deleted file mode 100644 index 76980f4e2c8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_11.sub b/test/ntuple_qcd_1000_1500/batch/condor_11.sub deleted file mode 100644 index 9d93e909b18..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_110.sub b/test/ntuple_qcd_1000_1500/batch/condor_110.sub deleted file mode 100644 index 9bffacfa10c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_111.sub b/test/ntuple_qcd_1000_1500/batch/condor_111.sub deleted file mode 100644 index 0ce11c251db..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_112.sub b/test/ntuple_qcd_1000_1500/batch/condor_112.sub deleted file mode 100644 index 0ef7dbd9d36..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_113.sub b/test/ntuple_qcd_1000_1500/batch/condor_113.sub deleted file mode 100644 index d959a8e8742..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_114.sub b/test/ntuple_qcd_1000_1500/batch/condor_114.sub deleted file mode 100644 index 8848a022b54..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_115.sub b/test/ntuple_qcd_1000_1500/batch/condor_115.sub deleted file mode 100644 index 27facdd1bf5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_116.sub b/test/ntuple_qcd_1000_1500/batch/condor_116.sub deleted file mode 100644 index c0d2724da1f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_117.sub b/test/ntuple_qcd_1000_1500/batch/condor_117.sub deleted file mode 100644 index 97bdb5e93a6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_118.sub b/test/ntuple_qcd_1000_1500/batch/condor_118.sub deleted file mode 100644 index 980bcebe65d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_119.sub b/test/ntuple_qcd_1000_1500/batch/condor_119.sub deleted file mode 100644 index 7ce64761b3c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_12.sub b/test/ntuple_qcd_1000_1500/batch/condor_12.sub deleted file mode 100644 index 72f963547dc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_120.sub b/test/ntuple_qcd_1000_1500/batch/condor_120.sub deleted file mode 100644 index 34808d00d9b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_121.sub b/test/ntuple_qcd_1000_1500/batch/condor_121.sub deleted file mode 100644 index 30094ae29c1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_122.sub b/test/ntuple_qcd_1000_1500/batch/condor_122.sub deleted file mode 100644 index e0783a34037..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_123.sub b/test/ntuple_qcd_1000_1500/batch/condor_123.sub deleted file mode 100644 index 869d0e24a06..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_124.sub b/test/ntuple_qcd_1000_1500/batch/condor_124.sub deleted file mode 100644 index c104b9b8fbd..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_125.sub b/test/ntuple_qcd_1000_1500/batch/condor_125.sub deleted file mode 100644 index 2d57d655d10..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_126.sub b/test/ntuple_qcd_1000_1500/batch/condor_126.sub deleted file mode 100644 index 335919c90cf..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_127.sub b/test/ntuple_qcd_1000_1500/batch/condor_127.sub deleted file mode 100644 index 1ed2ab6fe1f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_128.sub b/test/ntuple_qcd_1000_1500/batch/condor_128.sub deleted file mode 100644 index 15b41b0c3f5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_129.sub b/test/ntuple_qcd_1000_1500/batch/condor_129.sub deleted file mode 100644 index dc4704f38f1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_13.sub b/test/ntuple_qcd_1000_1500/batch/condor_13.sub deleted file mode 100644 index 7cf62e0f562..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_130.sub b/test/ntuple_qcd_1000_1500/batch/condor_130.sub deleted file mode 100644 index 056097dedfc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_131.sub b/test/ntuple_qcd_1000_1500/batch/condor_131.sub deleted file mode 100644 index ea4206497a4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_132.sub b/test/ntuple_qcd_1000_1500/batch/condor_132.sub deleted file mode 100644 index d384a935c6b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_133.sub b/test/ntuple_qcd_1000_1500/batch/condor_133.sub deleted file mode 100644 index 0e87fc9e8ea..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_134.sub b/test/ntuple_qcd_1000_1500/batch/condor_134.sub deleted file mode 100644 index cb55c9c3726..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_135.sub b/test/ntuple_qcd_1000_1500/batch/condor_135.sub deleted file mode 100644 index 4846f9a3ca8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_136.sub b/test/ntuple_qcd_1000_1500/batch/condor_136.sub deleted file mode 100644 index e12fb7be44e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_137.sub b/test/ntuple_qcd_1000_1500/batch/condor_137.sub deleted file mode 100644 index 977a39377b2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_138.sub b/test/ntuple_qcd_1000_1500/batch/condor_138.sub deleted file mode 100644 index d39951cde9f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_139.sub b/test/ntuple_qcd_1000_1500/batch/condor_139.sub deleted file mode 100644 index 5a0390b774c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_139.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=139 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.139.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_139.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.139.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_14.sub b/test/ntuple_qcd_1000_1500/batch/condor_14.sub deleted file mode 100644 index 30904513032..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_140.sub b/test/ntuple_qcd_1000_1500/batch/condor_140.sub deleted file mode 100644 index 84201f799fc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_140.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=140 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.140.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_140.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.140.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_141.sub b/test/ntuple_qcd_1000_1500/batch/condor_141.sub deleted file mode 100644 index 82f58a4f7ea..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_141.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=141 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.141.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_141.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.141.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_142.sub b/test/ntuple_qcd_1000_1500/batch/condor_142.sub deleted file mode 100644 index d159b473cf7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_142.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=142 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.142.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_142.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.142.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_143.sub b/test/ntuple_qcd_1000_1500/batch/condor_143.sub deleted file mode 100644 index 0e67f0d4cdf..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_143.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=143 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.143.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_143.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.143.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_144.sub b/test/ntuple_qcd_1000_1500/batch/condor_144.sub deleted file mode 100644 index 2cb358e9815..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_144.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=144 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.144.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_144.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.144.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_145.sub b/test/ntuple_qcd_1000_1500/batch/condor_145.sub deleted file mode 100644 index 3997a9f2b4a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_145.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=145 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.145.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_145.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.145.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_146.sub b/test/ntuple_qcd_1000_1500/batch/condor_146.sub deleted file mode 100644 index eba8fd584e3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_146.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=146 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.146.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_146.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.146.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_147.sub b/test/ntuple_qcd_1000_1500/batch/condor_147.sub deleted file mode 100644 index e080b2356e8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_147.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=147 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.147.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_147.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.147.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_148.sub b/test/ntuple_qcd_1000_1500/batch/condor_148.sub deleted file mode 100644 index c3af390df4b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_148.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=148 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.148.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_148.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.148.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_149.sub b/test/ntuple_qcd_1000_1500/batch/condor_149.sub deleted file mode 100644 index 53fa925f5d1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_149.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=149 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.149.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_149.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.149.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_15.sub b/test/ntuple_qcd_1000_1500/batch/condor_15.sub deleted file mode 100644 index 07f35e8b270..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_150.sub b/test/ntuple_qcd_1000_1500/batch/condor_150.sub deleted file mode 100644 index 5e670bef3d3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_150.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=150 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.150.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_150.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.150.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_151.sub b/test/ntuple_qcd_1000_1500/batch/condor_151.sub deleted file mode 100644 index 9e7b0307491..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_151.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=151 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.151.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_151.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.151.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_152.sub b/test/ntuple_qcd_1000_1500/batch/condor_152.sub deleted file mode 100644 index 8b644075832..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_152.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=152 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.152.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_152.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.152.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_153.sub b/test/ntuple_qcd_1000_1500/batch/condor_153.sub deleted file mode 100644 index bee072e8bb3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_153.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=153 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.153.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_153.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.153.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_154.sub b/test/ntuple_qcd_1000_1500/batch/condor_154.sub deleted file mode 100644 index f525a753a32..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_154.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=154 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.154.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_154.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.154.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_155.sub b/test/ntuple_qcd_1000_1500/batch/condor_155.sub deleted file mode 100644 index 25636ed0fee..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_155.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=155 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.155.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_155.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.155.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_156.sub b/test/ntuple_qcd_1000_1500/batch/condor_156.sub deleted file mode 100644 index 567753375cc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_156.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=156 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.156.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_156.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.156.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_157.sub b/test/ntuple_qcd_1000_1500/batch/condor_157.sub deleted file mode 100644 index 04cdf6ba4d4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_157.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=157 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.157.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_157.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.157.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_158.sub b/test/ntuple_qcd_1000_1500/batch/condor_158.sub deleted file mode 100644 index 2adac6abb99..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_158.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=158 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.158.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_158.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.158.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_159.sub b/test/ntuple_qcd_1000_1500/batch/condor_159.sub deleted file mode 100644 index a3cb9c6c358..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_159.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=159 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.159.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_159.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.159.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_16.sub b/test/ntuple_qcd_1000_1500/batch/condor_16.sub deleted file mode 100644 index dca3c5e64f4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_160.sub b/test/ntuple_qcd_1000_1500/batch/condor_160.sub deleted file mode 100644 index 0ef93016cc8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_160.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=160 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.160.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_160.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.160.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_161.sub b/test/ntuple_qcd_1000_1500/batch/condor_161.sub deleted file mode 100644 index 01b1f11bedd..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_161.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=161 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.161.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_161.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.161.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_162.sub b/test/ntuple_qcd_1000_1500/batch/condor_162.sub deleted file mode 100644 index 708289aae99..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_162.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=162 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.162.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_162.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.162.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_163.sub b/test/ntuple_qcd_1000_1500/batch/condor_163.sub deleted file mode 100644 index 7cf77351b53..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_163.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=163 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.163.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_163.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.163.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_164.sub b/test/ntuple_qcd_1000_1500/batch/condor_164.sub deleted file mode 100644 index d2d94f757fd..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_164.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=164 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.164.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_164.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.164.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_165.sub b/test/ntuple_qcd_1000_1500/batch/condor_165.sub deleted file mode 100644 index 3f2a0f3edfb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_165.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=165 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.165.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_165.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.165.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_166.sub b/test/ntuple_qcd_1000_1500/batch/condor_166.sub deleted file mode 100644 index a5f67eec1a3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_166.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=166 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.166.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_166.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.166.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_167.sub b/test/ntuple_qcd_1000_1500/batch/condor_167.sub deleted file mode 100644 index 89d3858fdb7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_167.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=167 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.167.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_167.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.167.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_168.sub b/test/ntuple_qcd_1000_1500/batch/condor_168.sub deleted file mode 100644 index 9c6c8ec2f14..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_168.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=168 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.168.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_168.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.168.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_169.sub b/test/ntuple_qcd_1000_1500/batch/condor_169.sub deleted file mode 100644 index 97778f3cdf6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_169.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=169 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.169.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_169.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.169.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_17.sub b/test/ntuple_qcd_1000_1500/batch/condor_17.sub deleted file mode 100644 index f05644f7b25..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_170.sub b/test/ntuple_qcd_1000_1500/batch/condor_170.sub deleted file mode 100644 index 5f718918101..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_170.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=170 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.170.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_170.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.170.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_171.sub b/test/ntuple_qcd_1000_1500/batch/condor_171.sub deleted file mode 100644 index 591e9871022..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_171.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=171 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.171.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_171.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.171.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_172.sub b/test/ntuple_qcd_1000_1500/batch/condor_172.sub deleted file mode 100644 index 4ea2c87956c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_172.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=172 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.172.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_172.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.172.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_173.sub b/test/ntuple_qcd_1000_1500/batch/condor_173.sub deleted file mode 100644 index 24a410d9c35..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_173.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=173 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.173.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_173.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.173.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_174.sub b/test/ntuple_qcd_1000_1500/batch/condor_174.sub deleted file mode 100644 index ecaef2d0589..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_174.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=174 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.174.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_174.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.174.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_175.sub b/test/ntuple_qcd_1000_1500/batch/condor_175.sub deleted file mode 100644 index 42b4008ab02..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_175.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=175 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.175.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_175.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.175.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_176.sub b/test/ntuple_qcd_1000_1500/batch/condor_176.sub deleted file mode 100644 index 4317f064887..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_176.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=176 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.176.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_176.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.176.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_177.sub b/test/ntuple_qcd_1000_1500/batch/condor_177.sub deleted file mode 100644 index b3f84bb61ea..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_177.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=177 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.177.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_177.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.177.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_178.sub b/test/ntuple_qcd_1000_1500/batch/condor_178.sub deleted file mode 100644 index 3abc23c411d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_178.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=178 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.178.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_178.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.178.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_179.sub b/test/ntuple_qcd_1000_1500/batch/condor_179.sub deleted file mode 100644 index 8d9839f02c2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_179.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=179 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.179.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_179.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.179.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_18.sub b/test/ntuple_qcd_1000_1500/batch/condor_18.sub deleted file mode 100644 index 62057ed995a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_180.sub b/test/ntuple_qcd_1000_1500/batch/condor_180.sub deleted file mode 100644 index 63058589bfe..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_180.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=180 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.180.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_180.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.180.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_181.sub b/test/ntuple_qcd_1000_1500/batch/condor_181.sub deleted file mode 100644 index 5fe2f9d09c9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_181.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=181 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.181.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_181.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.181.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_182.sub b/test/ntuple_qcd_1000_1500/batch/condor_182.sub deleted file mode 100644 index 5c31089b896..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_182.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=182 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.182.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_182.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.182.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_183.sub b/test/ntuple_qcd_1000_1500/batch/condor_183.sub deleted file mode 100644 index dec574e7a71..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_183.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=183 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.183.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_183.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.183.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_184.sub b/test/ntuple_qcd_1000_1500/batch/condor_184.sub deleted file mode 100644 index ebc246398c9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_184.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=184 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.184.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_184.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.184.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_185.sub b/test/ntuple_qcd_1000_1500/batch/condor_185.sub deleted file mode 100644 index 76953d393ee..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_185.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=185 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.185.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_185.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.185.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_186.sub b/test/ntuple_qcd_1000_1500/batch/condor_186.sub deleted file mode 100644 index 87cdb5f34d7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_186.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=186 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.186.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_186.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.186.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_187.sub b/test/ntuple_qcd_1000_1500/batch/condor_187.sub deleted file mode 100644 index 1aabc7e9f26..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_187.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=187 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.187.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_187.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.187.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_188.sub b/test/ntuple_qcd_1000_1500/batch/condor_188.sub deleted file mode 100644 index 7c4ebb6f809..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_188.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=188 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.188.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_188.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.188.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_189.sub b/test/ntuple_qcd_1000_1500/batch/condor_189.sub deleted file mode 100644 index 58f794f174d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_189.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=189 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.189.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_189.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.189.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_19.sub b/test/ntuple_qcd_1000_1500/batch/condor_19.sub deleted file mode 100644 index 21ebb1e397c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_190.sub b/test/ntuple_qcd_1000_1500/batch/condor_190.sub deleted file mode 100644 index 533578b4406..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_190.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=190 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.190.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_190.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.190.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_191.sub b/test/ntuple_qcd_1000_1500/batch/condor_191.sub deleted file mode 100644 index fb58013d00c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_191.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=191 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.191.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_191.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.191.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_192.sub b/test/ntuple_qcd_1000_1500/batch/condor_192.sub deleted file mode 100644 index eef1880d51a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_192.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=192 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.192.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_192.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.192.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_193.sub b/test/ntuple_qcd_1000_1500/batch/condor_193.sub deleted file mode 100644 index b62c9dc79ca..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_193.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=193 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.193.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_193.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.193.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_194.sub b/test/ntuple_qcd_1000_1500/batch/condor_194.sub deleted file mode 100644 index 6f7156bdd6f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_194.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=194 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.194.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_194.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.194.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_195.sub b/test/ntuple_qcd_1000_1500/batch/condor_195.sub deleted file mode 100644 index c502f5fa4b7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_195.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=195 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.195.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_195.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.195.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_2.sub b/test/ntuple_qcd_1000_1500/batch/condor_2.sub deleted file mode 100644 index cc7eb0fdb02..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_20.sub b/test/ntuple_qcd_1000_1500/batch/condor_20.sub deleted file mode 100644 index d84f0934de3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_21.sub b/test/ntuple_qcd_1000_1500/batch/condor_21.sub deleted file mode 100644 index 94517425377..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_22.sub b/test/ntuple_qcd_1000_1500/batch/condor_22.sub deleted file mode 100644 index 75270ac9a68..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_23.sub b/test/ntuple_qcd_1000_1500/batch/condor_23.sub deleted file mode 100644 index 5adabbdc8aa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_24.sub b/test/ntuple_qcd_1000_1500/batch/condor_24.sub deleted file mode 100644 index 285547d003e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_25.sub b/test/ntuple_qcd_1000_1500/batch/condor_25.sub deleted file mode 100644 index a596cbef6c1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_26.sub b/test/ntuple_qcd_1000_1500/batch/condor_26.sub deleted file mode 100644 index 71363c27e21..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_27.sub b/test/ntuple_qcd_1000_1500/batch/condor_27.sub deleted file mode 100644 index 0b800eb7d82..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_28.sub b/test/ntuple_qcd_1000_1500/batch/condor_28.sub deleted file mode 100644 index 267a8014265..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_29.sub b/test/ntuple_qcd_1000_1500/batch/condor_29.sub deleted file mode 100644 index 4da4f3a9882..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_3.sub b/test/ntuple_qcd_1000_1500/batch/condor_3.sub deleted file mode 100644 index 8d721ccb5f2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_30.sub b/test/ntuple_qcd_1000_1500/batch/condor_30.sub deleted file mode 100644 index 94c024c6ae6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_31.sub b/test/ntuple_qcd_1000_1500/batch/condor_31.sub deleted file mode 100644 index 3a91dca2044..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_32.sub b/test/ntuple_qcd_1000_1500/batch/condor_32.sub deleted file mode 100644 index 65365ec8ac4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_33.sub b/test/ntuple_qcd_1000_1500/batch/condor_33.sub deleted file mode 100644 index 5dd5e6ad033..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_34.sub b/test/ntuple_qcd_1000_1500/batch/condor_34.sub deleted file mode 100644 index 626e8eae923..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_35.sub b/test/ntuple_qcd_1000_1500/batch/condor_35.sub deleted file mode 100644 index e11f8a96eae..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_36.sub b/test/ntuple_qcd_1000_1500/batch/condor_36.sub deleted file mode 100644 index 0210ecf5288..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_37.sub b/test/ntuple_qcd_1000_1500/batch/condor_37.sub deleted file mode 100644 index 5066e3ea062..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_38.sub b/test/ntuple_qcd_1000_1500/batch/condor_38.sub deleted file mode 100644 index f871e72e966..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_39.sub b/test/ntuple_qcd_1000_1500/batch/condor_39.sub deleted file mode 100644 index dce0d54f855..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_4.sub b/test/ntuple_qcd_1000_1500/batch/condor_4.sub deleted file mode 100644 index f6c78c73283..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_40.sub b/test/ntuple_qcd_1000_1500/batch/condor_40.sub deleted file mode 100644 index 007c4763854..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_41.sub b/test/ntuple_qcd_1000_1500/batch/condor_41.sub deleted file mode 100644 index f078dffdb15..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_42.sub b/test/ntuple_qcd_1000_1500/batch/condor_42.sub deleted file mode 100644 index 7bf1d59c1b4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_43.sub b/test/ntuple_qcd_1000_1500/batch/condor_43.sub deleted file mode 100644 index 3fb55f091a6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_44.sub b/test/ntuple_qcd_1000_1500/batch/condor_44.sub deleted file mode 100644 index a38e4351463..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_45.sub b/test/ntuple_qcd_1000_1500/batch/condor_45.sub deleted file mode 100644 index f46cb037077..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_46.sub b/test/ntuple_qcd_1000_1500/batch/condor_46.sub deleted file mode 100644 index 4b41b5b8b2f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_47.sub b/test/ntuple_qcd_1000_1500/batch/condor_47.sub deleted file mode 100644 index 2ef42003dd3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_48.sub b/test/ntuple_qcd_1000_1500/batch/condor_48.sub deleted file mode 100644 index 076e3c1fe46..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_49.sub b/test/ntuple_qcd_1000_1500/batch/condor_49.sub deleted file mode 100644 index 48ecbdcd16a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_5.sub b/test/ntuple_qcd_1000_1500/batch/condor_5.sub deleted file mode 100644 index 18ab081f127..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_50.sub b/test/ntuple_qcd_1000_1500/batch/condor_50.sub deleted file mode 100644 index 30a796e6b2b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_51.sub b/test/ntuple_qcd_1000_1500/batch/condor_51.sub deleted file mode 100644 index e23dfb2097a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_52.sub b/test/ntuple_qcd_1000_1500/batch/condor_52.sub deleted file mode 100644 index 5b5e404afab..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_53.sub b/test/ntuple_qcd_1000_1500/batch/condor_53.sub deleted file mode 100644 index d8ebe216724..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_54.sub b/test/ntuple_qcd_1000_1500/batch/condor_54.sub deleted file mode 100644 index b75bb17fa19..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_55.sub b/test/ntuple_qcd_1000_1500/batch/condor_55.sub deleted file mode 100644 index 8121f631517..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_56.sub b/test/ntuple_qcd_1000_1500/batch/condor_56.sub deleted file mode 100644 index d6034e89a21..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_57.sub b/test/ntuple_qcd_1000_1500/batch/condor_57.sub deleted file mode 100644 index ad06fc08e40..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_58.sub b/test/ntuple_qcd_1000_1500/batch/condor_58.sub deleted file mode 100644 index 438b16aadbb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_59.sub b/test/ntuple_qcd_1000_1500/batch/condor_59.sub deleted file mode 100644 index 05f26bb851e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_6.sub b/test/ntuple_qcd_1000_1500/batch/condor_6.sub deleted file mode 100644 index 5bfb861a19d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_60.sub b/test/ntuple_qcd_1000_1500/batch/condor_60.sub deleted file mode 100644 index a077dd43264..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_61.sub b/test/ntuple_qcd_1000_1500/batch/condor_61.sub deleted file mode 100644 index 76af5522ee8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_62.sub b/test/ntuple_qcd_1000_1500/batch/condor_62.sub deleted file mode 100644 index edb47fbfefb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_63.sub b/test/ntuple_qcd_1000_1500/batch/condor_63.sub deleted file mode 100644 index b1a6bdfb085..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_64.sub b/test/ntuple_qcd_1000_1500/batch/condor_64.sub deleted file mode 100644 index 655dd174e0d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_65.sub b/test/ntuple_qcd_1000_1500/batch/condor_65.sub deleted file mode 100644 index 377edb157fe..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_66.sub b/test/ntuple_qcd_1000_1500/batch/condor_66.sub deleted file mode 100644 index 7d7b5dbfa86..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_67.sub b/test/ntuple_qcd_1000_1500/batch/condor_67.sub deleted file mode 100644 index 53ebb2ea252..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_68.sub b/test/ntuple_qcd_1000_1500/batch/condor_68.sub deleted file mode 100644 index 5aa08db8233..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_69.sub b/test/ntuple_qcd_1000_1500/batch/condor_69.sub deleted file mode 100644 index d885c086a98..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_7.sub b/test/ntuple_qcd_1000_1500/batch/condor_7.sub deleted file mode 100644 index cdc852a1f67..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_70.sub b/test/ntuple_qcd_1000_1500/batch/condor_70.sub deleted file mode 100644 index 4e4a526013e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_71.sub b/test/ntuple_qcd_1000_1500/batch/condor_71.sub deleted file mode 100644 index 4464cba50ce..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_72.sub b/test/ntuple_qcd_1000_1500/batch/condor_72.sub deleted file mode 100644 index 1cb0690fbf8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_73.sub b/test/ntuple_qcd_1000_1500/batch/condor_73.sub deleted file mode 100644 index d813b44940d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_74.sub b/test/ntuple_qcd_1000_1500/batch/condor_74.sub deleted file mode 100644 index 5384b65458c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_75.sub b/test/ntuple_qcd_1000_1500/batch/condor_75.sub deleted file mode 100644 index e26174c1b0f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_76.sub b/test/ntuple_qcd_1000_1500/batch/condor_76.sub deleted file mode 100644 index 263d390b2a3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_77.sub b/test/ntuple_qcd_1000_1500/batch/condor_77.sub deleted file mode 100644 index 51befd4df68..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_78.sub b/test/ntuple_qcd_1000_1500/batch/condor_78.sub deleted file mode 100644 index f79e7dadc3b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_79.sub b/test/ntuple_qcd_1000_1500/batch/condor_79.sub deleted file mode 100644 index 10537fa3da5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_8.sub b/test/ntuple_qcd_1000_1500/batch/condor_8.sub deleted file mode 100644 index ed60279af79..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_80.sub b/test/ntuple_qcd_1000_1500/batch/condor_80.sub deleted file mode 100644 index 2ea15105d56..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_81.sub b/test/ntuple_qcd_1000_1500/batch/condor_81.sub deleted file mode 100644 index aafec008917..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_82.sub b/test/ntuple_qcd_1000_1500/batch/condor_82.sub deleted file mode 100644 index 08ccf55b4f6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_83.sub b/test/ntuple_qcd_1000_1500/batch/condor_83.sub deleted file mode 100644 index 3c73111d541..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_84.sub b/test/ntuple_qcd_1000_1500/batch/condor_84.sub deleted file mode 100644 index dc7ed6b91a0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_85.sub b/test/ntuple_qcd_1000_1500/batch/condor_85.sub deleted file mode 100644 index e5516b6b635..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_86.sub b/test/ntuple_qcd_1000_1500/batch/condor_86.sub deleted file mode 100644 index 9cb0b5c5eb7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_87.sub b/test/ntuple_qcd_1000_1500/batch/condor_87.sub deleted file mode 100644 index a199efc8800..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_88.sub b/test/ntuple_qcd_1000_1500/batch/condor_88.sub deleted file mode 100644 index fb1e9418e56..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_89.sub b/test/ntuple_qcd_1000_1500/batch/condor_89.sub deleted file mode 100644 index 12f8a4c775e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_9.sub b/test/ntuple_qcd_1000_1500/batch/condor_9.sub deleted file mode 100644 index 4e4010fae1b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_90.sub b/test/ntuple_qcd_1000_1500/batch/condor_90.sub deleted file mode 100644 index 5b511744943..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_91.sub b/test/ntuple_qcd_1000_1500/batch/condor_91.sub deleted file mode 100644 index 995bae886cb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_92.sub b/test/ntuple_qcd_1000_1500/batch/condor_92.sub deleted file mode 100644 index 996df25843a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_93.sub b/test/ntuple_qcd_1000_1500/batch/condor_93.sub deleted file mode 100644 index c8105979475..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_94.sub b/test/ntuple_qcd_1000_1500/batch/condor_94.sub deleted file mode 100644 index b43140ea5dd..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_95.sub b/test/ntuple_qcd_1000_1500/batch/condor_95.sub deleted file mode 100644 index 41cd4f6a77d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_96.sub b/test/ntuple_qcd_1000_1500/batch/condor_96.sub deleted file mode 100644 index a6a26817212..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_97.sub b/test/ntuple_qcd_1000_1500/batch/condor_97.sub deleted file mode 100644 index dfa5b564289..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_98.sub b/test/ntuple_qcd_1000_1500/batch/condor_98.sub deleted file mode 100644 index 3392b130689..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/condor_99.sub b/test/ntuple_qcd_1000_1500/batch/condor_99.sub deleted file mode 100644 index 13bcaaee74e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/nJobs.196 b/test/ntuple_qcd_1000_1500/batch/nJobs.196 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_1000_1500/batch/sge_0.sh b/test/ntuple_qcd_1000_1500/batch/sge_0.sh deleted file mode 100755 index bbf06c0d6c2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_1.sh b/test/ntuple_qcd_1000_1500/batch/sge_1.sh deleted file mode 100755 index c85d3265631..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_10.sh b/test/ntuple_qcd_1000_1500/batch/sge_10.sh deleted file mode 100755 index 9213e0c5210..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_100.sh b/test/ntuple_qcd_1000_1500/batch/sge_100.sh deleted file mode 100755 index abde49e09bd..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=100 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_101.sh b/test/ntuple_qcd_1000_1500/batch/sge_101.sh deleted file mode 100755 index 1beccd3dc0b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=101 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_102.sh b/test/ntuple_qcd_1000_1500/batch/sge_102.sh deleted file mode 100755 index b96062cc808..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=102 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_103.sh b/test/ntuple_qcd_1000_1500/batch/sge_103.sh deleted file mode 100755 index bdf338f7f16..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=103 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_104.sh b/test/ntuple_qcd_1000_1500/batch/sge_104.sh deleted file mode 100755 index 7624812f008..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=104 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_105.sh b/test/ntuple_qcd_1000_1500/batch/sge_105.sh deleted file mode 100755 index 456fe385959..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=105 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_106.sh b/test/ntuple_qcd_1000_1500/batch/sge_106.sh deleted file mode 100755 index f257f7c13a8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=106 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_107.sh b/test/ntuple_qcd_1000_1500/batch/sge_107.sh deleted file mode 100755 index 8d7a0d132ee..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=107 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_108.sh b/test/ntuple_qcd_1000_1500/batch/sge_108.sh deleted file mode 100755 index 4edd2d38c10..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=108 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_109.sh b/test/ntuple_qcd_1000_1500/batch/sge_109.sh deleted file mode 100755 index d06a8171f36..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=109 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_11.sh b/test/ntuple_qcd_1000_1500/batch/sge_11.sh deleted file mode 100755 index 0019efa0ba9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_110.sh b/test/ntuple_qcd_1000_1500/batch/sge_110.sh deleted file mode 100755 index 6cfc5cd9d66..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=110 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_111.sh b/test/ntuple_qcd_1000_1500/batch/sge_111.sh deleted file mode 100755 index d518788ae76..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=111 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_112.sh b/test/ntuple_qcd_1000_1500/batch/sge_112.sh deleted file mode 100755 index 960dcdeb5cc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=112 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_113.sh b/test/ntuple_qcd_1000_1500/batch/sge_113.sh deleted file mode 100755 index ff0a030e2ac..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=113 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_114.sh b/test/ntuple_qcd_1000_1500/batch/sge_114.sh deleted file mode 100755 index fc5f83862d0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=114 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_115.sh b/test/ntuple_qcd_1000_1500/batch/sge_115.sh deleted file mode 100755 index c3962b440a1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=115 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_116.sh b/test/ntuple_qcd_1000_1500/batch/sge_116.sh deleted file mode 100755 index 58c4f60730a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=116 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_117.sh b/test/ntuple_qcd_1000_1500/batch/sge_117.sh deleted file mode 100755 index 11a5c8ed26d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=117 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_118.sh b/test/ntuple_qcd_1000_1500/batch/sge_118.sh deleted file mode 100755 index 879c85c1c8e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=118 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_119.sh b/test/ntuple_qcd_1000_1500/batch/sge_119.sh deleted file mode 100755 index 4d0cdc395ab..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=119 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_12.sh b/test/ntuple_qcd_1000_1500/batch/sge_12.sh deleted file mode 100755 index f924a2c2f8e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_120.sh b/test/ntuple_qcd_1000_1500/batch/sge_120.sh deleted file mode 100755 index 7431c48c97c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=120 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_121.sh b/test/ntuple_qcd_1000_1500/batch/sge_121.sh deleted file mode 100755 index 83533b4096e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=121 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_122.sh b/test/ntuple_qcd_1000_1500/batch/sge_122.sh deleted file mode 100755 index dd863862ef6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=122 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_123.sh b/test/ntuple_qcd_1000_1500/batch/sge_123.sh deleted file mode 100755 index 582c3f4bbc5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=123 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_124.sh b/test/ntuple_qcd_1000_1500/batch/sge_124.sh deleted file mode 100755 index ee081c856b1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=124 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_125.sh b/test/ntuple_qcd_1000_1500/batch/sge_125.sh deleted file mode 100755 index 821775a2d50..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=125 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_126.sh b/test/ntuple_qcd_1000_1500/batch/sge_126.sh deleted file mode 100755 index 8b0b4ef1d63..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=126 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_127.sh b/test/ntuple_qcd_1000_1500/batch/sge_127.sh deleted file mode 100755 index 10610202c5c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=127 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_128.sh b/test/ntuple_qcd_1000_1500/batch/sge_128.sh deleted file mode 100755 index a4da2bd68f4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=128 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_129.sh b/test/ntuple_qcd_1000_1500/batch/sge_129.sh deleted file mode 100755 index d450d06259e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=129 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_13.sh b/test/ntuple_qcd_1000_1500/batch/sge_13.sh deleted file mode 100755 index fa2e59fe2ce..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_130.sh b/test/ntuple_qcd_1000_1500/batch/sge_130.sh deleted file mode 100755 index dc51d7c88cc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=130 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_131.sh b/test/ntuple_qcd_1000_1500/batch/sge_131.sh deleted file mode 100755 index e831e1c4fe0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=131 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_132.sh b/test/ntuple_qcd_1000_1500/batch/sge_132.sh deleted file mode 100755 index 8503f29ade8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=132 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_133.sh b/test/ntuple_qcd_1000_1500/batch/sge_133.sh deleted file mode 100755 index a3f88a8c5c2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=133 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_134.sh b/test/ntuple_qcd_1000_1500/batch/sge_134.sh deleted file mode 100755 index 4897be6de1c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=134 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_135.sh b/test/ntuple_qcd_1000_1500/batch/sge_135.sh deleted file mode 100755 index a03c8cd7120..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=135 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_136.sh b/test/ntuple_qcd_1000_1500/batch/sge_136.sh deleted file mode 100755 index 35664bdc36e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=136 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_137.sh b/test/ntuple_qcd_1000_1500/batch/sge_137.sh deleted file mode 100755 index 5d6e0d6655d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=137 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_138.sh b/test/ntuple_qcd_1000_1500/batch/sge_138.sh deleted file mode 100755 index 4866cee1c35..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=138 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_139.sh b/test/ntuple_qcd_1000_1500/batch/sge_139.sh deleted file mode 100755 index 0077a50faba..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_139.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=139 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_139.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=139 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_14.sh b/test/ntuple_qcd_1000_1500/batch/sge_14.sh deleted file mode 100755 index de1cbf62152..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_140.sh b/test/ntuple_qcd_1000_1500/batch/sge_140.sh deleted file mode 100755 index 22bc93e32ac..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_140.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=140 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_140.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=140 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_141.sh b/test/ntuple_qcd_1000_1500/batch/sge_141.sh deleted file mode 100755 index 5a7bac541fe..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_141.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=141 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_141.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=141 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_142.sh b/test/ntuple_qcd_1000_1500/batch/sge_142.sh deleted file mode 100755 index b3f49fd68a6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_142.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=142 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_142.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=142 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_143.sh b/test/ntuple_qcd_1000_1500/batch/sge_143.sh deleted file mode 100755 index 52defce7ffb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_143.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=143 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_143.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=143 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_144.sh b/test/ntuple_qcd_1000_1500/batch/sge_144.sh deleted file mode 100755 index 6eefa155e80..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_144.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=144 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_144.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=144 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_145.sh b/test/ntuple_qcd_1000_1500/batch/sge_145.sh deleted file mode 100755 index d477efb9bf0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_145.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=145 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_145.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=145 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_146.sh b/test/ntuple_qcd_1000_1500/batch/sge_146.sh deleted file mode 100755 index 91e51c66850..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_146.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=146 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_146.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=146 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_147.sh b/test/ntuple_qcd_1000_1500/batch/sge_147.sh deleted file mode 100755 index 8acf8a6d7ac..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_147.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=147 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_147.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=147 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_148.sh b/test/ntuple_qcd_1000_1500/batch/sge_148.sh deleted file mode 100755 index a6470383a0d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_148.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=148 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_148.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=148 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_149.sh b/test/ntuple_qcd_1000_1500/batch/sge_149.sh deleted file mode 100755 index 8e044dfe543..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_149.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=149 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_149.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=149 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_15.sh b/test/ntuple_qcd_1000_1500/batch/sge_15.sh deleted file mode 100755 index 5efa1824a40..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_150.sh b/test/ntuple_qcd_1000_1500/batch/sge_150.sh deleted file mode 100755 index 2d6597d03a2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_150.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=150 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_150.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=150 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_151.sh b/test/ntuple_qcd_1000_1500/batch/sge_151.sh deleted file mode 100755 index bceeefe44a4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_151.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=151 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_151.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=151 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_152.sh b/test/ntuple_qcd_1000_1500/batch/sge_152.sh deleted file mode 100755 index 817d4cd8d3b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_152.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=152 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_152.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=152 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_153.sh b/test/ntuple_qcd_1000_1500/batch/sge_153.sh deleted file mode 100755 index 2d805147c5a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_153.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=153 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_153.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=153 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_154.sh b/test/ntuple_qcd_1000_1500/batch/sge_154.sh deleted file mode 100755 index 3b3a2ca906d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_154.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=154 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_154.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=154 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_155.sh b/test/ntuple_qcd_1000_1500/batch/sge_155.sh deleted file mode 100755 index 9ac0c972ece..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_155.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=155 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_155.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=155 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_156.sh b/test/ntuple_qcd_1000_1500/batch/sge_156.sh deleted file mode 100755 index 1aebaf3fd43..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_156.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=156 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_156.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=156 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_157.sh b/test/ntuple_qcd_1000_1500/batch/sge_157.sh deleted file mode 100755 index f34eb73c493..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_157.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=157 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_157.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=157 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_158.sh b/test/ntuple_qcd_1000_1500/batch/sge_158.sh deleted file mode 100755 index 70bbf74f4d7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_158.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=158 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_158.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=158 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_159.sh b/test/ntuple_qcd_1000_1500/batch/sge_159.sh deleted file mode 100755 index 00c97e35b7a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_159.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=159 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_159.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=159 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_16.sh b/test/ntuple_qcd_1000_1500/batch/sge_16.sh deleted file mode 100755 index c03d77f0171..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_160.sh b/test/ntuple_qcd_1000_1500/batch/sge_160.sh deleted file mode 100755 index 31087560704..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_160.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=160 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_160.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=160 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_161.sh b/test/ntuple_qcd_1000_1500/batch/sge_161.sh deleted file mode 100755 index c3d30dbf254..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_161.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=161 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_161.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=161 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_162.sh b/test/ntuple_qcd_1000_1500/batch/sge_162.sh deleted file mode 100755 index c7634ab5d3f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_162.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=162 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_162.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=162 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_163.sh b/test/ntuple_qcd_1000_1500/batch/sge_163.sh deleted file mode 100755 index 53a617f2a66..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_163.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=163 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_163.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=163 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_164.sh b/test/ntuple_qcd_1000_1500/batch/sge_164.sh deleted file mode 100755 index 308b7fdbdc7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_164.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=164 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_164.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=164 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_165.sh b/test/ntuple_qcd_1000_1500/batch/sge_165.sh deleted file mode 100755 index 836e0839c4b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_165.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=165 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_165.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=165 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_166.sh b/test/ntuple_qcd_1000_1500/batch/sge_166.sh deleted file mode 100755 index 693e3a00285..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_166.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=166 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_166.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=166 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_167.sh b/test/ntuple_qcd_1000_1500/batch/sge_167.sh deleted file mode 100755 index a6ccd899ffa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_167.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=167 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_167.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=167 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_168.sh b/test/ntuple_qcd_1000_1500/batch/sge_168.sh deleted file mode 100755 index 127eb473ac6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_168.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=168 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_168.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=168 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_169.sh b/test/ntuple_qcd_1000_1500/batch/sge_169.sh deleted file mode 100755 index 20a254513aa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_169.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=169 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_169.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=169 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_17.sh b/test/ntuple_qcd_1000_1500/batch/sge_17.sh deleted file mode 100755 index 6b4c10d40b6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_170.sh b/test/ntuple_qcd_1000_1500/batch/sge_170.sh deleted file mode 100755 index 28e6c528886..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_170.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=170 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_170.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=170 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_171.sh b/test/ntuple_qcd_1000_1500/batch/sge_171.sh deleted file mode 100755 index 29b2f7b5fc5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_171.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=171 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_171.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=171 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_172.sh b/test/ntuple_qcd_1000_1500/batch/sge_172.sh deleted file mode 100755 index e0e5cb36ceb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_172.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=172 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_172.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=172 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_173.sh b/test/ntuple_qcd_1000_1500/batch/sge_173.sh deleted file mode 100755 index 85de728b80e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_173.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=173 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_173.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=173 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_174.sh b/test/ntuple_qcd_1000_1500/batch/sge_174.sh deleted file mode 100755 index 3d8b6359fc2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_174.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=174 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_174.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=174 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_175.sh b/test/ntuple_qcd_1000_1500/batch/sge_175.sh deleted file mode 100755 index 5007345544c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_175.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=175 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_175.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=175 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_176.sh b/test/ntuple_qcd_1000_1500/batch/sge_176.sh deleted file mode 100755 index aec32d7fa04..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_176.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=176 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_176.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=176 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_177.sh b/test/ntuple_qcd_1000_1500/batch/sge_177.sh deleted file mode 100755 index 5505556d47d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_177.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=177 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_177.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=177 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_178.sh b/test/ntuple_qcd_1000_1500/batch/sge_178.sh deleted file mode 100755 index f4b46a87dea..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_178.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=178 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_178.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=178 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_179.sh b/test/ntuple_qcd_1000_1500/batch/sge_179.sh deleted file mode 100755 index fd992c9de8e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_179.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=179 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_179.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=179 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_18.sh b/test/ntuple_qcd_1000_1500/batch/sge_18.sh deleted file mode 100755 index d6f7af349be..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_180.sh b/test/ntuple_qcd_1000_1500/batch/sge_180.sh deleted file mode 100755 index 2d3f0a1526e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_180.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=180 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_180.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=180 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_181.sh b/test/ntuple_qcd_1000_1500/batch/sge_181.sh deleted file mode 100755 index 590bda3de44..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_181.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=181 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_181.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=181 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_182.sh b/test/ntuple_qcd_1000_1500/batch/sge_182.sh deleted file mode 100755 index 30c08095af6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_182.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=182 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_182.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=182 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_183.sh b/test/ntuple_qcd_1000_1500/batch/sge_183.sh deleted file mode 100755 index 08d32f24799..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_183.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=183 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_183.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=183 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_184.sh b/test/ntuple_qcd_1000_1500/batch/sge_184.sh deleted file mode 100755 index 7c4454a27c0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_184.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=184 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_184.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=184 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_185.sh b/test/ntuple_qcd_1000_1500/batch/sge_185.sh deleted file mode 100755 index 61c927d816f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_185.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=185 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_185.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=185 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_186.sh b/test/ntuple_qcd_1000_1500/batch/sge_186.sh deleted file mode 100755 index 6fe1d787342..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_186.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=186 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_186.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=186 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_187.sh b/test/ntuple_qcd_1000_1500/batch/sge_187.sh deleted file mode 100755 index b5e41e3eb2f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_187.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=187 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_187.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=187 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_188.sh b/test/ntuple_qcd_1000_1500/batch/sge_188.sh deleted file mode 100755 index 61358fa8764..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_188.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=188 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_188.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=188 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_189.sh b/test/ntuple_qcd_1000_1500/batch/sge_189.sh deleted file mode 100755 index ecbf2164733..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_189.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=189 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_189.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=189 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_19.sh b/test/ntuple_qcd_1000_1500/batch/sge_19.sh deleted file mode 100755 index 10a6dad7a19..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_190.sh b/test/ntuple_qcd_1000_1500/batch/sge_190.sh deleted file mode 100755 index 0185c7f0dbf..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_190.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=190 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_190.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=190 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_191.sh b/test/ntuple_qcd_1000_1500/batch/sge_191.sh deleted file mode 100755 index b61db9509c8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_191.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=191 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_191.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=191 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_192.sh b/test/ntuple_qcd_1000_1500/batch/sge_192.sh deleted file mode 100755 index 7f457fa3845..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_192.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=192 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_192.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=192 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_193.sh b/test/ntuple_qcd_1000_1500/batch/sge_193.sh deleted file mode 100755 index bd519dc86dc..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_193.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=193 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_193.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=193 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_194.sh b/test/ntuple_qcd_1000_1500/batch/sge_194.sh deleted file mode 100755 index 9dd2d7628fa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_194.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=194 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_194.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=194 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_195.sh b/test/ntuple_qcd_1000_1500/batch/sge_195.sh deleted file mode 100755 index 06977b6f4ef..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_195.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=195 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_195.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=195 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_2.sh b/test/ntuple_qcd_1000_1500/batch/sge_2.sh deleted file mode 100755 index bbf407d729e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_20.sh b/test/ntuple_qcd_1000_1500/batch/sge_20.sh deleted file mode 100755 index 5710c30572a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_21.sh b/test/ntuple_qcd_1000_1500/batch/sge_21.sh deleted file mode 100755 index 2fd7f68942e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_22.sh b/test/ntuple_qcd_1000_1500/batch/sge_22.sh deleted file mode 100755 index f4cdb22fdc9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_23.sh b/test/ntuple_qcd_1000_1500/batch/sge_23.sh deleted file mode 100755 index dfb70184790..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_24.sh b/test/ntuple_qcd_1000_1500/batch/sge_24.sh deleted file mode 100755 index 71e9bc75ab6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_25.sh b/test/ntuple_qcd_1000_1500/batch/sge_25.sh deleted file mode 100755 index eb9a62e3321..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_26.sh b/test/ntuple_qcd_1000_1500/batch/sge_26.sh deleted file mode 100755 index 3c2c01824c9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_27.sh b/test/ntuple_qcd_1000_1500/batch/sge_27.sh deleted file mode 100755 index 23ce80ea6ea..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_28.sh b/test/ntuple_qcd_1000_1500/batch/sge_28.sh deleted file mode 100755 index be099df038e..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_29.sh b/test/ntuple_qcd_1000_1500/batch/sge_29.sh deleted file mode 100755 index 2b2bdb35eb1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_3.sh b/test/ntuple_qcd_1000_1500/batch/sge_3.sh deleted file mode 100755 index 4f2f5ffa7c8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_30.sh b/test/ntuple_qcd_1000_1500/batch/sge_30.sh deleted file mode 100755 index dca26e687b0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_31.sh b/test/ntuple_qcd_1000_1500/batch/sge_31.sh deleted file mode 100755 index c1f83927d1a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_32.sh b/test/ntuple_qcd_1000_1500/batch/sge_32.sh deleted file mode 100755 index 9f7a970a8c0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_33.sh b/test/ntuple_qcd_1000_1500/batch/sge_33.sh deleted file mode 100755 index 38614532514..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_34.sh b/test/ntuple_qcd_1000_1500/batch/sge_34.sh deleted file mode 100755 index b0eff1d78ac..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_35.sh b/test/ntuple_qcd_1000_1500/batch/sge_35.sh deleted file mode 100755 index 148a4982d78..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_36.sh b/test/ntuple_qcd_1000_1500/batch/sge_36.sh deleted file mode 100755 index 820251ca286..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_37.sh b/test/ntuple_qcd_1000_1500/batch/sge_37.sh deleted file mode 100755 index 90bfed9eb71..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_38.sh b/test/ntuple_qcd_1000_1500/batch/sge_38.sh deleted file mode 100755 index ecceb43decb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_39.sh b/test/ntuple_qcd_1000_1500/batch/sge_39.sh deleted file mode 100755 index b727b22a448..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_4.sh b/test/ntuple_qcd_1000_1500/batch/sge_4.sh deleted file mode 100755 index 43cafd98fae..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_40.sh b/test/ntuple_qcd_1000_1500/batch/sge_40.sh deleted file mode 100755 index 626f6f1da98..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_41.sh b/test/ntuple_qcd_1000_1500/batch/sge_41.sh deleted file mode 100755 index 7b74b09ce4d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_42.sh b/test/ntuple_qcd_1000_1500/batch/sge_42.sh deleted file mode 100755 index 5f0f3b2ad4d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_43.sh b/test/ntuple_qcd_1000_1500/batch/sge_43.sh deleted file mode 100755 index f9ed68615b4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_44.sh b/test/ntuple_qcd_1000_1500/batch/sge_44.sh deleted file mode 100755 index 46f36c82cbb..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_45.sh b/test/ntuple_qcd_1000_1500/batch/sge_45.sh deleted file mode 100755 index 125c61266b7..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_46.sh b/test/ntuple_qcd_1000_1500/batch/sge_46.sh deleted file mode 100755 index 2e97a91f1f6..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_47.sh b/test/ntuple_qcd_1000_1500/batch/sge_47.sh deleted file mode 100755 index 878ba56f600..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_48.sh b/test/ntuple_qcd_1000_1500/batch/sge_48.sh deleted file mode 100755 index 3e2fc3f2f9b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_49.sh b/test/ntuple_qcd_1000_1500/batch/sge_49.sh deleted file mode 100755 index 62c07468f98..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_5.sh b/test/ntuple_qcd_1000_1500/batch/sge_5.sh deleted file mode 100755 index e038db5bd80..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_50.sh b/test/ntuple_qcd_1000_1500/batch/sge_50.sh deleted file mode 100755 index 3c14d535ec3..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_51.sh b/test/ntuple_qcd_1000_1500/batch/sge_51.sh deleted file mode 100755 index ba49863eea4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_52.sh b/test/ntuple_qcd_1000_1500/batch/sge_52.sh deleted file mode 100755 index 2c98ee3e04d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_53.sh b/test/ntuple_qcd_1000_1500/batch/sge_53.sh deleted file mode 100755 index aacdea07685..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_54.sh b/test/ntuple_qcd_1000_1500/batch/sge_54.sh deleted file mode 100755 index fe4eefcef21..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_55.sh b/test/ntuple_qcd_1000_1500/batch/sge_55.sh deleted file mode 100755 index 805142776fa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_56.sh b/test/ntuple_qcd_1000_1500/batch/sge_56.sh deleted file mode 100755 index 116772297d4..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_57.sh b/test/ntuple_qcd_1000_1500/batch/sge_57.sh deleted file mode 100755 index 69ba5bcdee9..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_58.sh b/test/ntuple_qcd_1000_1500/batch/sge_58.sh deleted file mode 100755 index 152442e7faa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_59.sh b/test/ntuple_qcd_1000_1500/batch/sge_59.sh deleted file mode 100755 index d09ed5aadd2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_6.sh b/test/ntuple_qcd_1000_1500/batch/sge_6.sh deleted file mode 100755 index a06e99532b5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_60.sh b/test/ntuple_qcd_1000_1500/batch/sge_60.sh deleted file mode 100755 index 3ef5d450934..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_61.sh b/test/ntuple_qcd_1000_1500/batch/sge_61.sh deleted file mode 100755 index e714bc0a161..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_62.sh b/test/ntuple_qcd_1000_1500/batch/sge_62.sh deleted file mode 100755 index 653ad99bf60..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_63.sh b/test/ntuple_qcd_1000_1500/batch/sge_63.sh deleted file mode 100755 index 1f732070aa1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_64.sh b/test/ntuple_qcd_1000_1500/batch/sge_64.sh deleted file mode 100755 index ed8a708d2a5..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_65.sh b/test/ntuple_qcd_1000_1500/batch/sge_65.sh deleted file mode 100755 index 6eb62bb2040..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_66.sh b/test/ntuple_qcd_1000_1500/batch/sge_66.sh deleted file mode 100755 index c3ef9a3ea73..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_67.sh b/test/ntuple_qcd_1000_1500/batch/sge_67.sh deleted file mode 100755 index 4efefb68d64..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_68.sh b/test/ntuple_qcd_1000_1500/batch/sge_68.sh deleted file mode 100755 index 3f53a52fa53..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_69.sh b/test/ntuple_qcd_1000_1500/batch/sge_69.sh deleted file mode 100755 index aa15dc7db17..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_7.sh b/test/ntuple_qcd_1000_1500/batch/sge_7.sh deleted file mode 100755 index 9f5b48b27da..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_70.sh b/test/ntuple_qcd_1000_1500/batch/sge_70.sh deleted file mode 100755 index ca82f9d439d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_71.sh b/test/ntuple_qcd_1000_1500/batch/sge_71.sh deleted file mode 100755 index ee29270202f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_72.sh b/test/ntuple_qcd_1000_1500/batch/sge_72.sh deleted file mode 100755 index c65c0eeb42f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_73.sh b/test/ntuple_qcd_1000_1500/batch/sge_73.sh deleted file mode 100755 index 4b2add02cfa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_74.sh b/test/ntuple_qcd_1000_1500/batch/sge_74.sh deleted file mode 100755 index 8d75d80dd1b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_75.sh b/test/ntuple_qcd_1000_1500/batch/sge_75.sh deleted file mode 100755 index dc30dc51710..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_76.sh b/test/ntuple_qcd_1000_1500/batch/sge_76.sh deleted file mode 100755 index 31f056b40d0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_77.sh b/test/ntuple_qcd_1000_1500/batch/sge_77.sh deleted file mode 100755 index 05bee5f2845..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=77 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_78.sh b/test/ntuple_qcd_1000_1500/batch/sge_78.sh deleted file mode 100755 index f5359346dff..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=78 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_79.sh b/test/ntuple_qcd_1000_1500/batch/sge_79.sh deleted file mode 100755 index 068a8a3d6a8..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=79 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_8.sh b/test/ntuple_qcd_1000_1500/batch/sge_8.sh deleted file mode 100755 index bcaf260bfed..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_80.sh b/test/ntuple_qcd_1000_1500/batch/sge_80.sh deleted file mode 100755 index 539de8b302b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=80 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_81.sh b/test/ntuple_qcd_1000_1500/batch/sge_81.sh deleted file mode 100755 index d4517ffd0aa..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=81 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_82.sh b/test/ntuple_qcd_1000_1500/batch/sge_82.sh deleted file mode 100755 index 98739c0565a..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=82 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_83.sh b/test/ntuple_qcd_1000_1500/batch/sge_83.sh deleted file mode 100755 index 877eaedefd1..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=83 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_84.sh b/test/ntuple_qcd_1000_1500/batch/sge_84.sh deleted file mode 100755 index bdc02d0ff74..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=84 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_85.sh b/test/ntuple_qcd_1000_1500/batch/sge_85.sh deleted file mode 100755 index 464e8034b88..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=85 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_86.sh b/test/ntuple_qcd_1000_1500/batch/sge_86.sh deleted file mode 100755 index b00d1a02976..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=86 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_87.sh b/test/ntuple_qcd_1000_1500/batch/sge_87.sh deleted file mode 100755 index 480b7cf472b..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=87 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_88.sh b/test/ntuple_qcd_1000_1500/batch/sge_88.sh deleted file mode 100755 index 26636588680..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=88 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_89.sh b/test/ntuple_qcd_1000_1500/batch/sge_89.sh deleted file mode 100755 index a8461b772e0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=89 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_9.sh b/test/ntuple_qcd_1000_1500/batch/sge_9.sh deleted file mode 100755 index ad26dc3b51f..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_90.sh b/test/ntuple_qcd_1000_1500/batch/sge_90.sh deleted file mode 100755 index 393383e4345..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=90 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_91.sh b/test/ntuple_qcd_1000_1500/batch/sge_91.sh deleted file mode 100755 index 30911d10757..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=91 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_92.sh b/test/ntuple_qcd_1000_1500/batch/sge_92.sh deleted file mode 100755 index 98b573abf7d..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=92 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_93.sh b/test/ntuple_qcd_1000_1500/batch/sge_93.sh deleted file mode 100755 index c3e4fb59422..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=93 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_94.sh b/test/ntuple_qcd_1000_1500/batch/sge_94.sh deleted file mode 100755 index 21f232a70b0..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=94 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_95.sh b/test/ntuple_qcd_1000_1500/batch/sge_95.sh deleted file mode 100755 index 43d6a9e2dff..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=95 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_96.sh b/test/ntuple_qcd_1000_1500/batch/sge_96.sh deleted file mode 100755 index 8c10adfa8e2..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=96 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_97.sh b/test/ntuple_qcd_1000_1500/batch/sge_97.sh deleted file mode 100755 index 683642eb66c..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=97 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_98.sh b/test/ntuple_qcd_1000_1500/batch/sge_98.sh deleted file mode 100755 index 1a5366ea8ce..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=98 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batch/sge_99.sh b/test/ntuple_qcd_1000_1500/batch/sge_99.sh deleted file mode 100755 index 523ef3ba344..00000000000 --- a/test/ntuple_qcd_1000_1500/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=99 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/batchscript.sh b/test/ntuple_qcd_1000_1500/batchscript.sh deleted file mode 100755 index d330479a91a..00000000000 --- a/test/ntuple_qcd_1000_1500/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_1000_1500" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/condor.sub b/test/ntuple_qcd_1000_1500/condor.sub deleted file mode 100644 index d1a25c3e311..00000000000 --- a/test/ntuple_qcd_1000_1500/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1000to1500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=196 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ntuple_qcd_1000_1500_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 196 - \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/helper b/test/ntuple_qcd_1000_1500/helper deleted file mode 120000 index 6fe107ecd52..00000000000 --- a/test/ntuple_qcd_1000_1500/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_1000_1500/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/output b/test/ntuple_qcd_1000_1500/output deleted file mode 120000 index b31a4aa1122..00000000000 --- a/test/ntuple_qcd_1000_1500/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1000_1500/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_1000_1500/sge_sub.sh b/test/ntuple_qcd_1000_1500/sge_sub.sh deleted file mode 100755 index 21b6f49b032..00000000000 --- a/test/ntuple_qcd_1000_1500/sge_sub.sh +++ /dev/null @@ -1,196 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_182.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_183.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_184.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_185.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_186.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_187.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_188.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_189.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_190.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_191.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_192.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_193.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_194.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1000_1500/batch/sge_195.sh diff --git a/test/ntuple_qcd_100_200/ademoor.cc b/test/ntuple_qcd_100_200/ademoor.cc deleted file mode 100644 index c192e3add7900880f7732060d0e95961d2c02aa4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$WmFXGw#ON|hpr(8=^k1H0i|O=O1g&b8VTv{6iMlhp+ON4>244Sk%kcoX>ow7 zcfIGm=bp3fxqGeW!~XBRpZ%=o|K*2;iS{P|e;ph-1#Jy}IpyCej-|DYi<_J0|64`> z-SOxA(=4`=Ck$=}|7Vf49}?$108@>ga`V^j$(QU-5(9Th#W!+`fJ_a)siqgiQiMAe>%vD z{)`rf;c;Mw;jwJ{y4EZ%+=JjlvNin*ts?Vjs~=>Uw0b*s)o!G#%*!n)^s9%P^KM+@ zl!puvDU2ckZziE({K;C(r&hMklKo5{dJ`&3p za%*&^o3D?P_|-nFBOX5i zAGP3y^kAAJ5`DX}C9g3#-rvQM2tgN0%U|y(s0;BXbnzWBW?l;-S>166-V&mT0^Wo~ zV#7!vn2nS5)Y(issezkQ;+=>rtQ4WUUrn**i~|OiHz~Q4e&KobQ&h>7tdD?|kH@sl zxGwa@#cA5&B}i5R5ufH9i$o0NSpz*(WLuBHv>aa^GcJ>G)&_kdL#(frr6Xt}CuLmV z15Mc#b!?^cTBNNqfS|!k9A=cwaLcFH%^!1z0%E|hXT-$^`wHffg?fL+PXb&gUsG5dWjk(HhiOJI7H#PSN{Yx3+nzGKWk41$%n7AWL`QMi* z6CP$iWd3$FR;EfUbPc#?HX>yWY9BvFL|XjwYrXS6)+d^bYZ(dQ;`Fs}yK(pc#8juzImZKG7gUv|?>Dzp>=<73M55rMfT;K zB-n^^k>dx!h>eHlLH5H?!ew@|VGJ9&m?V=+mxuK<)y2I_oRzS=qC6SB7?y09t@03yCi8-lsQj^15}SNaqm>{ed%ef5^Uy)Q0!n+ z=~9QbL#m>4^La`O^i3zu4&v@Sog~V4+YODKMAThx*ZCmpk{9hMgP!9s;rox?Wyfr> zVJ5=0FLZ7hs$FnrOmpN(t4=HE&sbbO?isVA)?FZ&zV=zp!3P0Yq@cUANU*x%Od>*Vj4QrnPrtmGotBh>tT>K&ij30@GosHSh1Z=!2 z!@f|5zdStBi%Fc%?8aazIWUKGshF6$pN~0~;)1ff{ns+?ctReXK?T-1qpLhuCK8J$Hompa)g=Jsv3mfw+j zK+rI0;>^7uh3Zz-LySS2)@cP&`2<=)iR4J6>|1$pUF*m#L%>|Jqelg;=RgYrj=fiU zTfkufE+(EOSmgvh*`(x6@0r8o^%z}tl^x$Q}zA`%H4%`p$|?(NN+rYLB#Moh4HJ8gO8X9N$59UjvuvhUpIWr5179G zRib)%KS>m))!zb(;M4geXXw(fwBhH38DYF39)a0!p6KC35IGVnr@!4|oC~<7MkCql z#p(vTFmG;*!e4v}`7X5kV*f+)VdBxYMl2SWM|pnGtP3!H@xgGr68G}EDdbpNo>S3i zMU_`G{?F7X-46ovQz=8}-wK`SqunBXdSI~5L}$I$1K|3Ljgqc8Z^{|-rXEyHw|24z z?MsagyHMvP6jPF>E_c+PlmtxXVaYM|3tzCh(Y z+Z#^RpE16uHEXzn+j=-X$~X9wjv!;>#zGT?lf9(%!`69HZocN)WzTYZV%Qs*FLP6X z1h-GwLT2&!urueJ{nEK>Xrm-)Z@4DX3;38YJ*dn3uoCb(Mjm;PPt)lI3Uv)T@a!!2 z^1egOkE`2vz0KNUln-Mrb0;vvijFv|K{BOIrLtMv`z*EJe((6o=-n)!;ks79verd1 zJ{mMJKIu6@M{o7L^<;!uF@w(*D^N)otKRjpc(L+i$uFSCqpafUa|*7XB4Cz@3JFik zK^n+Bt7e-a+n3IY3S8soUCg`?FPl#Y+TjF(if1K_mkrcnx@pRdVyv&9-%M%TEK$15 z=M5#*K4sWWW02)Kz2_LU*2!Cz6FwX)hTmq**2zRi`h5|Dx-iVVji}}-5cJRyuC()* zLVAD`yoAM>^_lovl+Bj!x*NE!qR2mrQqbP2?;fEAyB6{gvljRP2R`4Fcn2yY?PbcV zOY;+GrGbaI=59B8AviKgD_SFHLCsxJ@4LhkdBubLZKR}hja*DflB(heYnBJF6~MF^ z`zHS1#0M`RTQ_K86gwkke&RXuGNnpy=Mz`#$~5h8K1il_J7EGE@pmtd!`H*@M6^>J z^Q7{go4nWlyl`1ZG}M_>k*eM)xmA{M?61(Rt?!Y-@WSCMscXr3$)Nb@A?sLNev~9-I zk&V;k_O|jAD~ta{U;mj1|1|vz^I=%pdi_>$tZY18`K|2H$bKha{BfY>R-VoLdd{-G zcAWC_*MZxE27*jK^_9ZetTs+l{~G|U5uE=6fMtKK{zm{nmSF&DNEm?p-vE#nLj6ZW zD&Z9FTi|}hJ^K*A*C}-L2 zfxa%zis&~rGswk=Jc-O)ui*Fk={c2GqrO;6d)*87j(u~kVyMq<6FvU(G7H&l;jl!n zHe-7L>exM`jl`)&JTqF#BrvL=^jXW$*!9qY;&-+*(A_?A>1)lc76|R+hqoB;TK>%T zud1NX{(9!TeZ!`Vz#LaNj&OsJOPFlg?%OSdO&;F%mu15Lhh=zaznMMh zH+{$bn`JBz=06&shz>#n`s)>-e|f`ibl3Vl4E@_a%-`rP^BdhI;ZnTAENwwQ{fZ*o zp$q!^FW)H{sx1TaAH`pxFSI0@i6 zR?k2n5l<|4Y>>kR;Dx4d976uN#c5dGiMPt2N#s|eSd9*h2>k$@Ioq(|_;CIDb##-H zauTC3f$ng=M+dC3jMjDFTt(aqUq{Zhz$NQYqFWCM8FBecRudNv zF=Lbr^)Jy|oZ}lDX`3u;HGR3|HB~v7q}9z3Hr9-EYbp7+m%+5PeU)6VmP%q5RN1SV zqqlpd#Z*q|>kDBY?eTd(+~~ivvVUX5bodScYxcXS5*>U0-J?#m8G~uTPrHxHEQnSF zIFXf9u063abryHk9~NKSop~2xMTiWZ4mk6?5^5jgDA8XcdrT8%Hb5HndMlN?d2?U+ zi+3udSyq?Yi2x)NA+iDeIwcc(en?$WACIxTKcLBvaDFA~cvSc_(F{>DRCBO`xj48e zzJ()^XEZUVy7*KsgfD{QmT>jkEiS6n%G)gTpoeen9;B)!KWE|~n)qhb$8Z^&NcD7e zT#nS>^yqc?Y1bwuWT0q7$FO{$slJf!`KT#?8w{<-=T;7laQ>=a>Gbtw<5F_eG1@3R zX88`>j@NMw)@`)!o%U}hXCszR>b~@x8hrklLjNwdVdFpBNHo>l7lqVEy(^laq=4v`_X<5*H09IlDUefhY?f9*dvkngsSAR zS)3>gP!|1>Ie$#AjJYaSYK4>aMA~4}$%5yvV&W}J9Tw%I3bPD$Xeo~m1!B*5Ui0`0 z0K_FImgJw7xrxGQqx$uWDWz4MvG#F#d)V&Au0cq*OMq|u{VsaplbjVSxZPy`+?H0IN~6klohm{WeIcYdcke#T2By_K`3!op-e3RAf%~zTT1jt4gI^ZZ(!Esn@L4bZhMF z166YP_MAdA*7*Cc)+j&w?ZQYe$a;)ockSsh{$nMJ4B8E+#^xi~I8eM|xK)nG|8O*Q zd&ikn#nnG%OWdm5%%v?fKrmeGyRhY5&1%ZTWTfP<(h?Nr{h%f1WcSFCA30cb6eSE73WuPLNnA1tfeF}eGz{8V25p?4Dt%=%vQ9su#J({ zHOqM`e_ZZfZ@x_83uduzMn{{eFy8JNmkez$0ysRdEb7_uk*;={y2n1fT%P~RH-sVm z;OV-Ke6asb{bR-H2jkrWMc}R1+mZMHMbjwW{>Y~5@?XRomavt1&VBG49Hr53Gw{xI zzon!=^1Md@JxW42IRB~~7K~q6v!^RNAQ}*1rEklv#gl}eKTV}#P${Q+b*(N56tGTN z-g#A0ZyNdR5dYogdW*%izy^s+@cqvgP*dhlJEK%vhgqXsIXVZp(UT1ayP<7 z4-+XMUTmUsJ;Aj%#=j=OpEbiERMYX(MeF|*e@=c#@Z_pHQF8D5+slz%N?jq6!uT7w>P|#?PDUtuuLExvSs_^zFW>gwZw5? z=d5^jhX2Dr%6Aq^l|$#AEyRa|OF`_VqRf-{YR&4Ki}*xwgAUxI%>IToQqTENWzcs% zpX9!HUMTNnhEmQ(Z}HCrD3OighN!e9uL9Am?VtkU%3EX2Y~ig3&Up_)0(cQLenn>< zi>h48w9^BPS|{&xP@p>yz-6NqwN-58LP;$G70xdGbj{;g3Q(b#ohNSxZd-?#Li+mXxg* zW1X~W>tp(+b;YH389gJ~6P)q*i`mWfNBrdMwmpw(1$gJND% U*K2beY$0yZkoEBjjX$LLUp;b5Y5)KL diff --git a/test/ntuple_qcd_100_200/batch/condor_0.sub b/test/ntuple_qcd_100_200/batch/condor_0.sub deleted file mode 100644 index f28f109d070..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_1.sub b/test/ntuple_qcd_100_200/batch/condor_1.sub deleted file mode 100644 index 5fa9097a78b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_10.sub b/test/ntuple_qcd_100_200/batch/condor_10.sub deleted file mode 100644 index d2b4f47d214..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_100.sub b/test/ntuple_qcd_100_200/batch/condor_100.sub deleted file mode 100644 index b6162b074f7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_101.sub b/test/ntuple_qcd_100_200/batch/condor_101.sub deleted file mode 100644 index 27d290015e7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_102.sub b/test/ntuple_qcd_100_200/batch/condor_102.sub deleted file mode 100644 index 4621b58ae07..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_103.sub b/test/ntuple_qcd_100_200/batch/condor_103.sub deleted file mode 100644 index a95535d3d57..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_104.sub b/test/ntuple_qcd_100_200/batch/condor_104.sub deleted file mode 100644 index 2c8d97d6605..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_105.sub b/test/ntuple_qcd_100_200/batch/condor_105.sub deleted file mode 100644 index 415fda14834..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_106.sub b/test/ntuple_qcd_100_200/batch/condor_106.sub deleted file mode 100644 index fffb9a1029f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_107.sub b/test/ntuple_qcd_100_200/batch/condor_107.sub deleted file mode 100644 index 6e5662acb76..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_108.sub b/test/ntuple_qcd_100_200/batch/condor_108.sub deleted file mode 100644 index a0905d3f0fa..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_109.sub b/test/ntuple_qcd_100_200/batch/condor_109.sub deleted file mode 100644 index 1b455b745d7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_11.sub b/test/ntuple_qcd_100_200/batch/condor_11.sub deleted file mode 100644 index 659333aac07..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_110.sub b/test/ntuple_qcd_100_200/batch/condor_110.sub deleted file mode 100644 index d4b92add0a4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_111.sub b/test/ntuple_qcd_100_200/batch/condor_111.sub deleted file mode 100644 index 9f95b7d49b3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_112.sub b/test/ntuple_qcd_100_200/batch/condor_112.sub deleted file mode 100644 index f707c9f6b66..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_113.sub b/test/ntuple_qcd_100_200/batch/condor_113.sub deleted file mode 100644 index a58284a5643..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_114.sub b/test/ntuple_qcd_100_200/batch/condor_114.sub deleted file mode 100644 index 92aff004590..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_115.sub b/test/ntuple_qcd_100_200/batch/condor_115.sub deleted file mode 100644 index 1e7580db1c4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_116.sub b/test/ntuple_qcd_100_200/batch/condor_116.sub deleted file mode 100644 index c8d35308e2a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_117.sub b/test/ntuple_qcd_100_200/batch/condor_117.sub deleted file mode 100644 index 45dfebb0c8c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_118.sub b/test/ntuple_qcd_100_200/batch/condor_118.sub deleted file mode 100644 index 268d8c06d2f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_119.sub b/test/ntuple_qcd_100_200/batch/condor_119.sub deleted file mode 100644 index 1e2882af92d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_12.sub b/test/ntuple_qcd_100_200/batch/condor_12.sub deleted file mode 100644 index 064d09c1fee..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_120.sub b/test/ntuple_qcd_100_200/batch/condor_120.sub deleted file mode 100644 index ed558c19089..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_121.sub b/test/ntuple_qcd_100_200/batch/condor_121.sub deleted file mode 100644 index adfa881a21a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_122.sub b/test/ntuple_qcd_100_200/batch/condor_122.sub deleted file mode 100644 index 2a60d66ce37..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_123.sub b/test/ntuple_qcd_100_200/batch/condor_123.sub deleted file mode 100644 index 3f9edd008ce..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_124.sub b/test/ntuple_qcd_100_200/batch/condor_124.sub deleted file mode 100644 index 7c7052dc8d8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_125.sub b/test/ntuple_qcd_100_200/batch/condor_125.sub deleted file mode 100644 index 91d7799af84..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_126.sub b/test/ntuple_qcd_100_200/batch/condor_126.sub deleted file mode 100644 index 4a8c83cca1c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_127.sub b/test/ntuple_qcd_100_200/batch/condor_127.sub deleted file mode 100644 index a935738b73f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_128.sub b/test/ntuple_qcd_100_200/batch/condor_128.sub deleted file mode 100644 index 860942a7a39..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_129.sub b/test/ntuple_qcd_100_200/batch/condor_129.sub deleted file mode 100644 index ee90baf5738..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_13.sub b/test/ntuple_qcd_100_200/batch/condor_13.sub deleted file mode 100644 index dcf6abcdd84..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_130.sub b/test/ntuple_qcd_100_200/batch/condor_130.sub deleted file mode 100644 index 7da0e26eb87..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_131.sub b/test/ntuple_qcd_100_200/batch/condor_131.sub deleted file mode 100644 index 531fb13d62d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_132.sub b/test/ntuple_qcd_100_200/batch/condor_132.sub deleted file mode 100644 index fe7d9ae9624..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_133.sub b/test/ntuple_qcd_100_200/batch/condor_133.sub deleted file mode 100644 index ecbfc5beaf0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_134.sub b/test/ntuple_qcd_100_200/batch/condor_134.sub deleted file mode 100644 index 0d36ee8aab5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_135.sub b/test/ntuple_qcd_100_200/batch/condor_135.sub deleted file mode 100644 index 0e17939527e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_136.sub b/test/ntuple_qcd_100_200/batch/condor_136.sub deleted file mode 100644 index bf9b19b74fc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_137.sub b/test/ntuple_qcd_100_200/batch/condor_137.sub deleted file mode 100644 index 41bb37ff5d6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_138.sub b/test/ntuple_qcd_100_200/batch/condor_138.sub deleted file mode 100644 index 4b77b3be3f7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_139.sub b/test/ntuple_qcd_100_200/batch/condor_139.sub deleted file mode 100644 index 5dad162db60..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_139.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.139.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_139.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.139.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_14.sub b/test/ntuple_qcd_100_200/batch/condor_14.sub deleted file mode 100644 index bfd853b8620..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_140.sub b/test/ntuple_qcd_100_200/batch/condor_140.sub deleted file mode 100644 index 38635b66cc9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_140.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.140.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_140.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.140.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_141.sub b/test/ntuple_qcd_100_200/batch/condor_141.sub deleted file mode 100644 index 250282464d1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_141.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.141.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_141.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.141.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_142.sub b/test/ntuple_qcd_100_200/batch/condor_142.sub deleted file mode 100644 index c3e768dcb30..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_142.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.142.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_142.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.142.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_143.sub b/test/ntuple_qcd_100_200/batch/condor_143.sub deleted file mode 100644 index 3f94f482c15..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_143.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.143.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_143.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.143.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_144.sub b/test/ntuple_qcd_100_200/batch/condor_144.sub deleted file mode 100644 index e990ddeca0a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_144.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.144.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_144.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.144.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_145.sub b/test/ntuple_qcd_100_200/batch/condor_145.sub deleted file mode 100644 index 66f427dbf1d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_145.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.145.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_145.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.145.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_146.sub b/test/ntuple_qcd_100_200/batch/condor_146.sub deleted file mode 100644 index 6258564271e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_146.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.146.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_146.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.146.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_147.sub b/test/ntuple_qcd_100_200/batch/condor_147.sub deleted file mode 100644 index 3844d28e445..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_147.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.147.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_147.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.147.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_148.sub b/test/ntuple_qcd_100_200/batch/condor_148.sub deleted file mode 100644 index d95518990a5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_148.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.148.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_148.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.148.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_149.sub b/test/ntuple_qcd_100_200/batch/condor_149.sub deleted file mode 100644 index 5659e7c1a76..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_149.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.149.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_149.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.149.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_15.sub b/test/ntuple_qcd_100_200/batch/condor_15.sub deleted file mode 100644 index 8ab0aa05763..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_150.sub b/test/ntuple_qcd_100_200/batch/condor_150.sub deleted file mode 100644 index 4e60470d50c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_150.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.150.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_150.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.150.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_151.sub b/test/ntuple_qcd_100_200/batch/condor_151.sub deleted file mode 100644 index fd9d9201afe..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_151.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.151.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_151.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.151.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_152.sub b/test/ntuple_qcd_100_200/batch/condor_152.sub deleted file mode 100644 index f4666c1fefe..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_152.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.152.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_152.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.152.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_153.sub b/test/ntuple_qcd_100_200/batch/condor_153.sub deleted file mode 100644 index 83f82ec042d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_153.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.153.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_153.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.153.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_154.sub b/test/ntuple_qcd_100_200/batch/condor_154.sub deleted file mode 100644 index b4c675f8d73..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_154.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.154.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_154.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.154.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_155.sub b/test/ntuple_qcd_100_200/batch/condor_155.sub deleted file mode 100644 index be9f0033f1a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_155.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.155.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_155.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.155.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_156.sub b/test/ntuple_qcd_100_200/batch/condor_156.sub deleted file mode 100644 index 777ce87b211..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_156.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.156.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_156.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.156.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_157.sub b/test/ntuple_qcd_100_200/batch/condor_157.sub deleted file mode 100644 index ddcb4bcf13d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_157.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.157.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_157.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.157.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_158.sub b/test/ntuple_qcd_100_200/batch/condor_158.sub deleted file mode 100644 index ce02830f18d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_158.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.158.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_158.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.158.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_159.sub b/test/ntuple_qcd_100_200/batch/condor_159.sub deleted file mode 100644 index 3bdb48b3563..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_159.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.159.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_159.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.159.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_16.sub b/test/ntuple_qcd_100_200/batch/condor_16.sub deleted file mode 100644 index 56cce210646..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_160.sub b/test/ntuple_qcd_100_200/batch/condor_160.sub deleted file mode 100644 index af150a4010a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_160.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.160.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_160.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.160.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_161.sub b/test/ntuple_qcd_100_200/batch/condor_161.sub deleted file mode 100644 index 8d91abf1287..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_161.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.161.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_161.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.161.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_162.sub b/test/ntuple_qcd_100_200/batch/condor_162.sub deleted file mode 100644 index c98d12c0485..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_162.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.162.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_162.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.162.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_163.sub b/test/ntuple_qcd_100_200/batch/condor_163.sub deleted file mode 100644 index 96846b3b278..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_163.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.163.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_163.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.163.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_164.sub b/test/ntuple_qcd_100_200/batch/condor_164.sub deleted file mode 100644 index 9fe842ca550..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_164.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.164.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_164.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.164.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_165.sub b/test/ntuple_qcd_100_200/batch/condor_165.sub deleted file mode 100644 index 281ab13b537..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_165.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.165.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_165.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.165.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_166.sub b/test/ntuple_qcd_100_200/batch/condor_166.sub deleted file mode 100644 index 280051dc394..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_166.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.166.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_166.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.166.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_167.sub b/test/ntuple_qcd_100_200/batch/condor_167.sub deleted file mode 100644 index 255df0d55d3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_167.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.167.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_167.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.167.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_168.sub b/test/ntuple_qcd_100_200/batch/condor_168.sub deleted file mode 100644 index 9c9a5fc3b45..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_168.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.168.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_168.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.168.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_169.sub b/test/ntuple_qcd_100_200/batch/condor_169.sub deleted file mode 100644 index da0a6c245a0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_169.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.169.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_169.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.169.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_17.sub b/test/ntuple_qcd_100_200/batch/condor_17.sub deleted file mode 100644 index 84a69f88742..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_170.sub b/test/ntuple_qcd_100_200/batch/condor_170.sub deleted file mode 100644 index 25737304cb8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_170.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.170.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_170.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.170.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_171.sub b/test/ntuple_qcd_100_200/batch/condor_171.sub deleted file mode 100644 index 95365b9aacb..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_171.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.171.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_171.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.171.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_172.sub b/test/ntuple_qcd_100_200/batch/condor_172.sub deleted file mode 100644 index ce98a657516..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_172.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.172.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_172.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.172.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_173.sub b/test/ntuple_qcd_100_200/batch/condor_173.sub deleted file mode 100644 index 0f422742676..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_173.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.173.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_173.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.173.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_174.sub b/test/ntuple_qcd_100_200/batch/condor_174.sub deleted file mode 100644 index f53f0b93091..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_174.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.174.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_174.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.174.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_175.sub b/test/ntuple_qcd_100_200/batch/condor_175.sub deleted file mode 100644 index 321ce551d8f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_175.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.175.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_175.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.175.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_176.sub b/test/ntuple_qcd_100_200/batch/condor_176.sub deleted file mode 100644 index 486d51c08d6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_176.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.176.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_176.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.176.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_177.sub b/test/ntuple_qcd_100_200/batch/condor_177.sub deleted file mode 100644 index f9c1c58f39a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_177.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.177.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_177.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.177.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_178.sub b/test/ntuple_qcd_100_200/batch/condor_178.sub deleted file mode 100644 index 54f830e1598..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_178.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.178.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_178.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.178.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_179.sub b/test/ntuple_qcd_100_200/batch/condor_179.sub deleted file mode 100644 index af794fa729d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_179.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.179.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_179.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.179.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_18.sub b/test/ntuple_qcd_100_200/batch/condor_18.sub deleted file mode 100644 index eb0188f9708..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_180.sub b/test/ntuple_qcd_100_200/batch/condor_180.sub deleted file mode 100644 index 30713f2cf09..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_180.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.180.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_180.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.180.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_181.sub b/test/ntuple_qcd_100_200/batch/condor_181.sub deleted file mode 100644 index cbc0ca8447e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_181.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.181.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_181.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.181.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_182.sub b/test/ntuple_qcd_100_200/batch/condor_182.sub deleted file mode 100644 index e5fa7508ae7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_182.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.182.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_182.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.182.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_183.sub b/test/ntuple_qcd_100_200/batch/condor_183.sub deleted file mode 100644 index 32656c62495..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_183.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.183.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_183.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.183.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_184.sub b/test/ntuple_qcd_100_200/batch/condor_184.sub deleted file mode 100644 index a77a341fdb4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_184.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.184.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_184.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.184.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_185.sub b/test/ntuple_qcd_100_200/batch/condor_185.sub deleted file mode 100644 index a1b8bb6c39c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_185.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.185.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_185.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.185.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_186.sub b/test/ntuple_qcd_100_200/batch/condor_186.sub deleted file mode 100644 index e149077e148..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_186.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.186.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_186.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.186.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_187.sub b/test/ntuple_qcd_100_200/batch/condor_187.sub deleted file mode 100644 index 74dce79a00d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_187.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.187.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_187.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.187.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_188.sub b/test/ntuple_qcd_100_200/batch/condor_188.sub deleted file mode 100644 index ed8e6f9a671..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_188.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.188.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_188.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.188.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_189.sub b/test/ntuple_qcd_100_200/batch/condor_189.sub deleted file mode 100644 index 330667e70ec..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_189.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.189.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_189.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.189.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_19.sub b/test/ntuple_qcd_100_200/batch/condor_19.sub deleted file mode 100644 index 4f871a89175..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_190.sub b/test/ntuple_qcd_100_200/batch/condor_190.sub deleted file mode 100644 index 1344b660e2f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_190.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.190.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_190.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.190.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_191.sub b/test/ntuple_qcd_100_200/batch/condor_191.sub deleted file mode 100644 index bf5151625b4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_191.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.191.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_191.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.191.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_192.sub b/test/ntuple_qcd_100_200/batch/condor_192.sub deleted file mode 100644 index e653d4a6878..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_192.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.192.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_192.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.192.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_193.sub b/test/ntuple_qcd_100_200/batch/condor_193.sub deleted file mode 100644 index e0e2f653e26..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_193.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.193.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_193.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.193.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_194.sub b/test/ntuple_qcd_100_200/batch/condor_194.sub deleted file mode 100644 index c764ea20fd2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_194.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.194.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_194.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.194.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_195.sub b/test/ntuple_qcd_100_200/batch/condor_195.sub deleted file mode 100644 index eafb0f5535d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_195.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.195.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_195.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.195.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_196.sub b/test/ntuple_qcd_100_200/batch/condor_196.sub deleted file mode 100644 index ff1779a8354..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_196.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.196.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_196.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.196.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_197.sub b/test/ntuple_qcd_100_200/batch/condor_197.sub deleted file mode 100644 index f7c4f7c7e2c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_197.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.197.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_197.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.197.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_198.sub b/test/ntuple_qcd_100_200/batch/condor_198.sub deleted file mode 100644 index f234c5bd4b0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_198.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.198.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_198.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.198.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_199.sub b/test/ntuple_qcd_100_200/batch/condor_199.sub deleted file mode 100644 index 95a0747718b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_199.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.199.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_199.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.199.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_2.sub b/test/ntuple_qcd_100_200/batch/condor_2.sub deleted file mode 100644 index 8f8a3dc68a4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_20.sub b/test/ntuple_qcd_100_200/batch/condor_20.sub deleted file mode 100644 index 4965b8ba1e1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_200.sub b/test/ntuple_qcd_100_200/batch/condor_200.sub deleted file mode 100644 index de7b7a01fe2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_200.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.200.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_200.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.200.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_201.sub b/test/ntuple_qcd_100_200/batch/condor_201.sub deleted file mode 100644 index 95a18ff57e3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_201.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.201.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_201.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.201.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_202.sub b/test/ntuple_qcd_100_200/batch/condor_202.sub deleted file mode 100644 index 35316f88e1a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_202.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.202.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_202.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.202.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_203.sub b/test/ntuple_qcd_100_200/batch/condor_203.sub deleted file mode 100644 index 1de1045e2cd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_203.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.203.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_203.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.203.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_204.sub b/test/ntuple_qcd_100_200/batch/condor_204.sub deleted file mode 100644 index c411c23a840..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_204.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.204.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_204.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.204.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_205.sub b/test/ntuple_qcd_100_200/batch/condor_205.sub deleted file mode 100644 index 52f764c9dd0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_205.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.205.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_205.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.205.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_206.sub b/test/ntuple_qcd_100_200/batch/condor_206.sub deleted file mode 100644 index 7ce08292006..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_206.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.206.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_206.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.206.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_207.sub b/test/ntuple_qcd_100_200/batch/condor_207.sub deleted file mode 100644 index ffc10b02456..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_207.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.207.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_207.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.207.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_208.sub b/test/ntuple_qcd_100_200/batch/condor_208.sub deleted file mode 100644 index 2504fd672fc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_208.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.208.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_208.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.208.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_209.sub b/test/ntuple_qcd_100_200/batch/condor_209.sub deleted file mode 100644 index 480c581b41d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_209.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.209.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_209.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.209.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_21.sub b/test/ntuple_qcd_100_200/batch/condor_21.sub deleted file mode 100644 index 47d27eb163c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_210.sub b/test/ntuple_qcd_100_200/batch/condor_210.sub deleted file mode 100644 index 9d598604519..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_210.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.210.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_210.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.210.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_211.sub b/test/ntuple_qcd_100_200/batch/condor_211.sub deleted file mode 100644 index ff8ce33fc4a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_211.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.211.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_211.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.211.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_212.sub b/test/ntuple_qcd_100_200/batch/condor_212.sub deleted file mode 100644 index f2da60a81d2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_212.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.212.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_212.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.212.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_213.sub b/test/ntuple_qcd_100_200/batch/condor_213.sub deleted file mode 100644 index 85a12faa91f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_213.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.213.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_213.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.213.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_214.sub b/test/ntuple_qcd_100_200/batch/condor_214.sub deleted file mode 100644 index c6ec61a5a74..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_214.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.214.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_214.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.214.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_215.sub b/test/ntuple_qcd_100_200/batch/condor_215.sub deleted file mode 100644 index eec6d9ae008..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_215.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.215.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_215.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.215.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_216.sub b/test/ntuple_qcd_100_200/batch/condor_216.sub deleted file mode 100644 index 576d4b2abdd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_216.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.216.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_216.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.216.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_217.sub b/test/ntuple_qcd_100_200/batch/condor_217.sub deleted file mode 100644 index 72a1865213f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_217.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.217.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_217.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.217.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_218.sub b/test/ntuple_qcd_100_200/batch/condor_218.sub deleted file mode 100644 index 9188c75f19c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_218.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.218.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_218.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.218.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_219.sub b/test/ntuple_qcd_100_200/batch/condor_219.sub deleted file mode 100644 index 75105985047..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_219.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.219.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_219.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.219.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_22.sub b/test/ntuple_qcd_100_200/batch/condor_22.sub deleted file mode 100644 index 8a1fca1c2e9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_220.sub b/test/ntuple_qcd_100_200/batch/condor_220.sub deleted file mode 100644 index d2580a430dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_220.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.220.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_220.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.220.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_221.sub b/test/ntuple_qcd_100_200/batch/condor_221.sub deleted file mode 100644 index a59f8da9373..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_221.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.221.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_221.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.221.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_222.sub b/test/ntuple_qcd_100_200/batch/condor_222.sub deleted file mode 100644 index 9d00cc49532..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_222.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.222.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_222.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.222.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_223.sub b/test/ntuple_qcd_100_200/batch/condor_223.sub deleted file mode 100644 index 6c72b53f489..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_223.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.223.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_223.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.223.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_224.sub b/test/ntuple_qcd_100_200/batch/condor_224.sub deleted file mode 100644 index 3d3f3ed5de8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_224.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.224.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_224.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.224.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_225.sub b/test/ntuple_qcd_100_200/batch/condor_225.sub deleted file mode 100644 index 6319f359bbc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_225.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.225.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_225.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.225.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_226.sub b/test/ntuple_qcd_100_200/batch/condor_226.sub deleted file mode 100644 index f5dcbe2dd07..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_226.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.226.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_226.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.226.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_227.sub b/test/ntuple_qcd_100_200/batch/condor_227.sub deleted file mode 100644 index ac9bf74c553..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_227.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.227.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_227.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.227.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_228.sub b/test/ntuple_qcd_100_200/batch/condor_228.sub deleted file mode 100644 index 93136b7d007..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_228.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.228.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_228.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.228.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_229.sub b/test/ntuple_qcd_100_200/batch/condor_229.sub deleted file mode 100644 index 90f357f7f52..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_229.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.229.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_229.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.229.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_23.sub b/test/ntuple_qcd_100_200/batch/condor_23.sub deleted file mode 100644 index 87fbd626b49..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_230.sub b/test/ntuple_qcd_100_200/batch/condor_230.sub deleted file mode 100644 index 27faa234c6b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_230.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.230.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_230.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.230.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_231.sub b/test/ntuple_qcd_100_200/batch/condor_231.sub deleted file mode 100644 index e1e5e7a5a22..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_231.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.231.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_231.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.231.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_232.sub b/test/ntuple_qcd_100_200/batch/condor_232.sub deleted file mode 100644 index 0b537d5fd4e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_232.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.232.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_232.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.232.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_233.sub b/test/ntuple_qcd_100_200/batch/condor_233.sub deleted file mode 100644 index 644e51a8f07..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_233.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.233.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_233.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.233.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_234.sub b/test/ntuple_qcd_100_200/batch/condor_234.sub deleted file mode 100644 index a9c0e54e97c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_234.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.234.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_234.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.234.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_235.sub b/test/ntuple_qcd_100_200/batch/condor_235.sub deleted file mode 100644 index deb2240754a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_235.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.235.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_235.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.235.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_236.sub b/test/ntuple_qcd_100_200/batch/condor_236.sub deleted file mode 100644 index 6f7bfa69a66..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_236.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.236.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_236.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.236.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_237.sub b/test/ntuple_qcd_100_200/batch/condor_237.sub deleted file mode 100644 index 5716bf45a0a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_237.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.237.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_237.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.237.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_238.sub b/test/ntuple_qcd_100_200/batch/condor_238.sub deleted file mode 100644 index 01f0d45b65b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_238.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.238.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_238.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.238.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_239.sub b/test/ntuple_qcd_100_200/batch/condor_239.sub deleted file mode 100644 index df16da1cec7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_239.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.239.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_239.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.239.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_24.sub b/test/ntuple_qcd_100_200/batch/condor_24.sub deleted file mode 100644 index aee4aa2cc1f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_240.sub b/test/ntuple_qcd_100_200/batch/condor_240.sub deleted file mode 100644 index f71ddcb76e0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_240.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.240.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_240.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.240.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_241.sub b/test/ntuple_qcd_100_200/batch/condor_241.sub deleted file mode 100644 index 731cf8b8e8f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_241.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.241.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_241.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.241.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_242.sub b/test/ntuple_qcd_100_200/batch/condor_242.sub deleted file mode 100644 index a47fc2d66df..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_242.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.242.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_242.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.242.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_243.sub b/test/ntuple_qcd_100_200/batch/condor_243.sub deleted file mode 100644 index cffd419df94..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_243.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.243.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_243.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.243.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_244.sub b/test/ntuple_qcd_100_200/batch/condor_244.sub deleted file mode 100644 index 4b795bfa87d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_244.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.244.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_244.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.244.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_245.sub b/test/ntuple_qcd_100_200/batch/condor_245.sub deleted file mode 100644 index f919082e729..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_245.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.245.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_245.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.245.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_246.sub b/test/ntuple_qcd_100_200/batch/condor_246.sub deleted file mode 100644 index 8f368cd1713..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_246.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.246.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_246.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.246.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_247.sub b/test/ntuple_qcd_100_200/batch/condor_247.sub deleted file mode 100644 index 9615ec04a1b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_247.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.247.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_247.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.247.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_248.sub b/test/ntuple_qcd_100_200/batch/condor_248.sub deleted file mode 100644 index f4dc9b0d1c1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_248.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.248.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_248.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.248.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_249.sub b/test/ntuple_qcd_100_200/batch/condor_249.sub deleted file mode 100644 index 8b93da6d314..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_249.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.249.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_249.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.249.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_25.sub b/test/ntuple_qcd_100_200/batch/condor_25.sub deleted file mode 100644 index f5b40460ab8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_250.sub b/test/ntuple_qcd_100_200/batch/condor_250.sub deleted file mode 100644 index 33d789c503c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_250.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.250.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_250.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.250.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_251.sub b/test/ntuple_qcd_100_200/batch/condor_251.sub deleted file mode 100644 index b9960bda866..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_251.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.251.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_251.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.251.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_252.sub b/test/ntuple_qcd_100_200/batch/condor_252.sub deleted file mode 100644 index ca13154864a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_252.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.252.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_252.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.252.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_253.sub b/test/ntuple_qcd_100_200/batch/condor_253.sub deleted file mode 100644 index dae69dfcb2b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_253.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.253.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_253.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.253.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_254.sub b/test/ntuple_qcd_100_200/batch/condor_254.sub deleted file mode 100644 index d2b70942bfd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_254.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.254.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_254.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.254.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_255.sub b/test/ntuple_qcd_100_200/batch/condor_255.sub deleted file mode 100644 index 745b0fd3eef..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_255.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.255.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_255.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.255.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_256.sub b/test/ntuple_qcd_100_200/batch/condor_256.sub deleted file mode 100644 index 3d602fab1af..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_256.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.256.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_256.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.256.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_257.sub b/test/ntuple_qcd_100_200/batch/condor_257.sub deleted file mode 100644 index 1db4c270bde..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_257.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.257.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_257.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.257.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_258.sub b/test/ntuple_qcd_100_200/batch/condor_258.sub deleted file mode 100644 index 4e590ce903d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_258.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.258.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_258.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.258.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_259.sub b/test/ntuple_qcd_100_200/batch/condor_259.sub deleted file mode 100644 index 62942b6b15d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_259.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.259.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_259.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.259.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_26.sub b/test/ntuple_qcd_100_200/batch/condor_26.sub deleted file mode 100644 index df6935db8dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_260.sub b/test/ntuple_qcd_100_200/batch/condor_260.sub deleted file mode 100644 index 0b0bf24f7c5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_260.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.260.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_260.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.260.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_261.sub b/test/ntuple_qcd_100_200/batch/condor_261.sub deleted file mode 100644 index fcf7d118a7b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_261.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.261.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_261.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.261.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_262.sub b/test/ntuple_qcd_100_200/batch/condor_262.sub deleted file mode 100644 index ec8acf2e86d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_262.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.262.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_262.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.262.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_263.sub b/test/ntuple_qcd_100_200/batch/condor_263.sub deleted file mode 100644 index 3680cc679d3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_263.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.263.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_263.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.263.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_264.sub b/test/ntuple_qcd_100_200/batch/condor_264.sub deleted file mode 100644 index 3f5c6223b06..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_264.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.264.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_264.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.264.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_265.sub b/test/ntuple_qcd_100_200/batch/condor_265.sub deleted file mode 100644 index b4fcbfda4e2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_265.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.265.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_265.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.265.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_266.sub b/test/ntuple_qcd_100_200/batch/condor_266.sub deleted file mode 100644 index 4fa72a05476..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_266.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.266.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_266.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.266.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_267.sub b/test/ntuple_qcd_100_200/batch/condor_267.sub deleted file mode 100644 index 35f4af618c0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_267.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.267.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_267.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.267.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_268.sub b/test/ntuple_qcd_100_200/batch/condor_268.sub deleted file mode 100644 index da00253ffc4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_268.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.268.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_268.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.268.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_269.sub b/test/ntuple_qcd_100_200/batch/condor_269.sub deleted file mode 100644 index 5f1b6cdfd12..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_269.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.269.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_269.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.269.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_27.sub b/test/ntuple_qcd_100_200/batch/condor_27.sub deleted file mode 100644 index 291f9290ebc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_270.sub b/test/ntuple_qcd_100_200/batch/condor_270.sub deleted file mode 100644 index 5e399a6a5df..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_270.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.270.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_270.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.270.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_271.sub b/test/ntuple_qcd_100_200/batch/condor_271.sub deleted file mode 100644 index 8bdb71ac219..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_271.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.271.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_271.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.271.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_272.sub b/test/ntuple_qcd_100_200/batch/condor_272.sub deleted file mode 100644 index 1e8f0253c4c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_272.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.272.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_272.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.272.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_273.sub b/test/ntuple_qcd_100_200/batch/condor_273.sub deleted file mode 100644 index 73be1d6f92f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_273.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.273.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_273.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.273.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_274.sub b/test/ntuple_qcd_100_200/batch/condor_274.sub deleted file mode 100644 index 5ed3960967d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_274.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.274.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_274.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.274.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_275.sub b/test/ntuple_qcd_100_200/batch/condor_275.sub deleted file mode 100644 index e7a4c5f3dfc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_275.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.275.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_275.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.275.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_276.sub b/test/ntuple_qcd_100_200/batch/condor_276.sub deleted file mode 100644 index c877285c260..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_276.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.276.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_276.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.276.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_277.sub b/test/ntuple_qcd_100_200/batch/condor_277.sub deleted file mode 100644 index c462f1dec5d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_277.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.277.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_277.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.277.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_278.sub b/test/ntuple_qcd_100_200/batch/condor_278.sub deleted file mode 100644 index f7336cf2689..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_278.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.278.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_278.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.278.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_279.sub b/test/ntuple_qcd_100_200/batch/condor_279.sub deleted file mode 100644 index 37e46125c07..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_279.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.279.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_279.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.279.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_28.sub b/test/ntuple_qcd_100_200/batch/condor_28.sub deleted file mode 100644 index 6aa85f0eaf4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_280.sub b/test/ntuple_qcd_100_200/batch/condor_280.sub deleted file mode 100644 index a80476da68a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_280.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.280.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_280.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.280.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_281.sub b/test/ntuple_qcd_100_200/batch/condor_281.sub deleted file mode 100644 index 078eac15fa8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_281.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.281.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_281.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.281.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_282.sub b/test/ntuple_qcd_100_200/batch/condor_282.sub deleted file mode 100644 index f4b9f613869..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_282.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.282.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_282.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.282.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_283.sub b/test/ntuple_qcd_100_200/batch/condor_283.sub deleted file mode 100644 index 1f522ec94c4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_283.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.283.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_283.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.283.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_284.sub b/test/ntuple_qcd_100_200/batch/condor_284.sub deleted file mode 100644 index 6da896cc4b3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_284.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.284.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_284.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.284.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_285.sub b/test/ntuple_qcd_100_200/batch/condor_285.sub deleted file mode 100644 index 7d0b92eace1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_285.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.285.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_285.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.285.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_286.sub b/test/ntuple_qcd_100_200/batch/condor_286.sub deleted file mode 100644 index aeb22f21a24..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_286.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.286.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_286.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.286.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_287.sub b/test/ntuple_qcd_100_200/batch/condor_287.sub deleted file mode 100644 index bfcf781b299..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_287.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.287.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_287.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.287.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_288.sub b/test/ntuple_qcd_100_200/batch/condor_288.sub deleted file mode 100644 index f5e778500d8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_288.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.288.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_288.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.288.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_289.sub b/test/ntuple_qcd_100_200/batch/condor_289.sub deleted file mode 100644 index 63e7d4b1e64..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_289.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.289.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_289.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.289.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_29.sub b/test/ntuple_qcd_100_200/batch/condor_29.sub deleted file mode 100644 index 5102ec43062..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_290.sub b/test/ntuple_qcd_100_200/batch/condor_290.sub deleted file mode 100644 index c470f3678ed..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_290.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.290.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_290.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.290.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_291.sub b/test/ntuple_qcd_100_200/batch/condor_291.sub deleted file mode 100644 index 6a419a7824b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_291.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.291.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_291.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.291.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_292.sub b/test/ntuple_qcd_100_200/batch/condor_292.sub deleted file mode 100644 index 8dd6748b4dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_292.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.292.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_292.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.292.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_293.sub b/test/ntuple_qcd_100_200/batch/condor_293.sub deleted file mode 100644 index 8cf6a9cc5d1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_293.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.293.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_293.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.293.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_294.sub b/test/ntuple_qcd_100_200/batch/condor_294.sub deleted file mode 100644 index 3ec34985e69..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_294.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.294.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_294.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.294.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_295.sub b/test/ntuple_qcd_100_200/batch/condor_295.sub deleted file mode 100644 index 1888edb2ad3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_295.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.295.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_295.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.295.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_296.sub b/test/ntuple_qcd_100_200/batch/condor_296.sub deleted file mode 100644 index 9f31d7a968f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_296.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.296.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_296.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.296.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_297.sub b/test/ntuple_qcd_100_200/batch/condor_297.sub deleted file mode 100644 index 1f6e18f1f51..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_297.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.297.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_297.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.297.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_298.sub b/test/ntuple_qcd_100_200/batch/condor_298.sub deleted file mode 100644 index 5f820b4e30f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_298.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.298.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_298.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.298.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_299.sub b/test/ntuple_qcd_100_200/batch/condor_299.sub deleted file mode 100644 index 9600945b9db..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_299.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.299.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_299.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.299.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_3.sub b/test/ntuple_qcd_100_200/batch/condor_3.sub deleted file mode 100644 index b46a16d5297..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_30.sub b/test/ntuple_qcd_100_200/batch/condor_30.sub deleted file mode 100644 index d3d013c3ec6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_300.sub b/test/ntuple_qcd_100_200/batch/condor_300.sub deleted file mode 100644 index 669a1c80a45..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_300.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.300.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_300.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.300.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_301.sub b/test/ntuple_qcd_100_200/batch/condor_301.sub deleted file mode 100644 index 831f50d0bb8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_301.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.301.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_301.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.301.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_302.sub b/test/ntuple_qcd_100_200/batch/condor_302.sub deleted file mode 100644 index e145b7d021f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_302.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.302.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_302.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.302.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_303.sub b/test/ntuple_qcd_100_200/batch/condor_303.sub deleted file mode 100644 index 58e2c4e0f00..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_303.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.303.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_303.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.303.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_304.sub b/test/ntuple_qcd_100_200/batch/condor_304.sub deleted file mode 100644 index 0639a33cf87..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_304.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.304.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_304.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.304.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_305.sub b/test/ntuple_qcd_100_200/batch/condor_305.sub deleted file mode 100644 index b720e8036ac..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_305.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.305.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_305.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.305.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_306.sub b/test/ntuple_qcd_100_200/batch/condor_306.sub deleted file mode 100644 index 89246fbcab8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_306.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.306.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_306.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.306.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_307.sub b/test/ntuple_qcd_100_200/batch/condor_307.sub deleted file mode 100644 index 9eea1c5fc6e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_307.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.307.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_307.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.307.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_308.sub b/test/ntuple_qcd_100_200/batch/condor_308.sub deleted file mode 100644 index 794324fd533..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_308.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.308.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_308.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.308.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_309.sub b/test/ntuple_qcd_100_200/batch/condor_309.sub deleted file mode 100644 index fb35f791828..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_309.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.309.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_309.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.309.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_31.sub b/test/ntuple_qcd_100_200/batch/condor_31.sub deleted file mode 100644 index f275d81527f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_310.sub b/test/ntuple_qcd_100_200/batch/condor_310.sub deleted file mode 100644 index e408fe7c0bd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_310.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.310.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_310.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.310.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_311.sub b/test/ntuple_qcd_100_200/batch/condor_311.sub deleted file mode 100644 index 99ff59e9baf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_311.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.311.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_311.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.311.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_312.sub b/test/ntuple_qcd_100_200/batch/condor_312.sub deleted file mode 100644 index f64eb08db25..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_312.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.312.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_312.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.312.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_313.sub b/test/ntuple_qcd_100_200/batch/condor_313.sub deleted file mode 100644 index 044dd105fb6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_313.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.313.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_313.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.313.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_314.sub b/test/ntuple_qcd_100_200/batch/condor_314.sub deleted file mode 100644 index 4ca3a38b6f4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_314.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.314.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_314.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.314.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_315.sub b/test/ntuple_qcd_100_200/batch/condor_315.sub deleted file mode 100644 index 4b9f85c2b27..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_315.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.315.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_315.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.315.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_316.sub b/test/ntuple_qcd_100_200/batch/condor_316.sub deleted file mode 100644 index a8369a65cdb..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_316.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.316.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_316.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.316.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_317.sub b/test/ntuple_qcd_100_200/batch/condor_317.sub deleted file mode 100644 index c532458702c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_317.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.317.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_317.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.317.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_318.sub b/test/ntuple_qcd_100_200/batch/condor_318.sub deleted file mode 100644 index 216f554c53a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_318.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.318.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_318.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.318.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_319.sub b/test/ntuple_qcd_100_200/batch/condor_319.sub deleted file mode 100644 index 02a29fd2300..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_319.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.319.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_319.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.319.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_32.sub b/test/ntuple_qcd_100_200/batch/condor_32.sub deleted file mode 100644 index 7f67637a444..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_320.sub b/test/ntuple_qcd_100_200/batch/condor_320.sub deleted file mode 100644 index 349873d2be8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_320.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.320.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_320.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.320.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_321.sub b/test/ntuple_qcd_100_200/batch/condor_321.sub deleted file mode 100644 index 4a43b4880dd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_321.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.321.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_321.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.321.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_322.sub b/test/ntuple_qcd_100_200/batch/condor_322.sub deleted file mode 100644 index 1abb4c603f6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_322.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.322.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_322.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.322.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_323.sub b/test/ntuple_qcd_100_200/batch/condor_323.sub deleted file mode 100644 index 5da87aa79c3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_323.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.323.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_323.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.323.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_324.sub b/test/ntuple_qcd_100_200/batch/condor_324.sub deleted file mode 100644 index a79a24a0ecf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_324.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.324.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_324.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.324.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_325.sub b/test/ntuple_qcd_100_200/batch/condor_325.sub deleted file mode 100644 index 67fb4adf36d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_325.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.325.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_325.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.325.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_326.sub b/test/ntuple_qcd_100_200/batch/condor_326.sub deleted file mode 100644 index 35d4f592327..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_326.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.326.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_326.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.326.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_327.sub b/test/ntuple_qcd_100_200/batch/condor_327.sub deleted file mode 100644 index 2b1abfd8ddf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_327.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.327.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_327.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.327.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_328.sub b/test/ntuple_qcd_100_200/batch/condor_328.sub deleted file mode 100644 index f2cda5f5007..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_328.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.328.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_328.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.328.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_329.sub b/test/ntuple_qcd_100_200/batch/condor_329.sub deleted file mode 100644 index 248aa768763..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_329.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.329.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_329.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.329.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_33.sub b/test/ntuple_qcd_100_200/batch/condor_33.sub deleted file mode 100644 index d02b946e11b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_330.sub b/test/ntuple_qcd_100_200/batch/condor_330.sub deleted file mode 100644 index 47623e16ee6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_330.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.330.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_330.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.330.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_331.sub b/test/ntuple_qcd_100_200/batch/condor_331.sub deleted file mode 100644 index dce336e7402..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_331.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.331.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_331.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.331.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_332.sub b/test/ntuple_qcd_100_200/batch/condor_332.sub deleted file mode 100644 index e26b6cc5f88..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_332.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.332.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_332.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.332.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_333.sub b/test/ntuple_qcd_100_200/batch/condor_333.sub deleted file mode 100644 index b785a701c60..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_333.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.333.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_333.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.333.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_334.sub b/test/ntuple_qcd_100_200/batch/condor_334.sub deleted file mode 100644 index 9170bc31416..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_334.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.334.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_334.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.334.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_335.sub b/test/ntuple_qcd_100_200/batch/condor_335.sub deleted file mode 100644 index 95977fb5e86..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_335.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.335.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_335.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.335.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_336.sub b/test/ntuple_qcd_100_200/batch/condor_336.sub deleted file mode 100644 index c4a9f7e31a8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_336.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.336.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_336.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.336.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_337.sub b/test/ntuple_qcd_100_200/batch/condor_337.sub deleted file mode 100644 index 4a93ef3f606..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_337.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.337.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_337.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.337.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_338.sub b/test/ntuple_qcd_100_200/batch/condor_338.sub deleted file mode 100644 index 042a32aa069..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_338.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.338.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_338.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.338.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_339.sub b/test/ntuple_qcd_100_200/batch/condor_339.sub deleted file mode 100644 index 468c6751c9c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_339.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.339.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_339.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.339.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_34.sub b/test/ntuple_qcd_100_200/batch/condor_34.sub deleted file mode 100644 index 0bf5677afe9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_340.sub b/test/ntuple_qcd_100_200/batch/condor_340.sub deleted file mode 100644 index 93ef62bacb5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_340.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.340.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_340.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.340.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_341.sub b/test/ntuple_qcd_100_200/batch/condor_341.sub deleted file mode 100644 index d82218855fe..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_341.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.341.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_341.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.341.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_342.sub b/test/ntuple_qcd_100_200/batch/condor_342.sub deleted file mode 100644 index 6e2c64af51d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_342.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.342.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_342.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.342.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_343.sub b/test/ntuple_qcd_100_200/batch/condor_343.sub deleted file mode 100644 index c418b1c5a6d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_343.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.343.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_343.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.343.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_344.sub b/test/ntuple_qcd_100_200/batch/condor_344.sub deleted file mode 100644 index afa568a1314..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_344.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.344.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_344.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.344.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_345.sub b/test/ntuple_qcd_100_200/batch/condor_345.sub deleted file mode 100644 index 1c5a5c9e8df..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_345.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.345.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_345.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.345.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_346.sub b/test/ntuple_qcd_100_200/batch/condor_346.sub deleted file mode 100644 index 4cd1aba1fde..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_346.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.346.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_346.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.346.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_347.sub b/test/ntuple_qcd_100_200/batch/condor_347.sub deleted file mode 100644 index 2673c0df115..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_347.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.347.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_347.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.347.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_348.sub b/test/ntuple_qcd_100_200/batch/condor_348.sub deleted file mode 100644 index 0342dde82c8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_348.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.348.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_348.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.348.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_349.sub b/test/ntuple_qcd_100_200/batch/condor_349.sub deleted file mode 100644 index 656d15c20c6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_349.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.349.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_349.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.349.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_35.sub b/test/ntuple_qcd_100_200/batch/condor_35.sub deleted file mode 100644 index dee7d68a6ee..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_350.sub b/test/ntuple_qcd_100_200/batch/condor_350.sub deleted file mode 100644 index 71d98f9417d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_350.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.350.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_350.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.350.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_351.sub b/test/ntuple_qcd_100_200/batch/condor_351.sub deleted file mode 100644 index 5a4d245f500..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_351.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.351.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_351.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.351.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_352.sub b/test/ntuple_qcd_100_200/batch/condor_352.sub deleted file mode 100644 index 4e578a83651..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_352.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.352.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_352.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.352.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_353.sub b/test/ntuple_qcd_100_200/batch/condor_353.sub deleted file mode 100644 index 407f8954210..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_353.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.353.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_353.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.353.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_354.sub b/test/ntuple_qcd_100_200/batch/condor_354.sub deleted file mode 100644 index 01b0bf031a5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_354.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.354.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_354.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.354.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_355.sub b/test/ntuple_qcd_100_200/batch/condor_355.sub deleted file mode 100644 index 03ee66d3aa2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_355.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.355.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_355.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.355.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_356.sub b/test/ntuple_qcd_100_200/batch/condor_356.sub deleted file mode 100644 index a1d7937742d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_356.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.356.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_356.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.356.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_357.sub b/test/ntuple_qcd_100_200/batch/condor_357.sub deleted file mode 100644 index ddbaa3a994f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_357.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.357.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_357.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.357.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_358.sub b/test/ntuple_qcd_100_200/batch/condor_358.sub deleted file mode 100644 index 919a444d9b8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_358.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.358.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_358.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.358.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_359.sub b/test/ntuple_qcd_100_200/batch/condor_359.sub deleted file mode 100644 index 2b6e8703b93..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_359.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.359.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_359.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.359.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_36.sub b/test/ntuple_qcd_100_200/batch/condor_36.sub deleted file mode 100644 index 9fa8429ff2a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_360.sub b/test/ntuple_qcd_100_200/batch/condor_360.sub deleted file mode 100644 index 76e64fd240e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_360.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.360.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_360.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.360.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_361.sub b/test/ntuple_qcd_100_200/batch/condor_361.sub deleted file mode 100644 index 50063f391cd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_361.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.361.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_361.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.361.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_362.sub b/test/ntuple_qcd_100_200/batch/condor_362.sub deleted file mode 100644 index 86c91be855d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_362.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.362.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_362.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.362.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_363.sub b/test/ntuple_qcd_100_200/batch/condor_363.sub deleted file mode 100644 index 874ccd5b16f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_363.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.363.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_363.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.363.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_364.sub b/test/ntuple_qcd_100_200/batch/condor_364.sub deleted file mode 100644 index 1deeada9e41..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_364.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.364.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_364.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.364.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_365.sub b/test/ntuple_qcd_100_200/batch/condor_365.sub deleted file mode 100644 index 4413723f837..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_365.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.365.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_365.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.365.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_366.sub b/test/ntuple_qcd_100_200/batch/condor_366.sub deleted file mode 100644 index 6dafa617696..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_366.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.366.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_366.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.366.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_367.sub b/test/ntuple_qcd_100_200/batch/condor_367.sub deleted file mode 100644 index 15f61cde5dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_367.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.367.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_367.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.367.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_368.sub b/test/ntuple_qcd_100_200/batch/condor_368.sub deleted file mode 100644 index df2fbd7cea7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_368.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.368.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_368.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.368.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_369.sub b/test/ntuple_qcd_100_200/batch/condor_369.sub deleted file mode 100644 index c5f5eea9168..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_369.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.369.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_369.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.369.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_37.sub b/test/ntuple_qcd_100_200/batch/condor_37.sub deleted file mode 100644 index e7d9d18353a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_370.sub b/test/ntuple_qcd_100_200/batch/condor_370.sub deleted file mode 100644 index 0704d274765..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_370.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.370.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_370.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.370.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_371.sub b/test/ntuple_qcd_100_200/batch/condor_371.sub deleted file mode 100644 index 3d4ce641547..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_371.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.371.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_371.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.371.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_372.sub b/test/ntuple_qcd_100_200/batch/condor_372.sub deleted file mode 100644 index c6147ecaaf7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_372.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.372.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_372.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.372.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_373.sub b/test/ntuple_qcd_100_200/batch/condor_373.sub deleted file mode 100644 index 5a0d1c7aae7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_373.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.373.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_373.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.373.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_374.sub b/test/ntuple_qcd_100_200/batch/condor_374.sub deleted file mode 100644 index 6c1c5f40a8f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_374.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.374.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_374.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.374.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_375.sub b/test/ntuple_qcd_100_200/batch/condor_375.sub deleted file mode 100644 index 51067d952fa..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_375.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.375.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_375.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.375.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_376.sub b/test/ntuple_qcd_100_200/batch/condor_376.sub deleted file mode 100644 index 4ffa550b749..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_376.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.376.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_376.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.376.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_377.sub b/test/ntuple_qcd_100_200/batch/condor_377.sub deleted file mode 100644 index 8bbc909c32c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_377.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.377.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_377.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.377.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_378.sub b/test/ntuple_qcd_100_200/batch/condor_378.sub deleted file mode 100644 index 8844ba5b252..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_378.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.378.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_378.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.378.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_379.sub b/test/ntuple_qcd_100_200/batch/condor_379.sub deleted file mode 100644 index 79fd5c0af1a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_379.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.379.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_379.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.379.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_38.sub b/test/ntuple_qcd_100_200/batch/condor_38.sub deleted file mode 100644 index d3254b9f969..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_380.sub b/test/ntuple_qcd_100_200/batch/condor_380.sub deleted file mode 100644 index b158368f290..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_380.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.380.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_380.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.380.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_381.sub b/test/ntuple_qcd_100_200/batch/condor_381.sub deleted file mode 100644 index e881164abff..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_381.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.381.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_381.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.381.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_382.sub b/test/ntuple_qcd_100_200/batch/condor_382.sub deleted file mode 100644 index c79c9e1f4b7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_382.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.382.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_382.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.382.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_383.sub b/test/ntuple_qcd_100_200/batch/condor_383.sub deleted file mode 100644 index 8d65f443e6b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_383.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.383.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_383.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.383.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_384.sub b/test/ntuple_qcd_100_200/batch/condor_384.sub deleted file mode 100644 index d3c1bcf5e68..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_384.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.384.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_384.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.384.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_385.sub b/test/ntuple_qcd_100_200/batch/condor_385.sub deleted file mode 100644 index df28ea36f6e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_385.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.385.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_385.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.385.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_386.sub b/test/ntuple_qcd_100_200/batch/condor_386.sub deleted file mode 100644 index 52166cdb2e9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_386.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.386.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_386.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.386.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_387.sub b/test/ntuple_qcd_100_200/batch/condor_387.sub deleted file mode 100644 index 59b8474846a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_387.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.387.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_387.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.387.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_388.sub b/test/ntuple_qcd_100_200/batch/condor_388.sub deleted file mode 100644 index e56d23efe96..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_388.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.388.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_388.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.388.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_389.sub b/test/ntuple_qcd_100_200/batch/condor_389.sub deleted file mode 100644 index 3facf62e27d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_389.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.389.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_389.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.389.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_39.sub b/test/ntuple_qcd_100_200/batch/condor_39.sub deleted file mode 100644 index 81de555d0bc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_390.sub b/test/ntuple_qcd_100_200/batch/condor_390.sub deleted file mode 100644 index df46b72fbe6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_390.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.390.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_390.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.390.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_391.sub b/test/ntuple_qcd_100_200/batch/condor_391.sub deleted file mode 100644 index 2fb0e2b151e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_391.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.391.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_391.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.391.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_392.sub b/test/ntuple_qcd_100_200/batch/condor_392.sub deleted file mode 100644 index 88a3df584dd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_392.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.392.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_392.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.392.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_393.sub b/test/ntuple_qcd_100_200/batch/condor_393.sub deleted file mode 100644 index 18b4eef9890..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_393.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.393.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_393.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.393.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_394.sub b/test/ntuple_qcd_100_200/batch/condor_394.sub deleted file mode 100644 index 744ee43a450..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_394.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.394.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_394.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.394.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_395.sub b/test/ntuple_qcd_100_200/batch/condor_395.sub deleted file mode 100644 index 3cc20300146..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_395.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.395.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_395.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.395.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_396.sub b/test/ntuple_qcd_100_200/batch/condor_396.sub deleted file mode 100644 index df6d6fa481a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_396.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.396.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_396.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.396.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_397.sub b/test/ntuple_qcd_100_200/batch/condor_397.sub deleted file mode 100644 index 03eee608219..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_397.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.397.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_397.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.397.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_398.sub b/test/ntuple_qcd_100_200/batch/condor_398.sub deleted file mode 100644 index 8f9f06159f6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_398.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.398.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_398.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.398.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_399.sub b/test/ntuple_qcd_100_200/batch/condor_399.sub deleted file mode 100644 index a11d29eaebf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_399.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.399.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_399.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.399.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_4.sub b/test/ntuple_qcd_100_200/batch/condor_4.sub deleted file mode 100644 index 02c68c56e02..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_40.sub b/test/ntuple_qcd_100_200/batch/condor_40.sub deleted file mode 100644 index 291c4658fe8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_400.sub b/test/ntuple_qcd_100_200/batch/condor_400.sub deleted file mode 100644 index 4e26fec6c7e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_400.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.400.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_400.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.400.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_401.sub b/test/ntuple_qcd_100_200/batch/condor_401.sub deleted file mode 100644 index 4b0d26ef5f2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_401.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.401.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_401.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.401.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_402.sub b/test/ntuple_qcd_100_200/batch/condor_402.sub deleted file mode 100644 index 04e4c2946d2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_402.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.402.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_402.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.402.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_403.sub b/test/ntuple_qcd_100_200/batch/condor_403.sub deleted file mode 100644 index 888dd46dd4f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_403.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.403.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_403.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.403.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_404.sub b/test/ntuple_qcd_100_200/batch/condor_404.sub deleted file mode 100644 index 1e4d842139f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_404.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.404.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_404.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.404.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_405.sub b/test/ntuple_qcd_100_200/batch/condor_405.sub deleted file mode 100644 index ed550f98318..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_405.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.405.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_405.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.405.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_406.sub b/test/ntuple_qcd_100_200/batch/condor_406.sub deleted file mode 100644 index 306d3c916f4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_406.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.406.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_406.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.406.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_407.sub b/test/ntuple_qcd_100_200/batch/condor_407.sub deleted file mode 100644 index 1919bb2d9fe..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_407.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.407.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_407.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.407.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_408.sub b/test/ntuple_qcd_100_200/batch/condor_408.sub deleted file mode 100644 index 597eff1a10f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_408.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.408.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_408.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.408.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_409.sub b/test/ntuple_qcd_100_200/batch/condor_409.sub deleted file mode 100644 index 23ddd2736b4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_409.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.409.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_409.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.409.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_41.sub b/test/ntuple_qcd_100_200/batch/condor_41.sub deleted file mode 100644 index e8c41c5f6b2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_410.sub b/test/ntuple_qcd_100_200/batch/condor_410.sub deleted file mode 100644 index 8a1cf60a2ce..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_410.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.410.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_410.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.410.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_411.sub b/test/ntuple_qcd_100_200/batch/condor_411.sub deleted file mode 100644 index 68d93df4115..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_411.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.411.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_411.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.411.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_412.sub b/test/ntuple_qcd_100_200/batch/condor_412.sub deleted file mode 100644 index 99c1d625f68..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_412.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.412.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_412.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.412.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_413.sub b/test/ntuple_qcd_100_200/batch/condor_413.sub deleted file mode 100644 index 9c8d2f957ef..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_413.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.413.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_413.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.413.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_414.sub b/test/ntuple_qcd_100_200/batch/condor_414.sub deleted file mode 100644 index 361e2e4bdcd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_414.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.414.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_414.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.414.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_415.sub b/test/ntuple_qcd_100_200/batch/condor_415.sub deleted file mode 100644 index 9fec6deda9f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_415.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.415.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_415.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.415.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_416.sub b/test/ntuple_qcd_100_200/batch/condor_416.sub deleted file mode 100644 index e373188c938..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_416.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.416.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_416.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.416.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_417.sub b/test/ntuple_qcd_100_200/batch/condor_417.sub deleted file mode 100644 index a4fd65fc516..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_417.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.417.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_417.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.417.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_418.sub b/test/ntuple_qcd_100_200/batch/condor_418.sub deleted file mode 100644 index 08a7ddf7bd4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_418.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.418.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_418.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.418.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_419.sub b/test/ntuple_qcd_100_200/batch/condor_419.sub deleted file mode 100644 index e067de3e8bd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_419.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.419.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_419.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.419.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_42.sub b/test/ntuple_qcd_100_200/batch/condor_42.sub deleted file mode 100644 index 4604d16125d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_420.sub b/test/ntuple_qcd_100_200/batch/condor_420.sub deleted file mode 100644 index f6eea55adb5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_420.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.420.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_420.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.420.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_421.sub b/test/ntuple_qcd_100_200/batch/condor_421.sub deleted file mode 100644 index a04a25830e0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_421.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.421.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_421.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.421.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_422.sub b/test/ntuple_qcd_100_200/batch/condor_422.sub deleted file mode 100644 index 1ee13e880c9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_422.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.422.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_422.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.422.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_423.sub b/test/ntuple_qcd_100_200/batch/condor_423.sub deleted file mode 100644 index d833076c743..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_423.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.423.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_423.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.423.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_424.sub b/test/ntuple_qcd_100_200/batch/condor_424.sub deleted file mode 100644 index ace0872e9f4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_424.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.424.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_424.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.424.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_425.sub b/test/ntuple_qcd_100_200/batch/condor_425.sub deleted file mode 100644 index 51e47071fa0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_425.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.425.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_425.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.425.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_426.sub b/test/ntuple_qcd_100_200/batch/condor_426.sub deleted file mode 100644 index c1b26892e85..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_426.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.426.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_426.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.426.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_427.sub b/test/ntuple_qcd_100_200/batch/condor_427.sub deleted file mode 100644 index fada5ab337d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_427.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.427.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_427.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.427.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_428.sub b/test/ntuple_qcd_100_200/batch/condor_428.sub deleted file mode 100644 index d81e4502db2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_428.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.428.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_428.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.428.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_429.sub b/test/ntuple_qcd_100_200/batch/condor_429.sub deleted file mode 100644 index 402311da5cf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_429.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.429.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_429.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.429.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_43.sub b/test/ntuple_qcd_100_200/batch/condor_43.sub deleted file mode 100644 index 345cac9d4d8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_430.sub b/test/ntuple_qcd_100_200/batch/condor_430.sub deleted file mode 100644 index 33ce56f8bab..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_430.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.430.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_430.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.430.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_431.sub b/test/ntuple_qcd_100_200/batch/condor_431.sub deleted file mode 100644 index f6ca3ff23f1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_431.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.431.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_431.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.431.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_432.sub b/test/ntuple_qcd_100_200/batch/condor_432.sub deleted file mode 100644 index 6d618db8622..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_432.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.432.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_432.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.432.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_433.sub b/test/ntuple_qcd_100_200/batch/condor_433.sub deleted file mode 100644 index f0c66e893a2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_433.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.433.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_433.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.433.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_434.sub b/test/ntuple_qcd_100_200/batch/condor_434.sub deleted file mode 100644 index a251adadac4..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_434.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.434.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_434.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.434.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_435.sub b/test/ntuple_qcd_100_200/batch/condor_435.sub deleted file mode 100644 index 0f603e2df93..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_435.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.435.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_435.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.435.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_436.sub b/test/ntuple_qcd_100_200/batch/condor_436.sub deleted file mode 100644 index 671ed7c1392..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_436.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.436.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_436.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.436.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_437.sub b/test/ntuple_qcd_100_200/batch/condor_437.sub deleted file mode 100644 index ac25c3deeb8..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_437.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.437.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_437.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.437.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_438.sub b/test/ntuple_qcd_100_200/batch/condor_438.sub deleted file mode 100644 index ce2df726e75..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_438.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.438.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_438.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.438.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_439.sub b/test/ntuple_qcd_100_200/batch/condor_439.sub deleted file mode 100644 index c773e32e5e0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_439.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.439.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_439.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.439.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_44.sub b/test/ntuple_qcd_100_200/batch/condor_44.sub deleted file mode 100644 index 1a928f474ce..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_440.sub b/test/ntuple_qcd_100_200/batch/condor_440.sub deleted file mode 100644 index 37b51a38274..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_440.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.440.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_440.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.440.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_441.sub b/test/ntuple_qcd_100_200/batch/condor_441.sub deleted file mode 100644 index 3861db3475a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_441.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.441.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_441.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.441.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_442.sub b/test/ntuple_qcd_100_200/batch/condor_442.sub deleted file mode 100644 index 3fb95681c86..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_442.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.442.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_442.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.442.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_443.sub b/test/ntuple_qcd_100_200/batch/condor_443.sub deleted file mode 100644 index 51c1fcf51c1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_443.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.443.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_443.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.443.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_444.sub b/test/ntuple_qcd_100_200/batch/condor_444.sub deleted file mode 100644 index 09ee443c4bd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_444.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.444.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_444.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.444.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_445.sub b/test/ntuple_qcd_100_200/batch/condor_445.sub deleted file mode 100644 index 36d5633f008..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_445.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.445.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_445.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.445.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_446.sub b/test/ntuple_qcd_100_200/batch/condor_446.sub deleted file mode 100644 index a045d606761..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_446.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.446.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_446.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.446.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_447.sub b/test/ntuple_qcd_100_200/batch/condor_447.sub deleted file mode 100644 index caf2930df85..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_447.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.447.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_447.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.447.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_448.sub b/test/ntuple_qcd_100_200/batch/condor_448.sub deleted file mode 100644 index 92910797baf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_448.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.448.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_448.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.448.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_449.sub b/test/ntuple_qcd_100_200/batch/condor_449.sub deleted file mode 100644 index 7e9f7d786a0..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_449.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.449.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_449.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.449.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_45.sub b/test/ntuple_qcd_100_200/batch/condor_45.sub deleted file mode 100644 index dec540c5d90..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_450.sub b/test/ntuple_qcd_100_200/batch/condor_450.sub deleted file mode 100644 index 1216d0e2e45..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_450.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.450.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_450.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.450.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_451.sub b/test/ntuple_qcd_100_200/batch/condor_451.sub deleted file mode 100644 index 0c2b0d85a0a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_451.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.451.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_451.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.451.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_452.sub b/test/ntuple_qcd_100_200/batch/condor_452.sub deleted file mode 100644 index b7a947eb003..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_452.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.452.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_452.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.452.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_453.sub b/test/ntuple_qcd_100_200/batch/condor_453.sub deleted file mode 100644 index 15f7b727c36..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_453.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.453.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_453.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.453.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_454.sub b/test/ntuple_qcd_100_200/batch/condor_454.sub deleted file mode 100644 index a53a1bc38a3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_454.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.454.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_454.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.454.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_455.sub b/test/ntuple_qcd_100_200/batch/condor_455.sub deleted file mode 100644 index 277519bb888..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_455.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.455.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_455.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.455.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_456.sub b/test/ntuple_qcd_100_200/batch/condor_456.sub deleted file mode 100644 index d4ff259c31a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_456.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.456.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_456.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.456.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_457.sub b/test/ntuple_qcd_100_200/batch/condor_457.sub deleted file mode 100644 index ab7fdc73f18..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_457.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.457.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_457.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.457.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_458.sub b/test/ntuple_qcd_100_200/batch/condor_458.sub deleted file mode 100644 index 7ad4596ee10..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_458.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.458.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_458.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.458.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_459.sub b/test/ntuple_qcd_100_200/batch/condor_459.sub deleted file mode 100644 index 247ce1fce12..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_459.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.459.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_459.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.459.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_46.sub b/test/ntuple_qcd_100_200/batch/condor_46.sub deleted file mode 100644 index 86e37069942..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_460.sub b/test/ntuple_qcd_100_200/batch/condor_460.sub deleted file mode 100644 index 8c427957774..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_460.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.460.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_460.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.460.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_461.sub b/test/ntuple_qcd_100_200/batch/condor_461.sub deleted file mode 100644 index b4aed19aae2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_461.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.461.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_461.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.461.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_462.sub b/test/ntuple_qcd_100_200/batch/condor_462.sub deleted file mode 100644 index c06f57578d6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_462.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.462.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_462.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.462.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_463.sub b/test/ntuple_qcd_100_200/batch/condor_463.sub deleted file mode 100644 index c389140a683..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_463.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.463.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_463.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.463.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_464.sub b/test/ntuple_qcd_100_200/batch/condor_464.sub deleted file mode 100644 index aaa282128a2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_464.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.464.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_464.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.464.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_465.sub b/test/ntuple_qcd_100_200/batch/condor_465.sub deleted file mode 100644 index ee71d2a60be..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_465.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.465.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_465.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.465.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_466.sub b/test/ntuple_qcd_100_200/batch/condor_466.sub deleted file mode 100644 index 6564c0505a3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_466.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.466.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_466.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.466.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_467.sub b/test/ntuple_qcd_100_200/batch/condor_467.sub deleted file mode 100644 index b3a2677499c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_467.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.467.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_467.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.467.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_468.sub b/test/ntuple_qcd_100_200/batch/condor_468.sub deleted file mode 100644 index 913e2d8d9c1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_468.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.468.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_468.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.468.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_469.sub b/test/ntuple_qcd_100_200/batch/condor_469.sub deleted file mode 100644 index 8f88d6b4838..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_469.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.469.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_469.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.469.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_47.sub b/test/ntuple_qcd_100_200/batch/condor_47.sub deleted file mode 100644 index 2faaaf1e55e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_470.sub b/test/ntuple_qcd_100_200/batch/condor_470.sub deleted file mode 100644 index 6c8b68ba2dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_470.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.470.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_470.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.470.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_471.sub b/test/ntuple_qcd_100_200/batch/condor_471.sub deleted file mode 100644 index 2b55ee8e8dd..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_471.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.471.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_471.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.471.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_472.sub b/test/ntuple_qcd_100_200/batch/condor_472.sub deleted file mode 100644 index c48044d1c4a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_472.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.472.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_472.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.472.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_473.sub b/test/ntuple_qcd_100_200/batch/condor_473.sub deleted file mode 100644 index dc65b697a27..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_473.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.473.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_473.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.473.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_474.sub b/test/ntuple_qcd_100_200/batch/condor_474.sub deleted file mode 100644 index 791ced3b431..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_474.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.474.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_474.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.474.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_475.sub b/test/ntuple_qcd_100_200/batch/condor_475.sub deleted file mode 100644 index a81129a3d49..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_475.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.475.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_475.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.475.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_476.sub b/test/ntuple_qcd_100_200/batch/condor_476.sub deleted file mode 100644 index de9c80f67c9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_476.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.476.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_476.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.476.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_477.sub b/test/ntuple_qcd_100_200/batch/condor_477.sub deleted file mode 100644 index 015f8487811..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_477.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.477.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_477.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.477.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_478.sub b/test/ntuple_qcd_100_200/batch/condor_478.sub deleted file mode 100644 index 9b378409de7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_478.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.478.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_478.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.478.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_479.sub b/test/ntuple_qcd_100_200/batch/condor_479.sub deleted file mode 100644 index 5c12e8c1af5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_479.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.479.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_479.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.479.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_48.sub b/test/ntuple_qcd_100_200/batch/condor_48.sub deleted file mode 100644 index d5270e31202..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_480.sub b/test/ntuple_qcd_100_200/batch/condor_480.sub deleted file mode 100644 index 77b7898b412..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_480.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.480.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_480.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.480.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_481.sub b/test/ntuple_qcd_100_200/batch/condor_481.sub deleted file mode 100644 index 281f9aea241..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_481.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.481.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_481.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.481.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_482.sub b/test/ntuple_qcd_100_200/batch/condor_482.sub deleted file mode 100644 index 2c439d219fe..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_482.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.482.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_482.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.482.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_483.sub b/test/ntuple_qcd_100_200/batch/condor_483.sub deleted file mode 100644 index dc99c818194..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_483.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.483.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_483.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.483.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_484.sub b/test/ntuple_qcd_100_200/batch/condor_484.sub deleted file mode 100644 index bd25320e08a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_484.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.484.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_484.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.484.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_485.sub b/test/ntuple_qcd_100_200/batch/condor_485.sub deleted file mode 100644 index bb848cdb44e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_485.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.485.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_485.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.485.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_486.sub b/test/ntuple_qcd_100_200/batch/condor_486.sub deleted file mode 100644 index 88bbe4bb787..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_486.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.486.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_486.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.486.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_487.sub b/test/ntuple_qcd_100_200/batch/condor_487.sub deleted file mode 100644 index 17d1ca805b6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_487.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.487.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_487.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.487.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_488.sub b/test/ntuple_qcd_100_200/batch/condor_488.sub deleted file mode 100644 index 5c8afad9b3c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_488.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.488.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_488.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.488.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_489.sub b/test/ntuple_qcd_100_200/batch/condor_489.sub deleted file mode 100644 index 2151cbead79..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_489.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.489.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_489.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.489.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_49.sub b/test/ntuple_qcd_100_200/batch/condor_49.sub deleted file mode 100644 index 37139f73d92..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_490.sub b/test/ntuple_qcd_100_200/batch/condor_490.sub deleted file mode 100644 index 8bd4dbb0b25..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_490.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.490.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_490.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.490.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_491.sub b/test/ntuple_qcd_100_200/batch/condor_491.sub deleted file mode 100644 index 6f9e9c12b33..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_491.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.491.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_491.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.491.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_492.sub b/test/ntuple_qcd_100_200/batch/condor_492.sub deleted file mode 100644 index 4d3d6f09003..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_492.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.492.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_492.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.492.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_493.sub b/test/ntuple_qcd_100_200/batch/condor_493.sub deleted file mode 100644 index 6469dd344ad..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_493.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.493.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_493.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.493.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_494.sub b/test/ntuple_qcd_100_200/batch/condor_494.sub deleted file mode 100644 index e608f515bb9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_494.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.494.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_494.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.494.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_495.sub b/test/ntuple_qcd_100_200/batch/condor_495.sub deleted file mode 100644 index 2edddbd3feb..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_495.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.495.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_495.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.495.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_496.sub b/test/ntuple_qcd_100_200/batch/condor_496.sub deleted file mode 100644 index 47f3b398176..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_496.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.496.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_496.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.496.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_497.sub b/test/ntuple_qcd_100_200/batch/condor_497.sub deleted file mode 100644 index f10f0c1a208..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_497.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.497.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_497.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.497.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_498.sub b/test/ntuple_qcd_100_200/batch/condor_498.sub deleted file mode 100644 index 1c1df0ad311..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_498.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.498.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_498.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.498.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_499.sub b/test/ntuple_qcd_100_200/batch/condor_499.sub deleted file mode 100644 index fab17cd4206..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_499.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.499.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_499.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.499.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_5.sub b/test/ntuple_qcd_100_200/batch/condor_5.sub deleted file mode 100644 index fcff2800f19..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_50.sub b/test/ntuple_qcd_100_200/batch/condor_50.sub deleted file mode 100644 index ca49ea24b77..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_51.sub b/test/ntuple_qcd_100_200/batch/condor_51.sub deleted file mode 100644 index c435d29772b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_52.sub b/test/ntuple_qcd_100_200/batch/condor_52.sub deleted file mode 100644 index b882527e9a2..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_53.sub b/test/ntuple_qcd_100_200/batch/condor_53.sub deleted file mode 100644 index 14f967ae95a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_54.sub b/test/ntuple_qcd_100_200/batch/condor_54.sub deleted file mode 100644 index 1350906aa4a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_55.sub b/test/ntuple_qcd_100_200/batch/condor_55.sub deleted file mode 100644 index 4c39158012d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_56.sub b/test/ntuple_qcd_100_200/batch/condor_56.sub deleted file mode 100644 index d49e67acf27..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_57.sub b/test/ntuple_qcd_100_200/batch/condor_57.sub deleted file mode 100644 index 0bfc82c5ab9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_58.sub b/test/ntuple_qcd_100_200/batch/condor_58.sub deleted file mode 100644 index 1cb13e9b7ae..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_59.sub b/test/ntuple_qcd_100_200/batch/condor_59.sub deleted file mode 100644 index 1db95cb00bf..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_6.sub b/test/ntuple_qcd_100_200/batch/condor_6.sub deleted file mode 100644 index eb25b350e85..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_60.sub b/test/ntuple_qcd_100_200/batch/condor_60.sub deleted file mode 100644 index 7aa31f5622e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_61.sub b/test/ntuple_qcd_100_200/batch/condor_61.sub deleted file mode 100644 index 70bedb94020..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_62.sub b/test/ntuple_qcd_100_200/batch/condor_62.sub deleted file mode 100644 index cd7c257dc08..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_63.sub b/test/ntuple_qcd_100_200/batch/condor_63.sub deleted file mode 100644 index 7f51ea60197..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_64.sub b/test/ntuple_qcd_100_200/batch/condor_64.sub deleted file mode 100644 index d6cae6b6cf1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_65.sub b/test/ntuple_qcd_100_200/batch/condor_65.sub deleted file mode 100644 index f25162ff8b5..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_66.sub b/test/ntuple_qcd_100_200/batch/condor_66.sub deleted file mode 100644 index a0d09181da7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_67.sub b/test/ntuple_qcd_100_200/batch/condor_67.sub deleted file mode 100644 index 95c28056946..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_68.sub b/test/ntuple_qcd_100_200/batch/condor_68.sub deleted file mode 100644 index 27452bcc8dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_69.sub b/test/ntuple_qcd_100_200/batch/condor_69.sub deleted file mode 100644 index eb83af8e6be..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_7.sub b/test/ntuple_qcd_100_200/batch/condor_7.sub deleted file mode 100644 index 2e0a747234a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_70.sub b/test/ntuple_qcd_100_200/batch/condor_70.sub deleted file mode 100644 index 644e745bf24..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_71.sub b/test/ntuple_qcd_100_200/batch/condor_71.sub deleted file mode 100644 index 20b0da2f6f6..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_72.sub b/test/ntuple_qcd_100_200/batch/condor_72.sub deleted file mode 100644 index 6a253a85f08..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_73.sub b/test/ntuple_qcd_100_200/batch/condor_73.sub deleted file mode 100644 index 64dfbab6fb1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_74.sub b/test/ntuple_qcd_100_200/batch/condor_74.sub deleted file mode 100644 index 29aeaba2a52..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_75.sub b/test/ntuple_qcd_100_200/batch/condor_75.sub deleted file mode 100644 index b64e184ecf9..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_76.sub b/test/ntuple_qcd_100_200/batch/condor_76.sub deleted file mode 100644 index fb98a8c25b7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_77.sub b/test/ntuple_qcd_100_200/batch/condor_77.sub deleted file mode 100644 index 08d9367734c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_78.sub b/test/ntuple_qcd_100_200/batch/condor_78.sub deleted file mode 100644 index ce32bf28e4d..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_79.sub b/test/ntuple_qcd_100_200/batch/condor_79.sub deleted file mode 100644 index 53c3571fb88..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_8.sub b/test/ntuple_qcd_100_200/batch/condor_8.sub deleted file mode 100644 index 36aea5ea7be..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_80.sub b/test/ntuple_qcd_100_200/batch/condor_80.sub deleted file mode 100644 index 1a5a5836346..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_81.sub b/test/ntuple_qcd_100_200/batch/condor_81.sub deleted file mode 100644 index 9c675a211ff..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_82.sub b/test/ntuple_qcd_100_200/batch/condor_82.sub deleted file mode 100644 index 7ea3a53ca0f..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_83.sub b/test/ntuple_qcd_100_200/batch/condor_83.sub deleted file mode 100644 index db418f38612..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_84.sub b/test/ntuple_qcd_100_200/batch/condor_84.sub deleted file mode 100644 index d29c5f5a0c3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_85.sub b/test/ntuple_qcd_100_200/batch/condor_85.sub deleted file mode 100644 index 042478a1175..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_86.sub b/test/ntuple_qcd_100_200/batch/condor_86.sub deleted file mode 100644 index 8b1cc431ffa..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_87.sub b/test/ntuple_qcd_100_200/batch/condor_87.sub deleted file mode 100644 index c8253947dd3..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_88.sub b/test/ntuple_qcd_100_200/batch/condor_88.sub deleted file mode 100644 index 12b5a77df93..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_89.sub b/test/ntuple_qcd_100_200/batch/condor_89.sub deleted file mode 100644 index 831a2e5870b..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_9.sub b/test/ntuple_qcd_100_200/batch/condor_9.sub deleted file mode 100644 index e814709166a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_90.sub b/test/ntuple_qcd_100_200/batch/condor_90.sub deleted file mode 100644 index b0de868ad9c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_91.sub b/test/ntuple_qcd_100_200/batch/condor_91.sub deleted file mode 100644 index 12c22e98592..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_92.sub b/test/ntuple_qcd_100_200/batch/condor_92.sub deleted file mode 100644 index 3d03c35fb9c..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_93.sub b/test/ntuple_qcd_100_200/batch/condor_93.sub deleted file mode 100644 index aa7dc32476e..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_94.sub b/test/ntuple_qcd_100_200/batch/condor_94.sub deleted file mode 100644 index 9de1b015916..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_95.sub b/test/ntuple_qcd_100_200/batch/condor_95.sub deleted file mode 100644 index 55266ce2c4a..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_96.sub b/test/ntuple_qcd_100_200/batch/condor_96.sub deleted file mode 100644 index c4f84b69ef1..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_97.sub b/test/ntuple_qcd_100_200/batch/condor_97.sub deleted file mode 100644 index 45d7c19b5a7..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_98.sub b/test/ntuple_qcd_100_200/batch/condor_98.sub deleted file mode 100644 index a2b4ddb19be..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/condor_99.sub b/test/ntuple_qcd_100_200/batch/condor_99.sub deleted file mode 100644 index 4ef76c24f75..00000000000 --- a/test/ntuple_qcd_100_200/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/nJobs.500 b/test/ntuple_qcd_100_200/batch/nJobs.500 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_100_200/batch/sge_0.sh b/test/ntuple_qcd_100_200/batch/sge_0.sh deleted file mode 100755 index 4aae44dcf9b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_1.sh b/test/ntuple_qcd_100_200/batch/sge_1.sh deleted file mode 100755 index bb569edec3f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_10.sh b/test/ntuple_qcd_100_200/batch/sge_10.sh deleted file mode 100755 index 1d57ac53fe5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_100.sh b/test/ntuple_qcd_100_200/batch/sge_100.sh deleted file mode 100755 index 564afc5ad6e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_101.sh b/test/ntuple_qcd_100_200/batch/sge_101.sh deleted file mode 100755 index e43aeaabe21..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_102.sh b/test/ntuple_qcd_100_200/batch/sge_102.sh deleted file mode 100755 index 7720fa0522f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_103.sh b/test/ntuple_qcd_100_200/batch/sge_103.sh deleted file mode 100755 index 5b049c87433..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_104.sh b/test/ntuple_qcd_100_200/batch/sge_104.sh deleted file mode 100755 index 8746ecfd59b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_105.sh b/test/ntuple_qcd_100_200/batch/sge_105.sh deleted file mode 100755 index 37b74561154..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_106.sh b/test/ntuple_qcd_100_200/batch/sge_106.sh deleted file mode 100755 index 1cb97b9c018..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_107.sh b/test/ntuple_qcd_100_200/batch/sge_107.sh deleted file mode 100755 index 63228ad5c5b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_108.sh b/test/ntuple_qcd_100_200/batch/sge_108.sh deleted file mode 100755 index 95f98869916..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_109.sh b/test/ntuple_qcd_100_200/batch/sge_109.sh deleted file mode 100755 index 636950a75e4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_11.sh b/test/ntuple_qcd_100_200/batch/sge_11.sh deleted file mode 100755 index ab5e88f74a6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_110.sh b/test/ntuple_qcd_100_200/batch/sge_110.sh deleted file mode 100755 index 8c67fda9072..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_111.sh b/test/ntuple_qcd_100_200/batch/sge_111.sh deleted file mode 100755 index 8e771960e7a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_112.sh b/test/ntuple_qcd_100_200/batch/sge_112.sh deleted file mode 100755 index 2e90a153ec3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_113.sh b/test/ntuple_qcd_100_200/batch/sge_113.sh deleted file mode 100755 index 63cf54dab45..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_114.sh b/test/ntuple_qcd_100_200/batch/sge_114.sh deleted file mode 100755 index af345253808..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_115.sh b/test/ntuple_qcd_100_200/batch/sge_115.sh deleted file mode 100755 index e81d8e9b6c1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_116.sh b/test/ntuple_qcd_100_200/batch/sge_116.sh deleted file mode 100755 index 8eef098addd..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_117.sh b/test/ntuple_qcd_100_200/batch/sge_117.sh deleted file mode 100755 index 4ce80a6aaa7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_118.sh b/test/ntuple_qcd_100_200/batch/sge_118.sh deleted file mode 100755 index 37cb8f9359a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_119.sh b/test/ntuple_qcd_100_200/batch/sge_119.sh deleted file mode 100755 index 0a734da1c3f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_12.sh b/test/ntuple_qcd_100_200/batch/sge_12.sh deleted file mode 100755 index e7255dfd466..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_120.sh b/test/ntuple_qcd_100_200/batch/sge_120.sh deleted file mode 100755 index 50ddf4c27b3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_121.sh b/test/ntuple_qcd_100_200/batch/sge_121.sh deleted file mode 100755 index 4dbdfce41e5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_122.sh b/test/ntuple_qcd_100_200/batch/sge_122.sh deleted file mode 100755 index e0144fc7ff0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_123.sh b/test/ntuple_qcd_100_200/batch/sge_123.sh deleted file mode 100755 index e5804571631..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_124.sh b/test/ntuple_qcd_100_200/batch/sge_124.sh deleted file mode 100755 index 0cd63d27cff..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_125.sh b/test/ntuple_qcd_100_200/batch/sge_125.sh deleted file mode 100755 index 6cf55b65161..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_126.sh b/test/ntuple_qcd_100_200/batch/sge_126.sh deleted file mode 100755 index 99da1ef1f25..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_127.sh b/test/ntuple_qcd_100_200/batch/sge_127.sh deleted file mode 100755 index 15b542e499b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_128.sh b/test/ntuple_qcd_100_200/batch/sge_128.sh deleted file mode 100755 index 1114404649c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_129.sh b/test/ntuple_qcd_100_200/batch/sge_129.sh deleted file mode 100755 index 97a6275561a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_13.sh b/test/ntuple_qcd_100_200/batch/sge_13.sh deleted file mode 100755 index 89dbef80a3d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_130.sh b/test/ntuple_qcd_100_200/batch/sge_130.sh deleted file mode 100755 index c7b0ae7fa13..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_131.sh b/test/ntuple_qcd_100_200/batch/sge_131.sh deleted file mode 100755 index 493dc567ebe..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_132.sh b/test/ntuple_qcd_100_200/batch/sge_132.sh deleted file mode 100755 index 56dc6906400..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_133.sh b/test/ntuple_qcd_100_200/batch/sge_133.sh deleted file mode 100755 index da1d3f1d66a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_134.sh b/test/ntuple_qcd_100_200/batch/sge_134.sh deleted file mode 100755 index d804aee8c38..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_135.sh b/test/ntuple_qcd_100_200/batch/sge_135.sh deleted file mode 100755 index 864b401ca96..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_136.sh b/test/ntuple_qcd_100_200/batch/sge_136.sh deleted file mode 100755 index f5437679543..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_137.sh b/test/ntuple_qcd_100_200/batch/sge_137.sh deleted file mode 100755 index 3f88d5a03f1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_138.sh b/test/ntuple_qcd_100_200/batch/sge_138.sh deleted file mode 100755 index 5e2f7191e26..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_139.sh b/test/ntuple_qcd_100_200/batch/sge_139.sh deleted file mode 100755 index a200b880755..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_139.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=139 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_139.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_14.sh b/test/ntuple_qcd_100_200/batch/sge_14.sh deleted file mode 100755 index 2c814d5f49a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_140.sh b/test/ntuple_qcd_100_200/batch/sge_140.sh deleted file mode 100755 index e70410839ed..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_140.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=140 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_140.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_141.sh b/test/ntuple_qcd_100_200/batch/sge_141.sh deleted file mode 100755 index 3ad05092043..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_141.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=141 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_141.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_142.sh b/test/ntuple_qcd_100_200/batch/sge_142.sh deleted file mode 100755 index 22550f37090..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_142.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=142 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_142.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_143.sh b/test/ntuple_qcd_100_200/batch/sge_143.sh deleted file mode 100755 index 0bd58593f58..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_143.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=143 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_143.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_144.sh b/test/ntuple_qcd_100_200/batch/sge_144.sh deleted file mode 100755 index 7f812366600..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_144.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=144 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_144.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_145.sh b/test/ntuple_qcd_100_200/batch/sge_145.sh deleted file mode 100755 index bdc0f2f772e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_145.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=145 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_145.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_146.sh b/test/ntuple_qcd_100_200/batch/sge_146.sh deleted file mode 100755 index c6bca21ac07..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_146.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=146 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_146.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_147.sh b/test/ntuple_qcd_100_200/batch/sge_147.sh deleted file mode 100755 index 165f7cc0a81..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_147.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=147 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_147.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_148.sh b/test/ntuple_qcd_100_200/batch/sge_148.sh deleted file mode 100755 index 0579e54c406..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_148.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=148 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_148.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_149.sh b/test/ntuple_qcd_100_200/batch/sge_149.sh deleted file mode 100755 index f3d978f87d6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_149.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=149 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_149.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_15.sh b/test/ntuple_qcd_100_200/batch/sge_15.sh deleted file mode 100755 index 7900e25ff58..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_150.sh b/test/ntuple_qcd_100_200/batch/sge_150.sh deleted file mode 100755 index 0b199839bdf..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_150.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=150 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_150.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_151.sh b/test/ntuple_qcd_100_200/batch/sge_151.sh deleted file mode 100755 index 612681c442d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_151.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=151 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_151.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_152.sh b/test/ntuple_qcd_100_200/batch/sge_152.sh deleted file mode 100755 index c2e2822fe1f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_152.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=152 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_152.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_153.sh b/test/ntuple_qcd_100_200/batch/sge_153.sh deleted file mode 100755 index 806a7959a17..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_153.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=153 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_153.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_154.sh b/test/ntuple_qcd_100_200/batch/sge_154.sh deleted file mode 100755 index 9c5e1b6fbd1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_154.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=154 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_154.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_155.sh b/test/ntuple_qcd_100_200/batch/sge_155.sh deleted file mode 100755 index e08a6e594a8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_155.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=155 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_155.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_156.sh b/test/ntuple_qcd_100_200/batch/sge_156.sh deleted file mode 100755 index e46f79ced3a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_156.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=156 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_156.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_157.sh b/test/ntuple_qcd_100_200/batch/sge_157.sh deleted file mode 100755 index 6a5ae7ca00f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_157.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=157 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_157.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_158.sh b/test/ntuple_qcd_100_200/batch/sge_158.sh deleted file mode 100755 index 416787cf04b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_158.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=158 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_158.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_159.sh b/test/ntuple_qcd_100_200/batch/sge_159.sh deleted file mode 100755 index 1b42a39d607..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_159.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=159 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_159.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_16.sh b/test/ntuple_qcd_100_200/batch/sge_16.sh deleted file mode 100755 index aeb8449a5ad..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_160.sh b/test/ntuple_qcd_100_200/batch/sge_160.sh deleted file mode 100755 index 62e55b7cecb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_160.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=160 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_160.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_161.sh b/test/ntuple_qcd_100_200/batch/sge_161.sh deleted file mode 100755 index f0e45ce1bd4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_161.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=161 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_161.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_162.sh b/test/ntuple_qcd_100_200/batch/sge_162.sh deleted file mode 100755 index 9bc149e7e73..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_162.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=162 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_162.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_163.sh b/test/ntuple_qcd_100_200/batch/sge_163.sh deleted file mode 100755 index 1c07f8bdbc0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_163.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=163 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_163.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_164.sh b/test/ntuple_qcd_100_200/batch/sge_164.sh deleted file mode 100755 index 017b652d7f9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_164.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=164 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_164.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_165.sh b/test/ntuple_qcd_100_200/batch/sge_165.sh deleted file mode 100755 index 9d8a4d74f97..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_165.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=165 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_165.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_166.sh b/test/ntuple_qcd_100_200/batch/sge_166.sh deleted file mode 100755 index f65bb276e0f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_166.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=166 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_166.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_167.sh b/test/ntuple_qcd_100_200/batch/sge_167.sh deleted file mode 100755 index 5adb6e60de5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_167.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=167 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_167.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_168.sh b/test/ntuple_qcd_100_200/batch/sge_168.sh deleted file mode 100755 index f9a55a43b17..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_168.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=168 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_168.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_169.sh b/test/ntuple_qcd_100_200/batch/sge_169.sh deleted file mode 100755 index 15e455f1b6a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_169.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=169 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_169.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_17.sh b/test/ntuple_qcd_100_200/batch/sge_17.sh deleted file mode 100755 index 72f54e1a51e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_170.sh b/test/ntuple_qcd_100_200/batch/sge_170.sh deleted file mode 100755 index 2ced0d2ec75..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_170.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=170 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_170.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_171.sh b/test/ntuple_qcd_100_200/batch/sge_171.sh deleted file mode 100755 index 9f2269150f1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_171.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=171 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_171.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_172.sh b/test/ntuple_qcd_100_200/batch/sge_172.sh deleted file mode 100755 index c77ca6b761d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_172.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=172 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_172.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_173.sh b/test/ntuple_qcd_100_200/batch/sge_173.sh deleted file mode 100755 index e1783d8c082..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_173.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=173 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_173.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_174.sh b/test/ntuple_qcd_100_200/batch/sge_174.sh deleted file mode 100755 index 34122ab8112..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_174.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=174 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_174.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_175.sh b/test/ntuple_qcd_100_200/batch/sge_175.sh deleted file mode 100755 index 90a0c51b394..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_175.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=175 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_175.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_176.sh b/test/ntuple_qcd_100_200/batch/sge_176.sh deleted file mode 100755 index a9794a18eaa..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_176.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=176 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_176.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_177.sh b/test/ntuple_qcd_100_200/batch/sge_177.sh deleted file mode 100755 index 7ff5c75b6c5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_177.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=177 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_177.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_178.sh b/test/ntuple_qcd_100_200/batch/sge_178.sh deleted file mode 100755 index 953e6f79d7b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_178.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=178 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_178.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_179.sh b/test/ntuple_qcd_100_200/batch/sge_179.sh deleted file mode 100755 index d6041cfe6bc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_179.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=179 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_179.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_18.sh b/test/ntuple_qcd_100_200/batch/sge_18.sh deleted file mode 100755 index a64d4937f07..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_180.sh b/test/ntuple_qcd_100_200/batch/sge_180.sh deleted file mode 100755 index e1639e073ca..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_180.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=180 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_180.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_181.sh b/test/ntuple_qcd_100_200/batch/sge_181.sh deleted file mode 100755 index 4e08bddbce4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_181.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=181 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_181.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_182.sh b/test/ntuple_qcd_100_200/batch/sge_182.sh deleted file mode 100755 index 118a1f66666..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_182.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=182 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_182.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_183.sh b/test/ntuple_qcd_100_200/batch/sge_183.sh deleted file mode 100755 index 7f045a0a722..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_183.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=183 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_183.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_184.sh b/test/ntuple_qcd_100_200/batch/sge_184.sh deleted file mode 100755 index ca6d8fa6707..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_184.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=184 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_184.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_185.sh b/test/ntuple_qcd_100_200/batch/sge_185.sh deleted file mode 100755 index 77d8cd923ac..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_185.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=185 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_185.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_186.sh b/test/ntuple_qcd_100_200/batch/sge_186.sh deleted file mode 100755 index dae7998429c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_186.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=186 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_186.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_187.sh b/test/ntuple_qcd_100_200/batch/sge_187.sh deleted file mode 100755 index 807e4ebc7ef..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_187.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=187 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_187.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_188.sh b/test/ntuple_qcd_100_200/batch/sge_188.sh deleted file mode 100755 index 6a71b460f4e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_188.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=188 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_188.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_189.sh b/test/ntuple_qcd_100_200/batch/sge_189.sh deleted file mode 100755 index b52fbbc6b24..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_189.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=189 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_189.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_19.sh b/test/ntuple_qcd_100_200/batch/sge_19.sh deleted file mode 100755 index 89d3a7c51c5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_190.sh b/test/ntuple_qcd_100_200/batch/sge_190.sh deleted file mode 100755 index 25aedfab5af..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_190.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=190 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_190.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_191.sh b/test/ntuple_qcd_100_200/batch/sge_191.sh deleted file mode 100755 index b78962e71e2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_191.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=191 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_191.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_192.sh b/test/ntuple_qcd_100_200/batch/sge_192.sh deleted file mode 100755 index 9fb06884641..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_192.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=192 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_192.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_193.sh b/test/ntuple_qcd_100_200/batch/sge_193.sh deleted file mode 100755 index 78aad7af9a0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_193.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=193 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_193.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_194.sh b/test/ntuple_qcd_100_200/batch/sge_194.sh deleted file mode 100755 index 613762e54ad..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_194.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=194 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_194.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_195.sh b/test/ntuple_qcd_100_200/batch/sge_195.sh deleted file mode 100755 index 233aa5ffcf5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_195.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=195 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_195.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_196.sh b/test/ntuple_qcd_100_200/batch/sge_196.sh deleted file mode 100755 index af399c60317..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_196.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=196 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_196.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_197.sh b/test/ntuple_qcd_100_200/batch/sge_197.sh deleted file mode 100755 index 0bf520d243b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_197.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=197 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_197.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_198.sh b/test/ntuple_qcd_100_200/batch/sge_198.sh deleted file mode 100755 index 5698b378b30..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_198.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=198 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_198.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_199.sh b/test/ntuple_qcd_100_200/batch/sge_199.sh deleted file mode 100755 index b787a7bee4f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_199.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=199 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_199.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_2.sh b/test/ntuple_qcd_100_200/batch/sge_2.sh deleted file mode 100755 index cbbbf4456b5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_20.sh b/test/ntuple_qcd_100_200/batch/sge_20.sh deleted file mode 100755 index 85d721f96ea..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_200.sh b/test/ntuple_qcd_100_200/batch/sge_200.sh deleted file mode 100755 index 27d317d5cf3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_200.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=200 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_200.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_201.sh b/test/ntuple_qcd_100_200/batch/sge_201.sh deleted file mode 100755 index ae4c980307c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_201.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=201 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_201.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_202.sh b/test/ntuple_qcd_100_200/batch/sge_202.sh deleted file mode 100755 index 18b8f4ec432..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_202.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=202 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_202.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_203.sh b/test/ntuple_qcd_100_200/batch/sge_203.sh deleted file mode 100755 index a3f8121d315..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_203.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=203 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_203.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_204.sh b/test/ntuple_qcd_100_200/batch/sge_204.sh deleted file mode 100755 index 0f30b28ef6f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_204.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=204 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_204.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_205.sh b/test/ntuple_qcd_100_200/batch/sge_205.sh deleted file mode 100755 index 6c2df21a255..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_205.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=205 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_205.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_206.sh b/test/ntuple_qcd_100_200/batch/sge_206.sh deleted file mode 100755 index c4b777c036b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_206.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=206 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_206.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_207.sh b/test/ntuple_qcd_100_200/batch/sge_207.sh deleted file mode 100755 index cb57b1b9894..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_207.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=207 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_207.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_208.sh b/test/ntuple_qcd_100_200/batch/sge_208.sh deleted file mode 100755 index 27161adc9b3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_208.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=208 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_208.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_209.sh b/test/ntuple_qcd_100_200/batch/sge_209.sh deleted file mode 100755 index 098b08043dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_209.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=209 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_209.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_21.sh b/test/ntuple_qcd_100_200/batch/sge_21.sh deleted file mode 100755 index 1088360b908..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_210.sh b/test/ntuple_qcd_100_200/batch/sge_210.sh deleted file mode 100755 index 537cfe163e7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_210.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=210 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_210.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_211.sh b/test/ntuple_qcd_100_200/batch/sge_211.sh deleted file mode 100755 index f3d4faa51de..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_211.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=211 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_211.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_212.sh b/test/ntuple_qcd_100_200/batch/sge_212.sh deleted file mode 100755 index af4745d8789..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_212.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=212 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_212.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_213.sh b/test/ntuple_qcd_100_200/batch/sge_213.sh deleted file mode 100755 index a09556744e9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_213.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=213 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_213.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_214.sh b/test/ntuple_qcd_100_200/batch/sge_214.sh deleted file mode 100755 index 95283c28e0b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_214.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=214 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_214.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_215.sh b/test/ntuple_qcd_100_200/batch/sge_215.sh deleted file mode 100755 index 85180765a6c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_215.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=215 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_215.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_216.sh b/test/ntuple_qcd_100_200/batch/sge_216.sh deleted file mode 100755 index f8edb3ea4a0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_216.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=216 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_216.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_217.sh b/test/ntuple_qcd_100_200/batch/sge_217.sh deleted file mode 100755 index 0b99f7cd4a8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_217.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=217 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_217.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_218.sh b/test/ntuple_qcd_100_200/batch/sge_218.sh deleted file mode 100755 index e7ac69edfbf..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_218.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=218 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_218.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_219.sh b/test/ntuple_qcd_100_200/batch/sge_219.sh deleted file mode 100755 index 851a37d752d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_219.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=219 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_219.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_22.sh b/test/ntuple_qcd_100_200/batch/sge_22.sh deleted file mode 100755 index ccf037cff03..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_220.sh b/test/ntuple_qcd_100_200/batch/sge_220.sh deleted file mode 100755 index 8365c6ec322..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_220.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=220 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_220.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_221.sh b/test/ntuple_qcd_100_200/batch/sge_221.sh deleted file mode 100755 index bd5a1c66100..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_221.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=221 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_221.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_222.sh b/test/ntuple_qcd_100_200/batch/sge_222.sh deleted file mode 100755 index a9fbbf9ea00..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_222.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=222 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_222.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_223.sh b/test/ntuple_qcd_100_200/batch/sge_223.sh deleted file mode 100755 index d7e637beacb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_223.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=223 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_223.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_224.sh b/test/ntuple_qcd_100_200/batch/sge_224.sh deleted file mode 100755 index 43bb734af95..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_224.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=224 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_224.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_225.sh b/test/ntuple_qcd_100_200/batch/sge_225.sh deleted file mode 100755 index 0908ec3f475..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_225.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=225 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_225.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_226.sh b/test/ntuple_qcd_100_200/batch/sge_226.sh deleted file mode 100755 index 321c735b463..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_226.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=226 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_226.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_227.sh b/test/ntuple_qcd_100_200/batch/sge_227.sh deleted file mode 100755 index 2e08f8a0a66..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_227.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=227 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_227.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_228.sh b/test/ntuple_qcd_100_200/batch/sge_228.sh deleted file mode 100755 index f7f878f27d3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_228.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=228 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_228.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_229.sh b/test/ntuple_qcd_100_200/batch/sge_229.sh deleted file mode 100755 index 697ff5b4d6d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_229.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=229 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_229.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_23.sh b/test/ntuple_qcd_100_200/batch/sge_23.sh deleted file mode 100755 index b429cb9a779..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_230.sh b/test/ntuple_qcd_100_200/batch/sge_230.sh deleted file mode 100755 index cc86b3f201a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_230.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=230 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_230.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_231.sh b/test/ntuple_qcd_100_200/batch/sge_231.sh deleted file mode 100755 index ef349e1af93..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_231.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=231 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_231.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_232.sh b/test/ntuple_qcd_100_200/batch/sge_232.sh deleted file mode 100755 index bf22f07c13b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_232.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=232 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_232.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_233.sh b/test/ntuple_qcd_100_200/batch/sge_233.sh deleted file mode 100755 index 923c6c784e9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_233.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=233 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_233.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_234.sh b/test/ntuple_qcd_100_200/batch/sge_234.sh deleted file mode 100755 index afd6a0cc2d0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_234.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=234 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_234.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_235.sh b/test/ntuple_qcd_100_200/batch/sge_235.sh deleted file mode 100755 index 56241b2f8d1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_235.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=235 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_235.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_236.sh b/test/ntuple_qcd_100_200/batch/sge_236.sh deleted file mode 100755 index 13c556e4f86..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_236.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=236 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_236.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_237.sh b/test/ntuple_qcd_100_200/batch/sge_237.sh deleted file mode 100755 index 1de88e5e21b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_237.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=237 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_237.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_238.sh b/test/ntuple_qcd_100_200/batch/sge_238.sh deleted file mode 100755 index acf51af4722..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_238.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=238 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_238.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_239.sh b/test/ntuple_qcd_100_200/batch/sge_239.sh deleted file mode 100755 index 992718bb46a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_239.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=239 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_239.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_24.sh b/test/ntuple_qcd_100_200/batch/sge_24.sh deleted file mode 100755 index 38c4261a42d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_240.sh b/test/ntuple_qcd_100_200/batch/sge_240.sh deleted file mode 100755 index 31fe76838dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_240.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=240 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_240.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_241.sh b/test/ntuple_qcd_100_200/batch/sge_241.sh deleted file mode 100755 index c0f6ffd2c96..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_241.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=241 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_241.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_242.sh b/test/ntuple_qcd_100_200/batch/sge_242.sh deleted file mode 100755 index 9cc088b9b7a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_242.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=242 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_242.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_243.sh b/test/ntuple_qcd_100_200/batch/sge_243.sh deleted file mode 100755 index 7a094ccd296..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_243.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=243 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_243.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_244.sh b/test/ntuple_qcd_100_200/batch/sge_244.sh deleted file mode 100755 index 21f496cffc9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_244.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=244 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_244.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_245.sh b/test/ntuple_qcd_100_200/batch/sge_245.sh deleted file mode 100755 index 67e9b7cc379..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_245.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=245 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_245.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_246.sh b/test/ntuple_qcd_100_200/batch/sge_246.sh deleted file mode 100755 index b9eead11c74..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_246.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=246 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_246.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_247.sh b/test/ntuple_qcd_100_200/batch/sge_247.sh deleted file mode 100755 index 7554b1ae641..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_247.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=247 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_247.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_248.sh b/test/ntuple_qcd_100_200/batch/sge_248.sh deleted file mode 100755 index 890ce5bcb94..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_248.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=248 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_248.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_249.sh b/test/ntuple_qcd_100_200/batch/sge_249.sh deleted file mode 100755 index a4365e78fb7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_249.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=249 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_249.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_25.sh b/test/ntuple_qcd_100_200/batch/sge_25.sh deleted file mode 100755 index bd63cbcaf00..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_250.sh b/test/ntuple_qcd_100_200/batch/sge_250.sh deleted file mode 100755 index 4aad7c305b3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_250.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=250 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_250.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_251.sh b/test/ntuple_qcd_100_200/batch/sge_251.sh deleted file mode 100755 index cab5a78105b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_251.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=251 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_251.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_252.sh b/test/ntuple_qcd_100_200/batch/sge_252.sh deleted file mode 100755 index a6d7cfe4063..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_252.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=252 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_252.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_253.sh b/test/ntuple_qcd_100_200/batch/sge_253.sh deleted file mode 100755 index 6077b479298..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_253.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=253 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_253.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_254.sh b/test/ntuple_qcd_100_200/batch/sge_254.sh deleted file mode 100755 index 13d7ce0b70b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_254.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=254 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_254.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_255.sh b/test/ntuple_qcd_100_200/batch/sge_255.sh deleted file mode 100755 index 025d157c7dc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_255.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=255 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_255.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_256.sh b/test/ntuple_qcd_100_200/batch/sge_256.sh deleted file mode 100755 index 003f44a5803..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_256.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=256 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_256.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_257.sh b/test/ntuple_qcd_100_200/batch/sge_257.sh deleted file mode 100755 index d5bd9386da6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_257.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=257 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_257.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_258.sh b/test/ntuple_qcd_100_200/batch/sge_258.sh deleted file mode 100755 index 300d189ccd4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_258.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=258 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_258.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_259.sh b/test/ntuple_qcd_100_200/batch/sge_259.sh deleted file mode 100755 index f4d8b2924e4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_259.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=259 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_259.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_26.sh b/test/ntuple_qcd_100_200/batch/sge_26.sh deleted file mode 100755 index 3eb6a7f066e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_260.sh b/test/ntuple_qcd_100_200/batch/sge_260.sh deleted file mode 100755 index 1f022eda08f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_260.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=260 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_260.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_261.sh b/test/ntuple_qcd_100_200/batch/sge_261.sh deleted file mode 100755 index c108d585efe..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_261.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=261 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_261.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_262.sh b/test/ntuple_qcd_100_200/batch/sge_262.sh deleted file mode 100755 index 3defcd2a354..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_262.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=262 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_262.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_263.sh b/test/ntuple_qcd_100_200/batch/sge_263.sh deleted file mode 100755 index 22ffa1c6ca2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_263.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=263 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_263.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_264.sh b/test/ntuple_qcd_100_200/batch/sge_264.sh deleted file mode 100755 index 21812d98a31..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_264.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=264 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_264.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_265.sh b/test/ntuple_qcd_100_200/batch/sge_265.sh deleted file mode 100755 index 26fd77f590f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_265.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=265 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_265.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_266.sh b/test/ntuple_qcd_100_200/batch/sge_266.sh deleted file mode 100755 index ab4ae04ff0a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_266.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=266 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_266.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_267.sh b/test/ntuple_qcd_100_200/batch/sge_267.sh deleted file mode 100755 index c27ebd36afd..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_267.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=267 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_267.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_268.sh b/test/ntuple_qcd_100_200/batch/sge_268.sh deleted file mode 100755 index 819084a3ae7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_268.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=268 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_268.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_269.sh b/test/ntuple_qcd_100_200/batch/sge_269.sh deleted file mode 100755 index 2fbb6bd1e6f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_269.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=269 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_269.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_27.sh b/test/ntuple_qcd_100_200/batch/sge_27.sh deleted file mode 100755 index b8cb1fe3758..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_270.sh b/test/ntuple_qcd_100_200/batch/sge_270.sh deleted file mode 100755 index 987b94b717f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_270.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=270 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_270.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_271.sh b/test/ntuple_qcd_100_200/batch/sge_271.sh deleted file mode 100755 index 0673e0ed54f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_271.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=271 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_271.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_272.sh b/test/ntuple_qcd_100_200/batch/sge_272.sh deleted file mode 100755 index 8f2d95b1d25..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_272.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=272 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_272.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_273.sh b/test/ntuple_qcd_100_200/batch/sge_273.sh deleted file mode 100755 index 28c3ef61f1e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_273.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=273 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_273.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_274.sh b/test/ntuple_qcd_100_200/batch/sge_274.sh deleted file mode 100755 index fd71cd7a709..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_274.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=274 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_274.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_275.sh b/test/ntuple_qcd_100_200/batch/sge_275.sh deleted file mode 100755 index 919822f437e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_275.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=275 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_275.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_276.sh b/test/ntuple_qcd_100_200/batch/sge_276.sh deleted file mode 100755 index 0959660ff3f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_276.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=276 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_276.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_277.sh b/test/ntuple_qcd_100_200/batch/sge_277.sh deleted file mode 100755 index 4d63810132c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_277.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=277 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_277.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_278.sh b/test/ntuple_qcd_100_200/batch/sge_278.sh deleted file mode 100755 index 19c8b04eaf7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_278.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=278 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_278.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_279.sh b/test/ntuple_qcd_100_200/batch/sge_279.sh deleted file mode 100755 index ad964f05c14..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_279.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=279 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_279.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_28.sh b/test/ntuple_qcd_100_200/batch/sge_28.sh deleted file mode 100755 index e1ace5a7241..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_280.sh b/test/ntuple_qcd_100_200/batch/sge_280.sh deleted file mode 100755 index 14004a683f8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_280.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=280 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_280.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_281.sh b/test/ntuple_qcd_100_200/batch/sge_281.sh deleted file mode 100755 index 43ddc59757f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_281.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=281 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_281.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_282.sh b/test/ntuple_qcd_100_200/batch/sge_282.sh deleted file mode 100755 index 0746062c7e8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_282.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=282 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_282.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_283.sh b/test/ntuple_qcd_100_200/batch/sge_283.sh deleted file mode 100755 index 4e3aa3cae66..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_283.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=283 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_283.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_284.sh b/test/ntuple_qcd_100_200/batch/sge_284.sh deleted file mode 100755 index c2c2a1f5e60..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_284.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=284 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_284.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_285.sh b/test/ntuple_qcd_100_200/batch/sge_285.sh deleted file mode 100755 index 5cd170c45a0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_285.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=285 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_285.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_286.sh b/test/ntuple_qcd_100_200/batch/sge_286.sh deleted file mode 100755 index 134bdce3b8d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_286.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=286 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_286.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_287.sh b/test/ntuple_qcd_100_200/batch/sge_287.sh deleted file mode 100755 index 836b0bc6ae6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_287.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=287 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_287.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_288.sh b/test/ntuple_qcd_100_200/batch/sge_288.sh deleted file mode 100755 index 96749960119..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_288.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=288 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_288.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_289.sh b/test/ntuple_qcd_100_200/batch/sge_289.sh deleted file mode 100755 index 9ad78042ee7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_289.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=289 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_289.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_29.sh b/test/ntuple_qcd_100_200/batch/sge_29.sh deleted file mode 100755 index 1030a12d2e6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_290.sh b/test/ntuple_qcd_100_200/batch/sge_290.sh deleted file mode 100755 index 24008e03146..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_290.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=290 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_290.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_291.sh b/test/ntuple_qcd_100_200/batch/sge_291.sh deleted file mode 100755 index adcc5d9e245..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_291.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=291 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_291.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_292.sh b/test/ntuple_qcd_100_200/batch/sge_292.sh deleted file mode 100755 index fbb254d4189..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_292.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=292 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_292.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_293.sh b/test/ntuple_qcd_100_200/batch/sge_293.sh deleted file mode 100755 index aa4bb693174..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_293.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=293 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_293.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_294.sh b/test/ntuple_qcd_100_200/batch/sge_294.sh deleted file mode 100755 index 57475081426..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_294.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=294 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_294.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_295.sh b/test/ntuple_qcd_100_200/batch/sge_295.sh deleted file mode 100755 index 212cbc8e0b7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_295.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=295 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_295.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_296.sh b/test/ntuple_qcd_100_200/batch/sge_296.sh deleted file mode 100755 index 955adae8df4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_296.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=296 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_296.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_297.sh b/test/ntuple_qcd_100_200/batch/sge_297.sh deleted file mode 100755 index 7fe352cd8a2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_297.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=297 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_297.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_298.sh b/test/ntuple_qcd_100_200/batch/sge_298.sh deleted file mode 100755 index 2d46bee5e8e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_298.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=298 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_298.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_299.sh b/test/ntuple_qcd_100_200/batch/sge_299.sh deleted file mode 100755 index a002a02791f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_299.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=299 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_299.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_3.sh b/test/ntuple_qcd_100_200/batch/sge_3.sh deleted file mode 100755 index 3f43d45ac67..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_30.sh b/test/ntuple_qcd_100_200/batch/sge_30.sh deleted file mode 100755 index b64e3c04dcc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_300.sh b/test/ntuple_qcd_100_200/batch/sge_300.sh deleted file mode 100755 index d7f9d404682..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_300.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=300 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_300.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_301.sh b/test/ntuple_qcd_100_200/batch/sge_301.sh deleted file mode 100755 index 8d9539e6082..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_301.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=301 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_301.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_302.sh b/test/ntuple_qcd_100_200/batch/sge_302.sh deleted file mode 100755 index 9550ba08a86..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_302.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=302 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_302.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_303.sh b/test/ntuple_qcd_100_200/batch/sge_303.sh deleted file mode 100755 index f603235b153..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_303.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=303 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_303.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_304.sh b/test/ntuple_qcd_100_200/batch/sge_304.sh deleted file mode 100755 index 62da7ccf24b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_304.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=304 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_304.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_305.sh b/test/ntuple_qcd_100_200/batch/sge_305.sh deleted file mode 100755 index b433be34a9d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_305.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=305 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_305.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_306.sh b/test/ntuple_qcd_100_200/batch/sge_306.sh deleted file mode 100755 index b266da32d1f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_306.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=306 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_306.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_307.sh b/test/ntuple_qcd_100_200/batch/sge_307.sh deleted file mode 100755 index b2059967f94..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_307.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=307 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_307.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_308.sh b/test/ntuple_qcd_100_200/batch/sge_308.sh deleted file mode 100755 index 00b00d66efc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_308.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=308 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_308.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_309.sh b/test/ntuple_qcd_100_200/batch/sge_309.sh deleted file mode 100755 index 156689d04e0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_309.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=309 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_309.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_31.sh b/test/ntuple_qcd_100_200/batch/sge_31.sh deleted file mode 100755 index 09e75444b8f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_310.sh b/test/ntuple_qcd_100_200/batch/sge_310.sh deleted file mode 100755 index b3faf718460..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_310.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=310 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_310.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_311.sh b/test/ntuple_qcd_100_200/batch/sge_311.sh deleted file mode 100755 index 344e02d44f3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_311.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=311 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_311.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_312.sh b/test/ntuple_qcd_100_200/batch/sge_312.sh deleted file mode 100755 index f6a36c1c40a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_312.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=312 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_312.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_313.sh b/test/ntuple_qcd_100_200/batch/sge_313.sh deleted file mode 100755 index 94b7c41c0bb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_313.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=313 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_313.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_314.sh b/test/ntuple_qcd_100_200/batch/sge_314.sh deleted file mode 100755 index 59a31316129..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_314.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=314 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_314.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_315.sh b/test/ntuple_qcd_100_200/batch/sge_315.sh deleted file mode 100755 index 6860823b723..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_315.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=315 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_315.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_316.sh b/test/ntuple_qcd_100_200/batch/sge_316.sh deleted file mode 100755 index e56a8658bbb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_316.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=316 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_316.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_317.sh b/test/ntuple_qcd_100_200/batch/sge_317.sh deleted file mode 100755 index 8dbc547b75e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_317.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=317 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_317.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_318.sh b/test/ntuple_qcd_100_200/batch/sge_318.sh deleted file mode 100755 index b01f84c1481..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_318.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=318 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_318.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_319.sh b/test/ntuple_qcd_100_200/batch/sge_319.sh deleted file mode 100755 index 30deb02f4f0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_319.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=319 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_319.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_32.sh b/test/ntuple_qcd_100_200/batch/sge_32.sh deleted file mode 100755 index 382b9a9a716..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_320.sh b/test/ntuple_qcd_100_200/batch/sge_320.sh deleted file mode 100755 index 9ece79200b8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_320.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=320 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_320.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_321.sh b/test/ntuple_qcd_100_200/batch/sge_321.sh deleted file mode 100755 index 7d44de7eed5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_321.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=321 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_321.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_322.sh b/test/ntuple_qcd_100_200/batch/sge_322.sh deleted file mode 100755 index 73b77be78c6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_322.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=322 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_322.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_323.sh b/test/ntuple_qcd_100_200/batch/sge_323.sh deleted file mode 100755 index e9463efb575..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_323.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=323 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_323.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_324.sh b/test/ntuple_qcd_100_200/batch/sge_324.sh deleted file mode 100755 index 9f74ad74eb2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_324.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=324 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_324.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_325.sh b/test/ntuple_qcd_100_200/batch/sge_325.sh deleted file mode 100755 index 01adeb1e537..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_325.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=325 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_325.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_326.sh b/test/ntuple_qcd_100_200/batch/sge_326.sh deleted file mode 100755 index 3a6a2a3dc93..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_326.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=326 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_326.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_327.sh b/test/ntuple_qcd_100_200/batch/sge_327.sh deleted file mode 100755 index c4a85dcbc7a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_327.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=327 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_327.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_328.sh b/test/ntuple_qcd_100_200/batch/sge_328.sh deleted file mode 100755 index ec29ae85b65..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_328.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=328 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_328.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_329.sh b/test/ntuple_qcd_100_200/batch/sge_329.sh deleted file mode 100755 index 69ebbce427e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_329.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=329 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_329.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_33.sh b/test/ntuple_qcd_100_200/batch/sge_33.sh deleted file mode 100755 index aabb18b5165..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_330.sh b/test/ntuple_qcd_100_200/batch/sge_330.sh deleted file mode 100755 index d0390824a9b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_330.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=330 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_330.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_331.sh b/test/ntuple_qcd_100_200/batch/sge_331.sh deleted file mode 100755 index 75ef4e06efa..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_331.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=331 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_331.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_332.sh b/test/ntuple_qcd_100_200/batch/sge_332.sh deleted file mode 100755 index 77704a6786a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_332.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=332 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_332.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_333.sh b/test/ntuple_qcd_100_200/batch/sge_333.sh deleted file mode 100755 index bb53f0e4869..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_333.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=333 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_333.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_334.sh b/test/ntuple_qcd_100_200/batch/sge_334.sh deleted file mode 100755 index c32864d5e12..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_334.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=334 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_334.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_335.sh b/test/ntuple_qcd_100_200/batch/sge_335.sh deleted file mode 100755 index fe8da481062..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_335.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=335 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_335.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_336.sh b/test/ntuple_qcd_100_200/batch/sge_336.sh deleted file mode 100755 index dcd6978ccd5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_336.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=336 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_336.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_337.sh b/test/ntuple_qcd_100_200/batch/sge_337.sh deleted file mode 100755 index 64e01b95e9a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_337.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=337 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_337.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_338.sh b/test/ntuple_qcd_100_200/batch/sge_338.sh deleted file mode 100755 index e5c46b104cc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_338.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=338 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_338.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_339.sh b/test/ntuple_qcd_100_200/batch/sge_339.sh deleted file mode 100755 index a6371ab502b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_339.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=339 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_339.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_34.sh b/test/ntuple_qcd_100_200/batch/sge_34.sh deleted file mode 100755 index 88b6035850a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_340.sh b/test/ntuple_qcd_100_200/batch/sge_340.sh deleted file mode 100755 index 13d12bb8160..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_340.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=340 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_340.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_341.sh b/test/ntuple_qcd_100_200/batch/sge_341.sh deleted file mode 100755 index aa3da91f623..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_341.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=341 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_341.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_342.sh b/test/ntuple_qcd_100_200/batch/sge_342.sh deleted file mode 100755 index 5813fbe0149..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_342.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=342 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_342.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_343.sh b/test/ntuple_qcd_100_200/batch/sge_343.sh deleted file mode 100755 index b464723afea..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_343.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=343 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_343.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_344.sh b/test/ntuple_qcd_100_200/batch/sge_344.sh deleted file mode 100755 index 8c8c7fc3667..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_344.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=344 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_344.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_345.sh b/test/ntuple_qcd_100_200/batch/sge_345.sh deleted file mode 100755 index 665f7b4bbb6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_345.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=345 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_345.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_346.sh b/test/ntuple_qcd_100_200/batch/sge_346.sh deleted file mode 100755 index 1ea0a9b037b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_346.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=346 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_346.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_347.sh b/test/ntuple_qcd_100_200/batch/sge_347.sh deleted file mode 100755 index 7d6f8e701ba..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_347.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=347 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_347.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_348.sh b/test/ntuple_qcd_100_200/batch/sge_348.sh deleted file mode 100755 index b4c3daabfb7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_348.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=348 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_348.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_349.sh b/test/ntuple_qcd_100_200/batch/sge_349.sh deleted file mode 100755 index e23ee6e8b52..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_349.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=349 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_349.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_35.sh b/test/ntuple_qcd_100_200/batch/sge_35.sh deleted file mode 100755 index 3f8f8a463af..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_350.sh b/test/ntuple_qcd_100_200/batch/sge_350.sh deleted file mode 100755 index 965db4d57e8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_350.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=350 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_350.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_351.sh b/test/ntuple_qcd_100_200/batch/sge_351.sh deleted file mode 100755 index 55fd7f766d3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_351.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=351 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_351.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_352.sh b/test/ntuple_qcd_100_200/batch/sge_352.sh deleted file mode 100755 index 952fb2b965b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_352.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=352 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_352.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_353.sh b/test/ntuple_qcd_100_200/batch/sge_353.sh deleted file mode 100755 index 88e492693ac..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_353.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=353 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_353.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_354.sh b/test/ntuple_qcd_100_200/batch/sge_354.sh deleted file mode 100755 index c8fa6916a09..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_354.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=354 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_354.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_355.sh b/test/ntuple_qcd_100_200/batch/sge_355.sh deleted file mode 100755 index 53288dbdaa9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_355.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=355 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_355.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_356.sh b/test/ntuple_qcd_100_200/batch/sge_356.sh deleted file mode 100755 index 55131ad0915..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_356.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=356 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_356.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_357.sh b/test/ntuple_qcd_100_200/batch/sge_357.sh deleted file mode 100755 index ffebb5d7a7e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_357.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=357 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_357.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_358.sh b/test/ntuple_qcd_100_200/batch/sge_358.sh deleted file mode 100755 index 666841a7bae..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_358.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=358 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_358.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_359.sh b/test/ntuple_qcd_100_200/batch/sge_359.sh deleted file mode 100755 index 84eeeab7b7b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_359.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=359 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_359.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_36.sh b/test/ntuple_qcd_100_200/batch/sge_36.sh deleted file mode 100755 index 75b74514247..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_360.sh b/test/ntuple_qcd_100_200/batch/sge_360.sh deleted file mode 100755 index c3428901217..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_360.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=360 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_360.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_361.sh b/test/ntuple_qcd_100_200/batch/sge_361.sh deleted file mode 100755 index ef8619818be..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_361.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=361 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_361.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_362.sh b/test/ntuple_qcd_100_200/batch/sge_362.sh deleted file mode 100755 index 9a6d8dc05bc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_362.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=362 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_362.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_363.sh b/test/ntuple_qcd_100_200/batch/sge_363.sh deleted file mode 100755 index 6eb3962d94e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_363.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=363 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_363.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_364.sh b/test/ntuple_qcd_100_200/batch/sge_364.sh deleted file mode 100755 index ac2913570aa..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_364.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=364 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_364.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_365.sh b/test/ntuple_qcd_100_200/batch/sge_365.sh deleted file mode 100755 index 5bc638685e1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_365.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=365 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_365.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_366.sh b/test/ntuple_qcd_100_200/batch/sge_366.sh deleted file mode 100755 index ae8c8563059..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_366.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=366 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_366.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_367.sh b/test/ntuple_qcd_100_200/batch/sge_367.sh deleted file mode 100755 index b4f73cc1ec0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_367.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=367 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_367.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_368.sh b/test/ntuple_qcd_100_200/batch/sge_368.sh deleted file mode 100755 index f8b3d1460b2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_368.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=368 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_368.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_369.sh b/test/ntuple_qcd_100_200/batch/sge_369.sh deleted file mode 100755 index fd909177b0d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_369.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=369 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_369.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_37.sh b/test/ntuple_qcd_100_200/batch/sge_37.sh deleted file mode 100755 index e8cb9bc5b1a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_370.sh b/test/ntuple_qcd_100_200/batch/sge_370.sh deleted file mode 100755 index f1393ecdc65..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_370.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=370 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_370.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_371.sh b/test/ntuple_qcd_100_200/batch/sge_371.sh deleted file mode 100755 index 9bb027bacb9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_371.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=371 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_371.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_372.sh b/test/ntuple_qcd_100_200/batch/sge_372.sh deleted file mode 100755 index 8c853d1f11b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_372.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=372 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_372.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_373.sh b/test/ntuple_qcd_100_200/batch/sge_373.sh deleted file mode 100755 index d036be67545..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_373.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=373 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_373.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_374.sh b/test/ntuple_qcd_100_200/batch/sge_374.sh deleted file mode 100755 index 684f2f5e646..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_374.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=374 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_374.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_375.sh b/test/ntuple_qcd_100_200/batch/sge_375.sh deleted file mode 100755 index 3f59610c3cd..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_375.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=375 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_375.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_376.sh b/test/ntuple_qcd_100_200/batch/sge_376.sh deleted file mode 100755 index d6e2784d60b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_376.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=376 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_376.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_377.sh b/test/ntuple_qcd_100_200/batch/sge_377.sh deleted file mode 100755 index 7ab59df686b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_377.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=377 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_377.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_378.sh b/test/ntuple_qcd_100_200/batch/sge_378.sh deleted file mode 100755 index 46374308ab7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_378.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=378 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_378.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_379.sh b/test/ntuple_qcd_100_200/batch/sge_379.sh deleted file mode 100755 index bdc25039a27..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_379.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=379 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_379.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_38.sh b/test/ntuple_qcd_100_200/batch/sge_38.sh deleted file mode 100755 index 46514e8b033..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_380.sh b/test/ntuple_qcd_100_200/batch/sge_380.sh deleted file mode 100755 index 458985ad2c1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_380.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=380 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_380.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_381.sh b/test/ntuple_qcd_100_200/batch/sge_381.sh deleted file mode 100755 index e3a485cca0b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_381.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=381 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_381.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_382.sh b/test/ntuple_qcd_100_200/batch/sge_382.sh deleted file mode 100755 index ad93f230fe6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_382.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=382 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_382.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_383.sh b/test/ntuple_qcd_100_200/batch/sge_383.sh deleted file mode 100755 index 5948bb8da6e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_383.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=383 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_383.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_384.sh b/test/ntuple_qcd_100_200/batch/sge_384.sh deleted file mode 100755 index 9ded279cb67..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_384.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=384 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_384.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_385.sh b/test/ntuple_qcd_100_200/batch/sge_385.sh deleted file mode 100755 index 2d5607f632f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_385.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=385 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_385.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_386.sh b/test/ntuple_qcd_100_200/batch/sge_386.sh deleted file mode 100755 index 4adcdc1b89d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_386.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=386 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_386.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_387.sh b/test/ntuple_qcd_100_200/batch/sge_387.sh deleted file mode 100755 index 94b9a3e8c8e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_387.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=387 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_387.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_388.sh b/test/ntuple_qcd_100_200/batch/sge_388.sh deleted file mode 100755 index d7698d37e35..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_388.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=388 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_388.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_389.sh b/test/ntuple_qcd_100_200/batch/sge_389.sh deleted file mode 100755 index d8c484bb97e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_389.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=389 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_389.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_39.sh b/test/ntuple_qcd_100_200/batch/sge_39.sh deleted file mode 100755 index ffc641f60d4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_390.sh b/test/ntuple_qcd_100_200/batch/sge_390.sh deleted file mode 100755 index 97475588ab3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_390.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=390 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_390.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_391.sh b/test/ntuple_qcd_100_200/batch/sge_391.sh deleted file mode 100755 index dfb0248ee5a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_391.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=391 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_391.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_392.sh b/test/ntuple_qcd_100_200/batch/sge_392.sh deleted file mode 100755 index 3ed14a447d0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_392.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=392 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_392.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_393.sh b/test/ntuple_qcd_100_200/batch/sge_393.sh deleted file mode 100755 index f427684f9b8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_393.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=393 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_393.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_394.sh b/test/ntuple_qcd_100_200/batch/sge_394.sh deleted file mode 100755 index 24e3f69a933..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_394.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=394 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_394.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_395.sh b/test/ntuple_qcd_100_200/batch/sge_395.sh deleted file mode 100755 index 9e9de97f074..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_395.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=395 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_395.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_396.sh b/test/ntuple_qcd_100_200/batch/sge_396.sh deleted file mode 100755 index 83727bdab7e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_396.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=396 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_396.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_397.sh b/test/ntuple_qcd_100_200/batch/sge_397.sh deleted file mode 100755 index ed42f39bef6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_397.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=397 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_397.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_398.sh b/test/ntuple_qcd_100_200/batch/sge_398.sh deleted file mode 100755 index 15be61eab72..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_398.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=398 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_398.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_399.sh b/test/ntuple_qcd_100_200/batch/sge_399.sh deleted file mode 100755 index f83c1a8fd3e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_399.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=399 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_399.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_4.sh b/test/ntuple_qcd_100_200/batch/sge_4.sh deleted file mode 100755 index 722acdc4327..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_40.sh b/test/ntuple_qcd_100_200/batch/sge_40.sh deleted file mode 100755 index c9d8a94c000..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_400.sh b/test/ntuple_qcd_100_200/batch/sge_400.sh deleted file mode 100755 index 7be35543b05..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_400.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=400 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_400.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_401.sh b/test/ntuple_qcd_100_200/batch/sge_401.sh deleted file mode 100755 index 344570154ae..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_401.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=401 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_401.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_402.sh b/test/ntuple_qcd_100_200/batch/sge_402.sh deleted file mode 100755 index a787543bd3c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_402.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=402 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_402.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_403.sh b/test/ntuple_qcd_100_200/batch/sge_403.sh deleted file mode 100755 index ea29e69fe63..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_403.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=403 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_403.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_404.sh b/test/ntuple_qcd_100_200/batch/sge_404.sh deleted file mode 100755 index b1dbf48a710..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_404.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=404 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_404.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_405.sh b/test/ntuple_qcd_100_200/batch/sge_405.sh deleted file mode 100755 index 1547e6c8304..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_405.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=405 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_405.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_406.sh b/test/ntuple_qcd_100_200/batch/sge_406.sh deleted file mode 100755 index c2cd7fb336d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_406.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=406 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_406.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_407.sh b/test/ntuple_qcd_100_200/batch/sge_407.sh deleted file mode 100755 index 23dbc52d086..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_407.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=407 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_407.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_408.sh b/test/ntuple_qcd_100_200/batch/sge_408.sh deleted file mode 100755 index f4c92c978b7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_408.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=408 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_408.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_409.sh b/test/ntuple_qcd_100_200/batch/sge_409.sh deleted file mode 100755 index 1c42a74a866..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_409.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=409 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_409.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_41.sh b/test/ntuple_qcd_100_200/batch/sge_41.sh deleted file mode 100755 index b62b515e7ca..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_410.sh b/test/ntuple_qcd_100_200/batch/sge_410.sh deleted file mode 100755 index 3c82feb9080..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_410.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=410 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_410.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_411.sh b/test/ntuple_qcd_100_200/batch/sge_411.sh deleted file mode 100755 index db9d06c2076..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_411.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=411 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_411.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_412.sh b/test/ntuple_qcd_100_200/batch/sge_412.sh deleted file mode 100755 index 29ae27f2d89..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_412.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=412 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_412.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_413.sh b/test/ntuple_qcd_100_200/batch/sge_413.sh deleted file mode 100755 index 705c8c6c3e0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_413.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=413 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_413.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_414.sh b/test/ntuple_qcd_100_200/batch/sge_414.sh deleted file mode 100755 index c5509894714..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_414.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=414 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_414.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_415.sh b/test/ntuple_qcd_100_200/batch/sge_415.sh deleted file mode 100755 index afee33e3d96..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_415.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=415 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_415.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_416.sh b/test/ntuple_qcd_100_200/batch/sge_416.sh deleted file mode 100755 index 536e8dec0eb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_416.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=416 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_416.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_417.sh b/test/ntuple_qcd_100_200/batch/sge_417.sh deleted file mode 100755 index 5bd57c0d5f1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_417.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=417 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_417.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_418.sh b/test/ntuple_qcd_100_200/batch/sge_418.sh deleted file mode 100755 index f71b493d13b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_418.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=418 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_418.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_419.sh b/test/ntuple_qcd_100_200/batch/sge_419.sh deleted file mode 100755 index e5e5c39cf67..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_419.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=419 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_419.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_42.sh b/test/ntuple_qcd_100_200/batch/sge_42.sh deleted file mode 100755 index fcc9ad15681..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_420.sh b/test/ntuple_qcd_100_200/batch/sge_420.sh deleted file mode 100755 index c6a5fd2f579..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_420.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=420 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_420.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_421.sh b/test/ntuple_qcd_100_200/batch/sge_421.sh deleted file mode 100755 index 4d7680ccb53..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_421.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=421 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_421.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_422.sh b/test/ntuple_qcd_100_200/batch/sge_422.sh deleted file mode 100755 index e17e326f273..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_422.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=422 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_422.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_423.sh b/test/ntuple_qcd_100_200/batch/sge_423.sh deleted file mode 100755 index 95185229ed5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_423.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=423 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_423.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_424.sh b/test/ntuple_qcd_100_200/batch/sge_424.sh deleted file mode 100755 index 066f8eb54ae..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_424.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=424 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_424.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_425.sh b/test/ntuple_qcd_100_200/batch/sge_425.sh deleted file mode 100755 index c9b3e108b10..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_425.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=425 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_425.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_426.sh b/test/ntuple_qcd_100_200/batch/sge_426.sh deleted file mode 100755 index ad71d0c2c4a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_426.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=426 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_426.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_427.sh b/test/ntuple_qcd_100_200/batch/sge_427.sh deleted file mode 100755 index c8affca13e1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_427.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=427 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_427.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_428.sh b/test/ntuple_qcd_100_200/batch/sge_428.sh deleted file mode 100755 index 3471318ef39..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_428.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=428 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_428.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_429.sh b/test/ntuple_qcd_100_200/batch/sge_429.sh deleted file mode 100755 index c969c744aa4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_429.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=429 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_429.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_43.sh b/test/ntuple_qcd_100_200/batch/sge_43.sh deleted file mode 100755 index fa78b76e702..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_430.sh b/test/ntuple_qcd_100_200/batch/sge_430.sh deleted file mode 100755 index ebe9512cb17..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_430.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=430 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_430.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_431.sh b/test/ntuple_qcd_100_200/batch/sge_431.sh deleted file mode 100755 index ae283d09a41..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_431.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=431 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_431.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_432.sh b/test/ntuple_qcd_100_200/batch/sge_432.sh deleted file mode 100755 index 41af62aba2b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_432.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=432 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_432.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_433.sh b/test/ntuple_qcd_100_200/batch/sge_433.sh deleted file mode 100755 index 29f65d6b91a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_433.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=433 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_433.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_434.sh b/test/ntuple_qcd_100_200/batch/sge_434.sh deleted file mode 100755 index 467da785d10..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_434.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=434 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_434.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_435.sh b/test/ntuple_qcd_100_200/batch/sge_435.sh deleted file mode 100755 index c44acd8f438..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_435.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=435 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_435.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_436.sh b/test/ntuple_qcd_100_200/batch/sge_436.sh deleted file mode 100755 index 66097a3242f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_436.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=436 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_436.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_437.sh b/test/ntuple_qcd_100_200/batch/sge_437.sh deleted file mode 100755 index c0897cae2e0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_437.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=437 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_437.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_438.sh b/test/ntuple_qcd_100_200/batch/sge_438.sh deleted file mode 100755 index 07bb4849750..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_438.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=438 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_438.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_439.sh b/test/ntuple_qcd_100_200/batch/sge_439.sh deleted file mode 100755 index 785960820ba..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_439.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=439 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_439.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_44.sh b/test/ntuple_qcd_100_200/batch/sge_44.sh deleted file mode 100755 index b537d88ff19..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_440.sh b/test/ntuple_qcd_100_200/batch/sge_440.sh deleted file mode 100755 index 0624f586f5d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_440.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=440 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_440.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_441.sh b/test/ntuple_qcd_100_200/batch/sge_441.sh deleted file mode 100755 index aed24b06d28..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_441.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=441 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_441.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_442.sh b/test/ntuple_qcd_100_200/batch/sge_442.sh deleted file mode 100755 index c76a43902d3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_442.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=442 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_442.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_443.sh b/test/ntuple_qcd_100_200/batch/sge_443.sh deleted file mode 100755 index d28bef0ac97..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_443.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=443 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_443.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_444.sh b/test/ntuple_qcd_100_200/batch/sge_444.sh deleted file mode 100755 index 60425c30e7e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_444.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=444 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_444.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_445.sh b/test/ntuple_qcd_100_200/batch/sge_445.sh deleted file mode 100755 index 47876290541..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_445.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=445 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_445.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_446.sh b/test/ntuple_qcd_100_200/batch/sge_446.sh deleted file mode 100755 index ad77b90a074..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_446.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=446 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_446.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_447.sh b/test/ntuple_qcd_100_200/batch/sge_447.sh deleted file mode 100755 index 0268353ef2f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_447.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=447 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_447.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_448.sh b/test/ntuple_qcd_100_200/batch/sge_448.sh deleted file mode 100755 index 7bf2502e98a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_448.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=448 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_448.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_449.sh b/test/ntuple_qcd_100_200/batch/sge_449.sh deleted file mode 100755 index b1b7b4e8a7b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_449.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=449 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_449.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_45.sh b/test/ntuple_qcd_100_200/batch/sge_45.sh deleted file mode 100755 index 3ce6c52a479..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_450.sh b/test/ntuple_qcd_100_200/batch/sge_450.sh deleted file mode 100755 index f273109c90d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_450.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=450 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_450.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_451.sh b/test/ntuple_qcd_100_200/batch/sge_451.sh deleted file mode 100755 index 99d88a087ff..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_451.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=451 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_451.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_452.sh b/test/ntuple_qcd_100_200/batch/sge_452.sh deleted file mode 100755 index c9dc87de289..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_452.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=452 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_452.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_453.sh b/test/ntuple_qcd_100_200/batch/sge_453.sh deleted file mode 100755 index 48df510c0d2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_453.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=453 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_453.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_454.sh b/test/ntuple_qcd_100_200/batch/sge_454.sh deleted file mode 100755 index 3d15c5be731..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_454.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=454 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_454.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_455.sh b/test/ntuple_qcd_100_200/batch/sge_455.sh deleted file mode 100755 index 4526ca40ce0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_455.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=455 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_455.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_456.sh b/test/ntuple_qcd_100_200/batch/sge_456.sh deleted file mode 100755 index 767f5297d6d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_456.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=456 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_456.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_457.sh b/test/ntuple_qcd_100_200/batch/sge_457.sh deleted file mode 100755 index 37a80228103..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_457.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=457 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_457.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_458.sh b/test/ntuple_qcd_100_200/batch/sge_458.sh deleted file mode 100755 index d225e17a571..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_458.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=458 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_458.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_459.sh b/test/ntuple_qcd_100_200/batch/sge_459.sh deleted file mode 100755 index 6cd1bdc44e9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_459.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=459 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_459.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_46.sh b/test/ntuple_qcd_100_200/batch/sge_46.sh deleted file mode 100755 index e43a396d00e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_460.sh b/test/ntuple_qcd_100_200/batch/sge_460.sh deleted file mode 100755 index d5ed456487a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_460.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=460 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_460.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_461.sh b/test/ntuple_qcd_100_200/batch/sge_461.sh deleted file mode 100755 index a149b03e69d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_461.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=461 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_461.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_462.sh b/test/ntuple_qcd_100_200/batch/sge_462.sh deleted file mode 100755 index 21bed29d24b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_462.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=462 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_462.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_463.sh b/test/ntuple_qcd_100_200/batch/sge_463.sh deleted file mode 100755 index 07dafcceb2d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_463.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=463 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_463.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_464.sh b/test/ntuple_qcd_100_200/batch/sge_464.sh deleted file mode 100755 index a1c44d51a17..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_464.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=464 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_464.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_465.sh b/test/ntuple_qcd_100_200/batch/sge_465.sh deleted file mode 100755 index 93370ce5436..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_465.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=465 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_465.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_466.sh b/test/ntuple_qcd_100_200/batch/sge_466.sh deleted file mode 100755 index 1c066ac482c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_466.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=466 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_466.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_467.sh b/test/ntuple_qcd_100_200/batch/sge_467.sh deleted file mode 100755 index 14a2e3efb26..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_467.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=467 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_467.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_468.sh b/test/ntuple_qcd_100_200/batch/sge_468.sh deleted file mode 100755 index 20f83503a1c..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_468.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=468 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_468.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_469.sh b/test/ntuple_qcd_100_200/batch/sge_469.sh deleted file mode 100755 index f3f6d8e540a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_469.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=469 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_469.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_47.sh b/test/ntuple_qcd_100_200/batch/sge_47.sh deleted file mode 100755 index e14011f75ba..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_470.sh b/test/ntuple_qcd_100_200/batch/sge_470.sh deleted file mode 100755 index 8578abc4d0b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_470.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=470 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_470.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_471.sh b/test/ntuple_qcd_100_200/batch/sge_471.sh deleted file mode 100755 index a8dfc378bc9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_471.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=471 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_471.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_472.sh b/test/ntuple_qcd_100_200/batch/sge_472.sh deleted file mode 100755 index e846126a84f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_472.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=472 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_472.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_473.sh b/test/ntuple_qcd_100_200/batch/sge_473.sh deleted file mode 100755 index 2fa436cfc9d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_473.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=473 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_473.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_474.sh b/test/ntuple_qcd_100_200/batch/sge_474.sh deleted file mode 100755 index 7cc30df6ab9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_474.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=474 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_474.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_475.sh b/test/ntuple_qcd_100_200/batch/sge_475.sh deleted file mode 100755 index dae112724ae..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_475.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=475 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_475.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_476.sh b/test/ntuple_qcd_100_200/batch/sge_476.sh deleted file mode 100755 index 76a116bbab4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_476.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=476 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_476.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_477.sh b/test/ntuple_qcd_100_200/batch/sge_477.sh deleted file mode 100755 index d160a77e765..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_477.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=477 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_477.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_478.sh b/test/ntuple_qcd_100_200/batch/sge_478.sh deleted file mode 100755 index 4d9b856ca4a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_478.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=478 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_478.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_479.sh b/test/ntuple_qcd_100_200/batch/sge_479.sh deleted file mode 100755 index 4d1a4951ac4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_479.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=479 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_479.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_48.sh b/test/ntuple_qcd_100_200/batch/sge_48.sh deleted file mode 100755 index 2067399b368..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_480.sh b/test/ntuple_qcd_100_200/batch/sge_480.sh deleted file mode 100755 index 05861605742..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_480.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=480 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_480.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_481.sh b/test/ntuple_qcd_100_200/batch/sge_481.sh deleted file mode 100755 index 4341db34a36..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_481.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=481 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_481.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_482.sh b/test/ntuple_qcd_100_200/batch/sge_482.sh deleted file mode 100755 index 30ef927676b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_482.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=482 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_482.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_483.sh b/test/ntuple_qcd_100_200/batch/sge_483.sh deleted file mode 100755 index 8a8451a3065..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_483.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=483 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_483.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_484.sh b/test/ntuple_qcd_100_200/batch/sge_484.sh deleted file mode 100755 index 45119f95551..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_484.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=484 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_484.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_485.sh b/test/ntuple_qcd_100_200/batch/sge_485.sh deleted file mode 100755 index e3bb9f642d0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_485.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=485 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_485.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_486.sh b/test/ntuple_qcd_100_200/batch/sge_486.sh deleted file mode 100755 index a7ea04fdbd3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_486.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=486 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_486.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_487.sh b/test/ntuple_qcd_100_200/batch/sge_487.sh deleted file mode 100755 index 61c2189b131..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_487.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=487 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_487.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_488.sh b/test/ntuple_qcd_100_200/batch/sge_488.sh deleted file mode 100755 index 8874a41f2bb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_488.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=488 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_488.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_489.sh b/test/ntuple_qcd_100_200/batch/sge_489.sh deleted file mode 100755 index 54bf183c5c6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_489.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=489 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_489.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_49.sh b/test/ntuple_qcd_100_200/batch/sge_49.sh deleted file mode 100755 index 0550c36ddaf..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_490.sh b/test/ntuple_qcd_100_200/batch/sge_490.sh deleted file mode 100755 index 561dcbf3ccc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_490.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=490 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_490.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_491.sh b/test/ntuple_qcd_100_200/batch/sge_491.sh deleted file mode 100755 index e7098c06213..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_491.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=491 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_491.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_492.sh b/test/ntuple_qcd_100_200/batch/sge_492.sh deleted file mode 100755 index a1a113b09eb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_492.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=492 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_492.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_493.sh b/test/ntuple_qcd_100_200/batch/sge_493.sh deleted file mode 100755 index 37ea9d21c7d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_493.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=493 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_493.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_494.sh b/test/ntuple_qcd_100_200/batch/sge_494.sh deleted file mode 100755 index 3541d45633d..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_494.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=494 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_494.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_495.sh b/test/ntuple_qcd_100_200/batch/sge_495.sh deleted file mode 100755 index 0232140f7d6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_495.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=495 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_495.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_496.sh b/test/ntuple_qcd_100_200/batch/sge_496.sh deleted file mode 100755 index 2bdf452e4a5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_496.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=496 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_496.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_497.sh b/test/ntuple_qcd_100_200/batch/sge_497.sh deleted file mode 100755 index 9627cd5dfbe..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_497.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=497 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_497.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_498.sh b/test/ntuple_qcd_100_200/batch/sge_498.sh deleted file mode 100755 index f7a12942079..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_498.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=498 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_498.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_499.sh b/test/ntuple_qcd_100_200/batch/sge_499.sh deleted file mode 100755 index 4a84802b420..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_499.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=499 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_499.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_5.sh b/test/ntuple_qcd_100_200/batch/sge_5.sh deleted file mode 100755 index cd258aafa1f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_50.sh b/test/ntuple_qcd_100_200/batch/sge_50.sh deleted file mode 100755 index 8bd7e0d00df..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_51.sh b/test/ntuple_qcd_100_200/batch/sge_51.sh deleted file mode 100755 index 3b9c7db96f9..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_52.sh b/test/ntuple_qcd_100_200/batch/sge_52.sh deleted file mode 100755 index 8deb92847b2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_53.sh b/test/ntuple_qcd_100_200/batch/sge_53.sh deleted file mode 100755 index bf95ac1ea9b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_54.sh b/test/ntuple_qcd_100_200/batch/sge_54.sh deleted file mode 100755 index 223d05df026..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_55.sh b/test/ntuple_qcd_100_200/batch/sge_55.sh deleted file mode 100755 index 75ac4374e60..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_56.sh b/test/ntuple_qcd_100_200/batch/sge_56.sh deleted file mode 100755 index ef721c855d7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_57.sh b/test/ntuple_qcd_100_200/batch/sge_57.sh deleted file mode 100755 index f05afd26188..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_58.sh b/test/ntuple_qcd_100_200/batch/sge_58.sh deleted file mode 100755 index 1d0aacc911b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_59.sh b/test/ntuple_qcd_100_200/batch/sge_59.sh deleted file mode 100755 index 56e331b77ba..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_6.sh b/test/ntuple_qcd_100_200/batch/sge_6.sh deleted file mode 100755 index 612fe7db9d3..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_60.sh b/test/ntuple_qcd_100_200/batch/sge_60.sh deleted file mode 100755 index c158bfe3ffb..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_61.sh b/test/ntuple_qcd_100_200/batch/sge_61.sh deleted file mode 100755 index 77124adeb5b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_62.sh b/test/ntuple_qcd_100_200/batch/sge_62.sh deleted file mode 100755 index a19cef24bf1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_63.sh b/test/ntuple_qcd_100_200/batch/sge_63.sh deleted file mode 100755 index fe883150112..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_64.sh b/test/ntuple_qcd_100_200/batch/sge_64.sh deleted file mode 100755 index ab614fdc30f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_65.sh b/test/ntuple_qcd_100_200/batch/sge_65.sh deleted file mode 100755 index 330ef3e6120..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_66.sh b/test/ntuple_qcd_100_200/batch/sge_66.sh deleted file mode 100755 index b7531a6a1a4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_67.sh b/test/ntuple_qcd_100_200/batch/sge_67.sh deleted file mode 100755 index fe293754424..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_68.sh b/test/ntuple_qcd_100_200/batch/sge_68.sh deleted file mode 100755 index 231e80f19b5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_69.sh b/test/ntuple_qcd_100_200/batch/sge_69.sh deleted file mode 100755 index e1b93d8eb38..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_7.sh b/test/ntuple_qcd_100_200/batch/sge_7.sh deleted file mode 100755 index 1c7b9b50a28..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_70.sh b/test/ntuple_qcd_100_200/batch/sge_70.sh deleted file mode 100755 index 98bdccb777b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_71.sh b/test/ntuple_qcd_100_200/batch/sge_71.sh deleted file mode 100755 index 5b5555481d4..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_72.sh b/test/ntuple_qcd_100_200/batch/sge_72.sh deleted file mode 100755 index 02f4f671b49..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_73.sh b/test/ntuple_qcd_100_200/batch/sge_73.sh deleted file mode 100755 index 3b979a542b6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_74.sh b/test/ntuple_qcd_100_200/batch/sge_74.sh deleted file mode 100755 index 5938e2f31b2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_75.sh b/test/ntuple_qcd_100_200/batch/sge_75.sh deleted file mode 100755 index aa47e353d89..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_76.sh b/test/ntuple_qcd_100_200/batch/sge_76.sh deleted file mode 100755 index 0f809e9cba8..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_77.sh b/test/ntuple_qcd_100_200/batch/sge_77.sh deleted file mode 100755 index 9bab9cc0d54..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_78.sh b/test/ntuple_qcd_100_200/batch/sge_78.sh deleted file mode 100755 index e2e2d1e88b2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_79.sh b/test/ntuple_qcd_100_200/batch/sge_79.sh deleted file mode 100755 index 5614cb19f60..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_8.sh b/test/ntuple_qcd_100_200/batch/sge_8.sh deleted file mode 100755 index 8a2b23a259a..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_80.sh b/test/ntuple_qcd_100_200/batch/sge_80.sh deleted file mode 100755 index 11a43fc97a0..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_81.sh b/test/ntuple_qcd_100_200/batch/sge_81.sh deleted file mode 100755 index 779e259065f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_82.sh b/test/ntuple_qcd_100_200/batch/sge_82.sh deleted file mode 100755 index 5966d82983f..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_83.sh b/test/ntuple_qcd_100_200/batch/sge_83.sh deleted file mode 100755 index b906028e3d7..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_84.sh b/test/ntuple_qcd_100_200/batch/sge_84.sh deleted file mode 100755 index fc5b12f0d32..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_85.sh b/test/ntuple_qcd_100_200/batch/sge_85.sh deleted file mode 100755 index 90781e34cb5..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_86.sh b/test/ntuple_qcd_100_200/batch/sge_86.sh deleted file mode 100755 index fa08268ed5e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_87.sh b/test/ntuple_qcd_100_200/batch/sge_87.sh deleted file mode 100755 index d8a097bdb15..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_88.sh b/test/ntuple_qcd_100_200/batch/sge_88.sh deleted file mode 100755 index ea9022fc134..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_89.sh b/test/ntuple_qcd_100_200/batch/sge_89.sh deleted file mode 100755 index 6f11b9aa46b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_9.sh b/test/ntuple_qcd_100_200/batch/sge_9.sh deleted file mode 100755 index d66846a6ccc..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_90.sh b/test/ntuple_qcd_100_200/batch/sge_90.sh deleted file mode 100755 index c492c13dc85..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_91.sh b/test/ntuple_qcd_100_200/batch/sge_91.sh deleted file mode 100755 index 977d31aa995..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_92.sh b/test/ntuple_qcd_100_200/batch/sge_92.sh deleted file mode 100755 index 11ee56d032b..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_93.sh b/test/ntuple_qcd_100_200/batch/sge_93.sh deleted file mode 100755 index f207f7bc034..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_94.sh b/test/ntuple_qcd_100_200/batch/sge_94.sh deleted file mode 100755 index b891b6a10a1..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_95.sh b/test/ntuple_qcd_100_200/batch/sge_95.sh deleted file mode 100755 index 58c46d80b2e..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_96.sh b/test/ntuple_qcd_100_200/batch/sge_96.sh deleted file mode 100755 index ec3053504f6..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_97.sh b/test/ntuple_qcd_100_200/batch/sge_97.sh deleted file mode 100755 index 9c69e2068b2..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_98.sh b/test/ntuple_qcd_100_200/batch/sge_98.sh deleted file mode 100755 index af3b74f1103..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batch/sge_99.sh b/test/ntuple_qcd_100_200/batch/sge_99.sh deleted file mode 100755 index 13eb30c5459..00000000000 --- a/test/ntuple_qcd_100_200/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/batchscript.sh b/test/ntuple_qcd_100_200/batchscript.sh deleted file mode 100755 index 22ce21db38c..00000000000 --- a/test/ntuple_qcd_100_200/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_100_200" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/condor.sub b/test/ntuple_qcd_100_200/condor.sub deleted file mode 100644 index 97c8e050939..00000000000 --- a/test/ntuple_qcd_100_200/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT100to200TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ntuple_qcd_100_200_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 500 - \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/helper b/test/ntuple_qcd_100_200/helper deleted file mode 120000 index 93b6f58ca3b..00000000000 --- a/test/ntuple_qcd_100_200/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_100_200/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/output b/test/ntuple_qcd_100_200/output deleted file mode 120000 index 7220445e9ca..00000000000 --- a/test/ntuple_qcd_100_200/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_100_200/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_100_200/sge_sub.sh b/test/ntuple_qcd_100_200/sge_sub.sh deleted file mode 100755 index 08ab37a7061..00000000000 --- a/test/ntuple_qcd_100_200/sge_sub.sh +++ /dev/null @@ -1,500 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_182.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_183.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_184.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_185.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_186.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_187.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_188.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_189.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_190.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_191.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_192.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_193.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_194.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_195.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_196.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_197.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_198.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_199.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_200.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_201.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_202.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_203.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_204.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_205.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_206.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_207.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_208.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_209.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_210.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_211.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_212.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_213.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_214.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_215.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_216.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_217.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_218.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_219.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_220.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_221.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_222.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_223.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_224.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_225.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_226.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_227.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_228.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_229.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_230.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_231.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_232.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_233.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_234.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_235.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_236.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_237.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_238.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_239.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_240.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_241.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_242.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_243.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_244.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_245.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_246.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_247.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_248.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_249.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_250.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_251.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_252.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_253.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_254.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_255.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_256.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_257.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_258.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_259.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_260.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_261.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_262.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_263.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_264.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_265.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_266.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_267.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_268.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_269.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_270.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_271.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_272.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_273.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_274.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_275.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_276.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_277.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_278.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_279.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_280.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_281.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_282.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_283.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_284.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_285.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_286.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_287.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_288.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_289.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_290.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_291.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_292.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_293.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_294.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_295.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_296.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_297.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_298.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_299.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_300.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_301.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_302.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_303.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_304.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_305.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_306.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_307.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_308.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_309.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_310.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_311.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_312.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_313.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_314.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_315.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_316.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_317.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_318.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_319.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_320.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_321.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_322.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_323.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_324.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_325.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_326.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_327.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_328.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_329.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_330.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_331.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_332.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_333.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_334.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_335.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_336.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_337.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_338.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_339.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_340.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_341.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_342.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_343.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_344.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_345.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_346.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_347.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_348.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_349.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_350.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_351.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_352.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_353.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_354.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_355.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_356.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_357.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_358.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_359.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_360.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_361.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_362.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_363.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_364.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_365.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_366.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_367.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_368.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_369.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_370.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_371.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_372.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_373.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_374.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_375.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_376.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_377.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_378.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_379.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_380.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_381.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_382.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_383.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_384.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_385.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_386.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_387.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_388.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_389.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_390.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_391.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_392.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_393.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_394.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_395.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_396.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_397.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_398.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_399.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_400.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_401.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_402.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_403.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_404.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_405.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_406.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_407.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_408.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_409.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_410.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_411.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_412.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_413.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_414.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_415.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_416.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_417.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_418.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_419.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_420.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_421.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_422.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_423.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_424.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_425.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_426.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_427.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_428.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_429.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_430.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_431.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_432.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_433.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_434.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_435.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_436.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_437.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_438.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_439.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_440.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_441.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_442.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_443.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_444.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_445.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_446.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_447.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_448.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_449.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_450.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_451.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_452.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_453.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_454.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_455.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_456.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_457.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_458.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_459.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_460.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_461.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_462.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_463.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_464.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_465.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_466.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_467.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_468.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_469.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_470.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_471.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_472.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_473.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_474.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_475.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_476.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_477.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_478.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_479.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_480.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_481.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_482.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_483.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_484.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_485.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_486.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_487.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_488.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_489.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_490.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_491.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_492.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_493.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_494.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_495.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_496.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_497.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_498.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_100_200/batch/sge_499.sh diff --git a/test/ntuple_qcd_1500_2000/ademoor.cc b/test/ntuple_qcd_1500_2000/ademoor.cc deleted file mode 100644 index deaf2b8f091d82a2cfd16a3f14f66f2eb0eaa7e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai%bx>UGlE#t239f?<9xQ`fumHg|0YY$h8QdYbTL^9g3=$xO;0}S{?iL)v;BG;d z)cx+ackiv;?W*^We!BbgTj!}$^*bm4gg=4!*Flq#(NN)(l6y+gjLppL9UYzj-zw5m z$Di{rv#7StCa#vQ|0v)Qkw*g`uFB-#appb!y;oM?azJH*|!c+ za=khg3Dms4^+eGhkJK`2n`3>>5|}U#8ear#4BRC$yzvBvfEysEQ#*GC6m;-I521w% zsb!%4`lq8fPQ`(s(;tW#71WVaXL_p(En< zu0Ot|7k^dV}G} zAdV4C7Xok zrhKo$-;#cuwDc=npB(H;QXOx(g&!>1YM}f>L`Q6 zIQV@&T|!CGTGyKAT?~?{)XOO`!2*=!u9ictKfwBLs_Zf#6_);`N!nhM^Z7RZX6{u2 zPIV5`sXBgkOtsWt^~Evu9H!8qbY;Jdphd$3hOClP^Vy8t9y2GpQ_)^Gx1W4>N)&oW zjWwEy+ zor+M0_%{{GmJ;)0MDVTUVWD7;PSF)xQuxZc{#xw|9J`c^EsU69Ezh0o+>yb9GD5A2 zSnyCQ&UugM0xJ5`jH>nTyt$YTK432}8T28WOGU)#UD^v)l3{qJSMc1JYB*c0YF+X& zRL~=_JS!?(%6r70jYHDIB;xJCZSO=zPPL2^)4wxhOR-kg#E$)S%GFeOS}tocF3BC) z^Q~~cS;IQll8|cWt)LV&QHzcXyws;1jG$-?2 z`v^n5P;&J?IMj@Yol0#-rZ3nt1h>lT={ubd+7zPGy3b+3i+bwXIVVbV@dOcxDGrV$ zMk$tnS+eA|F?B&fiw2!8Si+TAjehdySJ}lYqFQ{mIKy1Wv@PLj1e1v)E&PtV+vS`# zq(8WH;)c(hauZ1I6(Ian8sxT%;1WsYVq!RREOFPO+jY4Ot2h>@U`vxkxsn;dA9t`x zwmz5Hh&CT*0&9r{S8|=0J-Krdzz!K$aFFPIu0YFZ-_y>Mk*}{YQ`6%F!1{;rZ-FxV;mi78;M~?5< z_3r|O%g2#tQR>|_CLtVeW~6lNzs|3D*#bgz*91ZU-G;FcTddIjNGa{j8r@99Yf=Qf zU*A#MY3)JlYXh!sGlBcu+ip8;)d#VMn<|kg&ml!Q{uB1N(X(`Yjk2r@4WsbEx@=qM zKyj%{HRerX*xR-jl%ol~NV|D`gF&6XeR=I>}qWV~rRxd#HpeOp-4(7Zld88h&fBSNXSld(fU52S_#nLxac__fsa{Zn> zLP0pmO5)s6PDsM)*>ZWAM#O~tpfe6BG%NnM+*iB{OI^X+3EuFkSK+{_*=~os#&nu692|Ax$5uCKL$&Nm6_FNLWW$Li3~1TQHp)dmYj5@6`Kv@ ztu4L>lXRyH&8ko6ETY#Qj16$~yaHmStlb)^-l3(>tDjidjYv(EUEBXM-W=|8hv$gj z=E7+kM=ih;7#ygnlXhOotYze3BILKvhm&(TXaEq>qArvejOKn}2;mq|(~rBg&zfy( z;X8Z7-PDkhRcn3P2DNk$2kicD& zGT`sT)jl(h6YPkkh50RWvd^Yo2*9Rd{I^(eDe@;obQj(!MzoU^y^k=v*18>4xt%Ar zpUUoyD}P0`nM5V={PdA|!0b)-f)vj|PrmDY+Qb*}@KCRx{L1!J#N!s#`w{%BTf>@K1!CC+{C&({zI^-MUJoy>GzzlDl0fBVy@Kyha9+?OaC*Qn7!|sn zBCL88m5l(O{Ce<6ASc94-2Osc`7C);QGNms*XFmfqk8ng_Zofd5pce#v_2DZFRfnP zdNhz=2$=c3mMvdS;4k|6zlrcq)4wqvvayBBlZs|)?(D#6YK1`Xl+cn@aq`u;j4Gt( zW6ZWfJzVo(=1s>QLMsAH4;+?BS_1z7z&+T110d|rqyHI*6vjb_q~IV#!v6q3axm#1 z4FQS=#-aGLo8q6F3qEXtKdk@FerWk0rU4%&KqFDpSS5!fXZ>hIIpmdWY_^rGIuOg1 zUM_OK>z-gVL%Gn4$yVEOxlHFJ(-+fdQlqgS;)4OGGQ^6J;^fBqhq0AlyJri_?%ZYEYaMd% zhyGCj_64^EUbEV*-EW0*-0aFKSvpx~{<=YTA0OV_?p`?ZtKH(~R+2jS`w1Uj6Zwh| z&H&7RlK{ToUk&RU#6&sH_Q6SL;*x%-fVl6lr+)nPlKyX_{#5_XC{#~pM@Lt)rvi?- zql>A%3+Ml^jFWGqvNe@z2$x4YR`2}*C}gXx1eY9a!gs)`o`6>I_z%mD*8UgEFp{2_ zJ?@FVqyED(dNAmZh6n|M$teE11;xMJ;R)T;$G zzPh^p!q#gJ{;c8dR7*VXYzj4wUbiVD9@z;;GbqMde@I7Hhe1MM^aWJmk~lZ2FmG~T zHpZq9p;5Q#evR&Ja}5vY+Fq2=mTd6ZTjGwlnkWl6vWA|d?5R~+bb9o}-g7~%Qlw&R zS57(WSTEIsAAVPwLD6@GI3g=_pjR!YFcFwyAYRievl_}mL}hj8#T}id(hKRLvFEg_*%i=gY4TnCI}=s5&>1 zwA-5`A|ouH?|kS0Jrbo{)qXhbJHT(-om&P3Bwpe;(9|r9V5L{%^XJ{n!-tA|SDI(M zm0mwL#rbTo`+0}_Y9dn$ScOu(Jz1^*b*NL!l~;&4F%N94|9TzmsAURsKKfGIIY<(> z`$EfFp&EfeZHbRVxDJYtj0In1{G@jPg(y9|7-I^kK22Q~{EXCf(3Z)(qGvk9_uZEL z_$Gz%<6E9l`JkN}%mu1s<=bcdH^%3zGJ4U3vQcKKChz&2{d61X_xFFg4vubt5s^6S zh~KF8ab|$1Z462zvb<51(+&=k22!a;X=x;)8F{zkGHGM@U_tHKB zej*@hdj6h1@y0?E+&#FLBF%OHRX5E@1cQiMhMAriQU5(#fBJ(bJL_LfMNqQ zt<;x-gxb_1I7)M*8ZxhZ`6N+_8oq_8_{VwLF(hy**j_^l%hKWlEsc$)%{YfU0W6sQ z(aS^zs!Z?04<|px*Gd?0ER!kboiHy*>0j{ieH^z^_|n_(AxXSlrsDLo(_&|SW^eA& zk+eh^w!5}OO^Q5Vsr7nUZ^oxy? z3M}E51k0eG#47*siF$%*DkGJlsufk41xDvcaT(WukT8M z9LqIsc?u+twlyj8Tf`&Zq>uxb>flfaiW0w2o}3)VP4hgZ?us|+`|Mwj#+-oWczHT5 zJWrc9%=I{d+1q}VvBFLC8{(Ya+}^j5*|2QYY?&Rd0WQk9b9B}Ao59odT$Nao-7@j( z$hpI9={Y3b>Th}_RdOb=2D{zh&UhcZuSmo5KXIQM>BPOys5T5tAY5|OUL?pwm6`BG zO+r`udQ45<5CWuC+PK6(nxFvz`h_K5VQFK&tNemLf4su%UkfYTos!4bI_odUs&^7Q z8D2*Ngt%+(cMj|qi-o-NKa%L!ioTj9m1(22sqRwd z_Ur{QQIjg3{DjsuS<3N7Dw?y{mo9#H8t>e=5z;m7xgt3$^L8G@L;iI;=GYB=bNjH(4bS~UJGamIr zFOa!VTByFp$JJZf2JpLtKmsb6wOJ3eJjV&uq z5H*-@e2YDS?QM?`%Lz@N>{c>WC|tnxV8pA1ZI?j^R(~<`+QN5(s1&$qjhw;sXq}0f zaoZ+{c3N(%)0x79weIxbKcO4_nBHEAQa5@%@Y>*}0?<<&#@!QK@6{n)q>)28+23wI<^mPmnfAHXY~{0 zpG&bMb;fKC?BR`!UtP#@v+@VsA*4 zAtKFXwfNLpy~{N-+#Rq&%3RgB0r&~ErTp`F>8GDm%|MtT4xjrib3fQ=aBGI?82Sx@TBCb$kAIkQNvvE@}dqW^H{#BeXCHt z-hMGNFco8iD+FFn_o)GUCj7KUpO(Xj+uUE*`!Qm%zCy8$d42Q-cLdn%H7&j=^U`IR zDTgr6#}u?IY~;JAcdnjSx}VicPjG91AgnpQddm?wyk>A2!k1R*DZbhfi(XHdL{?K` zx;!=QRnQ};hmvKee8SSz7RyIX=w)AphsDQvF0y?zA(gjpno6$JSFB%Y-6%|yqM&@V zFc*_H<1e!|n+XQ2F}Tj5!1Ei&MDhIFGb1eH;A`Hmvi+@VkG>pdzOKJ?9^!~^c%c{9 zttec3ny!%2(5c~82X1CbIPeN>%FM2EYWjNliFFgUy-OGkv1^-)l^2jvvLm{o|MU`d W1dcqOVlJ=-8pXka5nBHt#s31Yu0~M+ diff --git a/test/ntuple_qcd_1500_2000/batch/condor_0.sub b/test/ntuple_qcd_1500_2000/batch/condor_0.sub deleted file mode 100644 index e59ef29d9ca..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_1.sub b/test/ntuple_qcd_1500_2000/batch/condor_1.sub deleted file mode 100644 index 5668249536d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_10.sub b/test/ntuple_qcd_1500_2000/batch/condor_10.sub deleted file mode 100644 index 53efc966c71..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_100.sub b/test/ntuple_qcd_1500_2000/batch/condor_100.sub deleted file mode 100644 index 1719e8cee8c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_101.sub b/test/ntuple_qcd_1500_2000/batch/condor_101.sub deleted file mode 100644 index 8725313b652..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_102.sub b/test/ntuple_qcd_1500_2000/batch/condor_102.sub deleted file mode 100644 index de62de2f2b0..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_103.sub b/test/ntuple_qcd_1500_2000/batch/condor_103.sub deleted file mode 100644 index 72266f43872..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_104.sub b/test/ntuple_qcd_1500_2000/batch/condor_104.sub deleted file mode 100644 index 73472fbafc0..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_105.sub b/test/ntuple_qcd_1500_2000/batch/condor_105.sub deleted file mode 100644 index b82efc647df..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_106.sub b/test/ntuple_qcd_1500_2000/batch/condor_106.sub deleted file mode 100644 index 820fc83f399..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_107.sub b/test/ntuple_qcd_1500_2000/batch/condor_107.sub deleted file mode 100644 index e09a2a591ed..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_108.sub b/test/ntuple_qcd_1500_2000/batch/condor_108.sub deleted file mode 100644 index c66d66fd72b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_109.sub b/test/ntuple_qcd_1500_2000/batch/condor_109.sub deleted file mode 100644 index 902978b417b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_11.sub b/test/ntuple_qcd_1500_2000/batch/condor_11.sub deleted file mode 100644 index a8aa207b76d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_110.sub b/test/ntuple_qcd_1500_2000/batch/condor_110.sub deleted file mode 100644 index 8ca435749fa..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_111.sub b/test/ntuple_qcd_1500_2000/batch/condor_111.sub deleted file mode 100644 index a5f4aed699c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_112.sub b/test/ntuple_qcd_1500_2000/batch/condor_112.sub deleted file mode 100644 index 75608869b4e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_113.sub b/test/ntuple_qcd_1500_2000/batch/condor_113.sub deleted file mode 100644 index 2ff127ee26f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_114.sub b/test/ntuple_qcd_1500_2000/batch/condor_114.sub deleted file mode 100644 index 386f1e54eba..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_115.sub b/test/ntuple_qcd_1500_2000/batch/condor_115.sub deleted file mode 100644 index 5e6e1a67902..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_116.sub b/test/ntuple_qcd_1500_2000/batch/condor_116.sub deleted file mode 100644 index 3f3edb2ba80..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_117.sub b/test/ntuple_qcd_1500_2000/batch/condor_117.sub deleted file mode 100644 index f22c4d510c4..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_118.sub b/test/ntuple_qcd_1500_2000/batch/condor_118.sub deleted file mode 100644 index 8df1d57d23b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_119.sub b/test/ntuple_qcd_1500_2000/batch/condor_119.sub deleted file mode 100644 index 0584655dc2d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_12.sub b/test/ntuple_qcd_1500_2000/batch/condor_12.sub deleted file mode 100644 index a3c566051df..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_120.sub b/test/ntuple_qcd_1500_2000/batch/condor_120.sub deleted file mode 100644 index 94d7edb29b1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_121.sub b/test/ntuple_qcd_1500_2000/batch/condor_121.sub deleted file mode 100644 index 5ff363f7b40..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_122.sub b/test/ntuple_qcd_1500_2000/batch/condor_122.sub deleted file mode 100644 index 565bd1b7d87..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_123.sub b/test/ntuple_qcd_1500_2000/batch/condor_123.sub deleted file mode 100644 index 83b8ff2a5e0..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_124.sub b/test/ntuple_qcd_1500_2000/batch/condor_124.sub deleted file mode 100644 index ffa434f2551..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_125.sub b/test/ntuple_qcd_1500_2000/batch/condor_125.sub deleted file mode 100644 index 14cc6b97ebf..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_126.sub b/test/ntuple_qcd_1500_2000/batch/condor_126.sub deleted file mode 100644 index dd8aad2fe52..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_127.sub b/test/ntuple_qcd_1500_2000/batch/condor_127.sub deleted file mode 100644 index b23347f8480..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_128.sub b/test/ntuple_qcd_1500_2000/batch/condor_128.sub deleted file mode 100644 index 3d556be5783..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_129.sub b/test/ntuple_qcd_1500_2000/batch/condor_129.sub deleted file mode 100644 index 28df7383eb7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_13.sub b/test/ntuple_qcd_1500_2000/batch/condor_13.sub deleted file mode 100644 index 480647a24f4..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_130.sub b/test/ntuple_qcd_1500_2000/batch/condor_130.sub deleted file mode 100644 index fe87bab25aa..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_131.sub b/test/ntuple_qcd_1500_2000/batch/condor_131.sub deleted file mode 100644 index 5e141bd965b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_132.sub b/test/ntuple_qcd_1500_2000/batch/condor_132.sub deleted file mode 100644 index 097882dda76..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_133.sub b/test/ntuple_qcd_1500_2000/batch/condor_133.sub deleted file mode 100644 index 1c268cec0f8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_134.sub b/test/ntuple_qcd_1500_2000/batch/condor_134.sub deleted file mode 100644 index 65ada786c9f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_135.sub b/test/ntuple_qcd_1500_2000/batch/condor_135.sub deleted file mode 100644 index 6977a06c620..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_136.sub b/test/ntuple_qcd_1500_2000/batch/condor_136.sub deleted file mode 100644 index d0decd44bfd..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_137.sub b/test/ntuple_qcd_1500_2000/batch/condor_137.sub deleted file mode 100644 index 66bb34c7fdb..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_138.sub b/test/ntuple_qcd_1500_2000/batch/condor_138.sub deleted file mode 100644 index 74742fc5601..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_14.sub b/test/ntuple_qcd_1500_2000/batch/condor_14.sub deleted file mode 100644 index 760aa55ecc1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_15.sub b/test/ntuple_qcd_1500_2000/batch/condor_15.sub deleted file mode 100644 index 84547676d49..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_16.sub b/test/ntuple_qcd_1500_2000/batch/condor_16.sub deleted file mode 100644 index 083182692fe..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_17.sub b/test/ntuple_qcd_1500_2000/batch/condor_17.sub deleted file mode 100644 index 5efbf9c281b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_18.sub b/test/ntuple_qcd_1500_2000/batch/condor_18.sub deleted file mode 100644 index f8d4d8d2084..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_19.sub b/test/ntuple_qcd_1500_2000/batch/condor_19.sub deleted file mode 100644 index ccf5cf7b50e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_2.sub b/test/ntuple_qcd_1500_2000/batch/condor_2.sub deleted file mode 100644 index 5e07ebe50ea..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_20.sub b/test/ntuple_qcd_1500_2000/batch/condor_20.sub deleted file mode 100644 index 9f3a9d0d794..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_21.sub b/test/ntuple_qcd_1500_2000/batch/condor_21.sub deleted file mode 100644 index 37011c406cf..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_22.sub b/test/ntuple_qcd_1500_2000/batch/condor_22.sub deleted file mode 100644 index a919e09d592..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_23.sub b/test/ntuple_qcd_1500_2000/batch/condor_23.sub deleted file mode 100644 index db92d9d0515..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_24.sub b/test/ntuple_qcd_1500_2000/batch/condor_24.sub deleted file mode 100644 index a198d6ec818..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_25.sub b/test/ntuple_qcd_1500_2000/batch/condor_25.sub deleted file mode 100644 index 5c03be1e57b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_26.sub b/test/ntuple_qcd_1500_2000/batch/condor_26.sub deleted file mode 100644 index fab35cee6c1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_27.sub b/test/ntuple_qcd_1500_2000/batch/condor_27.sub deleted file mode 100644 index b70ec4aa262..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_28.sub b/test/ntuple_qcd_1500_2000/batch/condor_28.sub deleted file mode 100644 index d1bdf9cf1e4..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_29.sub b/test/ntuple_qcd_1500_2000/batch/condor_29.sub deleted file mode 100644 index 69088adcde6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_3.sub b/test/ntuple_qcd_1500_2000/batch/condor_3.sub deleted file mode 100644 index 9f18c4ec7f1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_30.sub b/test/ntuple_qcd_1500_2000/batch/condor_30.sub deleted file mode 100644 index ced122a9721..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_31.sub b/test/ntuple_qcd_1500_2000/batch/condor_31.sub deleted file mode 100644 index 7ba10a15664..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_32.sub b/test/ntuple_qcd_1500_2000/batch/condor_32.sub deleted file mode 100644 index c06f0e3eea1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_33.sub b/test/ntuple_qcd_1500_2000/batch/condor_33.sub deleted file mode 100644 index 0ce7b251dfc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_34.sub b/test/ntuple_qcd_1500_2000/batch/condor_34.sub deleted file mode 100644 index bb49f10fa1b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_35.sub b/test/ntuple_qcd_1500_2000/batch/condor_35.sub deleted file mode 100644 index 7c2a4bb3f2a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_36.sub b/test/ntuple_qcd_1500_2000/batch/condor_36.sub deleted file mode 100644 index 8c16d628085..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_37.sub b/test/ntuple_qcd_1500_2000/batch/condor_37.sub deleted file mode 100644 index 3bfddbd6dd9..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_38.sub b/test/ntuple_qcd_1500_2000/batch/condor_38.sub deleted file mode 100644 index 4b2abf24b2c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_39.sub b/test/ntuple_qcd_1500_2000/batch/condor_39.sub deleted file mode 100644 index d4f5664248f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_4.sub b/test/ntuple_qcd_1500_2000/batch/condor_4.sub deleted file mode 100644 index 52be5c549c9..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_40.sub b/test/ntuple_qcd_1500_2000/batch/condor_40.sub deleted file mode 100644 index 9683286c281..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_41.sub b/test/ntuple_qcd_1500_2000/batch/condor_41.sub deleted file mode 100644 index 19d5dd303a8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_42.sub b/test/ntuple_qcd_1500_2000/batch/condor_42.sub deleted file mode 100644 index 7a961903cca..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_43.sub b/test/ntuple_qcd_1500_2000/batch/condor_43.sub deleted file mode 100644 index fd5d893915c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_44.sub b/test/ntuple_qcd_1500_2000/batch/condor_44.sub deleted file mode 100644 index da4e3faca2a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_45.sub b/test/ntuple_qcd_1500_2000/batch/condor_45.sub deleted file mode 100644 index f3ad1b6b0e2..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_46.sub b/test/ntuple_qcd_1500_2000/batch/condor_46.sub deleted file mode 100644 index 61738621aa8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_47.sub b/test/ntuple_qcd_1500_2000/batch/condor_47.sub deleted file mode 100644 index 16fbd0a93e6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_48.sub b/test/ntuple_qcd_1500_2000/batch/condor_48.sub deleted file mode 100644 index 01c1d4750f8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_49.sub b/test/ntuple_qcd_1500_2000/batch/condor_49.sub deleted file mode 100644 index 42d8f7be202..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_5.sub b/test/ntuple_qcd_1500_2000/batch/condor_5.sub deleted file mode 100644 index 368680852cc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_50.sub b/test/ntuple_qcd_1500_2000/batch/condor_50.sub deleted file mode 100644 index c3ff11f0ad7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_51.sub b/test/ntuple_qcd_1500_2000/batch/condor_51.sub deleted file mode 100644 index c45e0958b20..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_52.sub b/test/ntuple_qcd_1500_2000/batch/condor_52.sub deleted file mode 100644 index b0f1bf96e10..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_53.sub b/test/ntuple_qcd_1500_2000/batch/condor_53.sub deleted file mode 100644 index c67d3098c1e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_54.sub b/test/ntuple_qcd_1500_2000/batch/condor_54.sub deleted file mode 100644 index 87fcc79ff6a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_55.sub b/test/ntuple_qcd_1500_2000/batch/condor_55.sub deleted file mode 100644 index decb2e271da..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_56.sub b/test/ntuple_qcd_1500_2000/batch/condor_56.sub deleted file mode 100644 index de4d08cc9de..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_57.sub b/test/ntuple_qcd_1500_2000/batch/condor_57.sub deleted file mode 100644 index 91684a35113..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_58.sub b/test/ntuple_qcd_1500_2000/batch/condor_58.sub deleted file mode 100644 index 4f5a97710df..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_59.sub b/test/ntuple_qcd_1500_2000/batch/condor_59.sub deleted file mode 100644 index 80f5ba92780..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_6.sub b/test/ntuple_qcd_1500_2000/batch/condor_6.sub deleted file mode 100644 index 722d7b9deed..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_60.sub b/test/ntuple_qcd_1500_2000/batch/condor_60.sub deleted file mode 100644 index 152565eec61..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_61.sub b/test/ntuple_qcd_1500_2000/batch/condor_61.sub deleted file mode 100644 index 26608ef0133..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_62.sub b/test/ntuple_qcd_1500_2000/batch/condor_62.sub deleted file mode 100644 index 67a3896f15d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_63.sub b/test/ntuple_qcd_1500_2000/batch/condor_63.sub deleted file mode 100644 index 99b7cd2587f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_64.sub b/test/ntuple_qcd_1500_2000/batch/condor_64.sub deleted file mode 100644 index b4b164398f6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_65.sub b/test/ntuple_qcd_1500_2000/batch/condor_65.sub deleted file mode 100644 index 5fb5eac91b5..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_66.sub b/test/ntuple_qcd_1500_2000/batch/condor_66.sub deleted file mode 100644 index 841ad5ede23..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_67.sub b/test/ntuple_qcd_1500_2000/batch/condor_67.sub deleted file mode 100644 index bcc1ff68295..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_68.sub b/test/ntuple_qcd_1500_2000/batch/condor_68.sub deleted file mode 100644 index af6778d7d35..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_69.sub b/test/ntuple_qcd_1500_2000/batch/condor_69.sub deleted file mode 100644 index 1bda41812f7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_7.sub b/test/ntuple_qcd_1500_2000/batch/condor_7.sub deleted file mode 100644 index 9d370eaed5e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_70.sub b/test/ntuple_qcd_1500_2000/batch/condor_70.sub deleted file mode 100644 index c3f08c95d09..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_71.sub b/test/ntuple_qcd_1500_2000/batch/condor_71.sub deleted file mode 100644 index 973e602d183..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_72.sub b/test/ntuple_qcd_1500_2000/batch/condor_72.sub deleted file mode 100644 index f91516d1b6b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_73.sub b/test/ntuple_qcd_1500_2000/batch/condor_73.sub deleted file mode 100644 index 04a3de0987f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_74.sub b/test/ntuple_qcd_1500_2000/batch/condor_74.sub deleted file mode 100644 index e44f3c85fa5..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_75.sub b/test/ntuple_qcd_1500_2000/batch/condor_75.sub deleted file mode 100644 index 9ecb411a708..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_76.sub b/test/ntuple_qcd_1500_2000/batch/condor_76.sub deleted file mode 100644 index b74c034a2d9..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_77.sub b/test/ntuple_qcd_1500_2000/batch/condor_77.sub deleted file mode 100644 index a599cb2e1e3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_78.sub b/test/ntuple_qcd_1500_2000/batch/condor_78.sub deleted file mode 100644 index 7e681e25569..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_79.sub b/test/ntuple_qcd_1500_2000/batch/condor_79.sub deleted file mode 100644 index 75b75d13512..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_8.sub b/test/ntuple_qcd_1500_2000/batch/condor_8.sub deleted file mode 100644 index bc9b9c239f7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_80.sub b/test/ntuple_qcd_1500_2000/batch/condor_80.sub deleted file mode 100644 index 49a3147118c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_81.sub b/test/ntuple_qcd_1500_2000/batch/condor_81.sub deleted file mode 100644 index a0c16f6e568..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_82.sub b/test/ntuple_qcd_1500_2000/batch/condor_82.sub deleted file mode 100644 index 30a410374a6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_83.sub b/test/ntuple_qcd_1500_2000/batch/condor_83.sub deleted file mode 100644 index 4091b0a9424..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_84.sub b/test/ntuple_qcd_1500_2000/batch/condor_84.sub deleted file mode 100644 index f2fbd9fb68a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_85.sub b/test/ntuple_qcd_1500_2000/batch/condor_85.sub deleted file mode 100644 index ae16879f522..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_86.sub b/test/ntuple_qcd_1500_2000/batch/condor_86.sub deleted file mode 100644 index 2683d6c49e9..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_87.sub b/test/ntuple_qcd_1500_2000/batch/condor_87.sub deleted file mode 100644 index 3c3c762a9c3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_88.sub b/test/ntuple_qcd_1500_2000/batch/condor_88.sub deleted file mode 100644 index 9889595d83c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_89.sub b/test/ntuple_qcd_1500_2000/batch/condor_89.sub deleted file mode 100644 index 367ad13f0c8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_9.sub b/test/ntuple_qcd_1500_2000/batch/condor_9.sub deleted file mode 100644 index ed0b35988a8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_90.sub b/test/ntuple_qcd_1500_2000/batch/condor_90.sub deleted file mode 100644 index 314602c56e9..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_91.sub b/test/ntuple_qcd_1500_2000/batch/condor_91.sub deleted file mode 100644 index 97e1e8681ed..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_92.sub b/test/ntuple_qcd_1500_2000/batch/condor_92.sub deleted file mode 100644 index 6a1cc169665..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_93.sub b/test/ntuple_qcd_1500_2000/batch/condor_93.sub deleted file mode 100644 index 6a93498c360..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_94.sub b/test/ntuple_qcd_1500_2000/batch/condor_94.sub deleted file mode 100644 index 50be038d7b5..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_95.sub b/test/ntuple_qcd_1500_2000/batch/condor_95.sub deleted file mode 100644 index 2fc42860f0d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_96.sub b/test/ntuple_qcd_1500_2000/batch/condor_96.sub deleted file mode 100644 index 77ddb66d1e0..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_97.sub b/test/ntuple_qcd_1500_2000/batch/condor_97.sub deleted file mode 100644 index f2fab8f8b75..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_98.sub b/test/ntuple_qcd_1500_2000/batch/condor_98.sub deleted file mode 100644 index 76676bad619..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/condor_99.sub b/test/ntuple_qcd_1500_2000/batch/condor_99.sub deleted file mode 100644 index 61e35c81be3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/nJobs.139 b/test/ntuple_qcd_1500_2000/batch/nJobs.139 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_1500_2000/batch/sge_0.sh b/test/ntuple_qcd_1500_2000/batch/sge_0.sh deleted file mode 100755 index 4c41051997c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_1.sh b/test/ntuple_qcd_1500_2000/batch/sge_1.sh deleted file mode 100755 index d8888d5a06e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_10.sh b/test/ntuple_qcd_1500_2000/batch/sge_10.sh deleted file mode 100755 index 89685812284..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_100.sh b/test/ntuple_qcd_1500_2000/batch/sge_100.sh deleted file mode 100755 index 17c3f21aa88..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=100 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_101.sh b/test/ntuple_qcd_1500_2000/batch/sge_101.sh deleted file mode 100755 index 8b0287d5404..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=101 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_102.sh b/test/ntuple_qcd_1500_2000/batch/sge_102.sh deleted file mode 100755 index 4ad7bdde1b5..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=102 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_103.sh b/test/ntuple_qcd_1500_2000/batch/sge_103.sh deleted file mode 100755 index 9ff86e3832b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=103 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_104.sh b/test/ntuple_qcd_1500_2000/batch/sge_104.sh deleted file mode 100755 index 98f6b497df3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=104 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_105.sh b/test/ntuple_qcd_1500_2000/batch/sge_105.sh deleted file mode 100755 index 43e49d35f2b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=105 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_106.sh b/test/ntuple_qcd_1500_2000/batch/sge_106.sh deleted file mode 100755 index c3e0d3be2ee..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=106 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_107.sh b/test/ntuple_qcd_1500_2000/batch/sge_107.sh deleted file mode 100755 index 6793118b18c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=107 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_108.sh b/test/ntuple_qcd_1500_2000/batch/sge_108.sh deleted file mode 100755 index 224ac402052..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=108 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_109.sh b/test/ntuple_qcd_1500_2000/batch/sge_109.sh deleted file mode 100755 index 1586a68c9fc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=109 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_11.sh b/test/ntuple_qcd_1500_2000/batch/sge_11.sh deleted file mode 100755 index f504b3f034e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_110.sh b/test/ntuple_qcd_1500_2000/batch/sge_110.sh deleted file mode 100755 index f1932f22514..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=110 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_111.sh b/test/ntuple_qcd_1500_2000/batch/sge_111.sh deleted file mode 100755 index b83df33fb6a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=111 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_112.sh b/test/ntuple_qcd_1500_2000/batch/sge_112.sh deleted file mode 100755 index f7577b2b9ee..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=112 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_113.sh b/test/ntuple_qcd_1500_2000/batch/sge_113.sh deleted file mode 100755 index 2e28e0bf69f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=113 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_114.sh b/test/ntuple_qcd_1500_2000/batch/sge_114.sh deleted file mode 100755 index 644d3ff0d14..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=114 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_115.sh b/test/ntuple_qcd_1500_2000/batch/sge_115.sh deleted file mode 100755 index 3381dcf3875..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=115 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_116.sh b/test/ntuple_qcd_1500_2000/batch/sge_116.sh deleted file mode 100755 index d4442971d34..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=116 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_117.sh b/test/ntuple_qcd_1500_2000/batch/sge_117.sh deleted file mode 100755 index 4c8155762b3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=117 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_118.sh b/test/ntuple_qcd_1500_2000/batch/sge_118.sh deleted file mode 100755 index 5f2f093b9ba..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=118 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_119.sh b/test/ntuple_qcd_1500_2000/batch/sge_119.sh deleted file mode 100755 index 29a57e95575..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=119 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_12.sh b/test/ntuple_qcd_1500_2000/batch/sge_12.sh deleted file mode 100755 index 29b4c98f49f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_120.sh b/test/ntuple_qcd_1500_2000/batch/sge_120.sh deleted file mode 100755 index 2edd5ac50dc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=120 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_121.sh b/test/ntuple_qcd_1500_2000/batch/sge_121.sh deleted file mode 100755 index ff1c4f6d4ef..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=121 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_122.sh b/test/ntuple_qcd_1500_2000/batch/sge_122.sh deleted file mode 100755 index bd4fd5cdd3d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=122 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_123.sh b/test/ntuple_qcd_1500_2000/batch/sge_123.sh deleted file mode 100755 index 9652482b432..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=123 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_124.sh b/test/ntuple_qcd_1500_2000/batch/sge_124.sh deleted file mode 100755 index f821fece9a9..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=124 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_125.sh b/test/ntuple_qcd_1500_2000/batch/sge_125.sh deleted file mode 100755 index 4cebedc65e3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=125 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_126.sh b/test/ntuple_qcd_1500_2000/batch/sge_126.sh deleted file mode 100755 index d94f16c00e4..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=126 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_127.sh b/test/ntuple_qcd_1500_2000/batch/sge_127.sh deleted file mode 100755 index fb0cb714b10..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=127 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_128.sh b/test/ntuple_qcd_1500_2000/batch/sge_128.sh deleted file mode 100755 index 6026425604d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=128 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_129.sh b/test/ntuple_qcd_1500_2000/batch/sge_129.sh deleted file mode 100755 index 706964d0edc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=129 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_13.sh b/test/ntuple_qcd_1500_2000/batch/sge_13.sh deleted file mode 100755 index 598dbbee0c2..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_130.sh b/test/ntuple_qcd_1500_2000/batch/sge_130.sh deleted file mode 100755 index fe3cfa954a1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=130 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_131.sh b/test/ntuple_qcd_1500_2000/batch/sge_131.sh deleted file mode 100755 index 05d55f9ecef..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=131 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_132.sh b/test/ntuple_qcd_1500_2000/batch/sge_132.sh deleted file mode 100755 index 807b6c1d053..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=132 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_133.sh b/test/ntuple_qcd_1500_2000/batch/sge_133.sh deleted file mode 100755 index 6f63a7287ce..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=133 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_134.sh b/test/ntuple_qcd_1500_2000/batch/sge_134.sh deleted file mode 100755 index f5dfeda021c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=134 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_135.sh b/test/ntuple_qcd_1500_2000/batch/sge_135.sh deleted file mode 100755 index ef73365df92..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=135 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_136.sh b/test/ntuple_qcd_1500_2000/batch/sge_136.sh deleted file mode 100755 index a0ad7f586aa..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=136 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_137.sh b/test/ntuple_qcd_1500_2000/batch/sge_137.sh deleted file mode 100755 index a06cbbd3fa8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=137 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_138.sh b/test/ntuple_qcd_1500_2000/batch/sge_138.sh deleted file mode 100755 index a37e51a9e90..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=138 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_14.sh b/test/ntuple_qcd_1500_2000/batch/sge_14.sh deleted file mode 100755 index 67133ef6083..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_15.sh b/test/ntuple_qcd_1500_2000/batch/sge_15.sh deleted file mode 100755 index b0d8a9e65ad..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_16.sh b/test/ntuple_qcd_1500_2000/batch/sge_16.sh deleted file mode 100755 index f24657e2f0d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_17.sh b/test/ntuple_qcd_1500_2000/batch/sge_17.sh deleted file mode 100755 index 48119b824f7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_18.sh b/test/ntuple_qcd_1500_2000/batch/sge_18.sh deleted file mode 100755 index 9d19a8569ed..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_19.sh b/test/ntuple_qcd_1500_2000/batch/sge_19.sh deleted file mode 100755 index cb4dc21bcf2..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_2.sh b/test/ntuple_qcd_1500_2000/batch/sge_2.sh deleted file mode 100755 index f15495b534a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_20.sh b/test/ntuple_qcd_1500_2000/batch/sge_20.sh deleted file mode 100755 index 82931103a10..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_21.sh b/test/ntuple_qcd_1500_2000/batch/sge_21.sh deleted file mode 100755 index b51829348e8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_22.sh b/test/ntuple_qcd_1500_2000/batch/sge_22.sh deleted file mode 100755 index dde038f6e0c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_23.sh b/test/ntuple_qcd_1500_2000/batch/sge_23.sh deleted file mode 100755 index 87dff83e62a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_24.sh b/test/ntuple_qcd_1500_2000/batch/sge_24.sh deleted file mode 100755 index 6461f3dcd6a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_25.sh b/test/ntuple_qcd_1500_2000/batch/sge_25.sh deleted file mode 100755 index cecf2f4d014..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_26.sh b/test/ntuple_qcd_1500_2000/batch/sge_26.sh deleted file mode 100755 index 7ab354bb5a4..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_27.sh b/test/ntuple_qcd_1500_2000/batch/sge_27.sh deleted file mode 100755 index e096d178cb5..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_28.sh b/test/ntuple_qcd_1500_2000/batch/sge_28.sh deleted file mode 100755 index 597af0f9912..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_29.sh b/test/ntuple_qcd_1500_2000/batch/sge_29.sh deleted file mode 100755 index 6a4f02c046d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_3.sh b/test/ntuple_qcd_1500_2000/batch/sge_3.sh deleted file mode 100755 index 5810913ca4f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_30.sh b/test/ntuple_qcd_1500_2000/batch/sge_30.sh deleted file mode 100755 index 389a0f9bce4..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_31.sh b/test/ntuple_qcd_1500_2000/batch/sge_31.sh deleted file mode 100755 index 3e8c592c49e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_32.sh b/test/ntuple_qcd_1500_2000/batch/sge_32.sh deleted file mode 100755 index 84a06179c41..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_33.sh b/test/ntuple_qcd_1500_2000/batch/sge_33.sh deleted file mode 100755 index 0831a7ea82a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_34.sh b/test/ntuple_qcd_1500_2000/batch/sge_34.sh deleted file mode 100755 index 8fab6b7151a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_35.sh b/test/ntuple_qcd_1500_2000/batch/sge_35.sh deleted file mode 100755 index 5b763d4d045..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_36.sh b/test/ntuple_qcd_1500_2000/batch/sge_36.sh deleted file mode 100755 index 512f9603daf..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_37.sh b/test/ntuple_qcd_1500_2000/batch/sge_37.sh deleted file mode 100755 index 38e6ae9191c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_38.sh b/test/ntuple_qcd_1500_2000/batch/sge_38.sh deleted file mode 100755 index 90badb4eec8..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_39.sh b/test/ntuple_qcd_1500_2000/batch/sge_39.sh deleted file mode 100755 index 66df917a7ab..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_4.sh b/test/ntuple_qcd_1500_2000/batch/sge_4.sh deleted file mode 100755 index 5282e51ce86..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_40.sh b/test/ntuple_qcd_1500_2000/batch/sge_40.sh deleted file mode 100755 index e4368fc7c1c..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_41.sh b/test/ntuple_qcd_1500_2000/batch/sge_41.sh deleted file mode 100755 index ef07aa53e8a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_42.sh b/test/ntuple_qcd_1500_2000/batch/sge_42.sh deleted file mode 100755 index 500e6589187..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_43.sh b/test/ntuple_qcd_1500_2000/batch/sge_43.sh deleted file mode 100755 index 1180b078c96..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_44.sh b/test/ntuple_qcd_1500_2000/batch/sge_44.sh deleted file mode 100755 index 9f7f28d6fb6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_45.sh b/test/ntuple_qcd_1500_2000/batch/sge_45.sh deleted file mode 100755 index 21ce6015d9f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_46.sh b/test/ntuple_qcd_1500_2000/batch/sge_46.sh deleted file mode 100755 index c3c03b04102..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_47.sh b/test/ntuple_qcd_1500_2000/batch/sge_47.sh deleted file mode 100755 index 9f66924dd67..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_48.sh b/test/ntuple_qcd_1500_2000/batch/sge_48.sh deleted file mode 100755 index fc04e814569..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_49.sh b/test/ntuple_qcd_1500_2000/batch/sge_49.sh deleted file mode 100755 index ba277c41596..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_5.sh b/test/ntuple_qcd_1500_2000/batch/sge_5.sh deleted file mode 100755 index bc123725697..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_50.sh b/test/ntuple_qcd_1500_2000/batch/sge_50.sh deleted file mode 100755 index 4f6084ba80d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_51.sh b/test/ntuple_qcd_1500_2000/batch/sge_51.sh deleted file mode 100755 index d8c46c4d6f3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_52.sh b/test/ntuple_qcd_1500_2000/batch/sge_52.sh deleted file mode 100755 index a5f5199934a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_53.sh b/test/ntuple_qcd_1500_2000/batch/sge_53.sh deleted file mode 100755 index 00864c56e58..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_54.sh b/test/ntuple_qcd_1500_2000/batch/sge_54.sh deleted file mode 100755 index f62fe4ca17a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_55.sh b/test/ntuple_qcd_1500_2000/batch/sge_55.sh deleted file mode 100755 index 3d920b67229..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_56.sh b/test/ntuple_qcd_1500_2000/batch/sge_56.sh deleted file mode 100755 index 00a1702d1d6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_57.sh b/test/ntuple_qcd_1500_2000/batch/sge_57.sh deleted file mode 100755 index 5b13f712946..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_58.sh b/test/ntuple_qcd_1500_2000/batch/sge_58.sh deleted file mode 100755 index f51b0db96d1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_59.sh b/test/ntuple_qcd_1500_2000/batch/sge_59.sh deleted file mode 100755 index 7041dd616ce..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_6.sh b/test/ntuple_qcd_1500_2000/batch/sge_6.sh deleted file mode 100755 index bc637eed375..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_60.sh b/test/ntuple_qcd_1500_2000/batch/sge_60.sh deleted file mode 100755 index e6c7c17b55a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_61.sh b/test/ntuple_qcd_1500_2000/batch/sge_61.sh deleted file mode 100755 index 6f647f0da21..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_62.sh b/test/ntuple_qcd_1500_2000/batch/sge_62.sh deleted file mode 100755 index edcc13003bb..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_63.sh b/test/ntuple_qcd_1500_2000/batch/sge_63.sh deleted file mode 100755 index 7d8aaee8e0b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_64.sh b/test/ntuple_qcd_1500_2000/batch/sge_64.sh deleted file mode 100755 index d47915814dc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_65.sh b/test/ntuple_qcd_1500_2000/batch/sge_65.sh deleted file mode 100755 index cf172ab6b01..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_66.sh b/test/ntuple_qcd_1500_2000/batch/sge_66.sh deleted file mode 100755 index 34578b51023..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_67.sh b/test/ntuple_qcd_1500_2000/batch/sge_67.sh deleted file mode 100755 index 06eaa5a06b7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_68.sh b/test/ntuple_qcd_1500_2000/batch/sge_68.sh deleted file mode 100755 index 09a23494012..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_69.sh b/test/ntuple_qcd_1500_2000/batch/sge_69.sh deleted file mode 100755 index 0b1946f056a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_7.sh b/test/ntuple_qcd_1500_2000/batch/sge_7.sh deleted file mode 100755 index 4d5e7e117a3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_70.sh b/test/ntuple_qcd_1500_2000/batch/sge_70.sh deleted file mode 100755 index 97132352180..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_71.sh b/test/ntuple_qcd_1500_2000/batch/sge_71.sh deleted file mode 100755 index 23a5013f0e3..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_72.sh b/test/ntuple_qcd_1500_2000/batch/sge_72.sh deleted file mode 100755 index 8b6270f5b80..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_73.sh b/test/ntuple_qcd_1500_2000/batch/sge_73.sh deleted file mode 100755 index 2fa1967106a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_74.sh b/test/ntuple_qcd_1500_2000/batch/sge_74.sh deleted file mode 100755 index 9de070bc86f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_75.sh b/test/ntuple_qcd_1500_2000/batch/sge_75.sh deleted file mode 100755 index 65f5e2cd61e..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_76.sh b/test/ntuple_qcd_1500_2000/batch/sge_76.sh deleted file mode 100755 index 385e3de5b33..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_77.sh b/test/ntuple_qcd_1500_2000/batch/sge_77.sh deleted file mode 100755 index 9cb3d207a07..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=77 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_78.sh b/test/ntuple_qcd_1500_2000/batch/sge_78.sh deleted file mode 100755 index ae40328ea9f..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=78 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_79.sh b/test/ntuple_qcd_1500_2000/batch/sge_79.sh deleted file mode 100755 index 5f262be1fd5..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=79 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_8.sh b/test/ntuple_qcd_1500_2000/batch/sge_8.sh deleted file mode 100755 index 4aa3749ecb6..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_80.sh b/test/ntuple_qcd_1500_2000/batch/sge_80.sh deleted file mode 100755 index a89dca4c471..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=80 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_81.sh b/test/ntuple_qcd_1500_2000/batch/sge_81.sh deleted file mode 100755 index ba61f08acfc..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=81 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_82.sh b/test/ntuple_qcd_1500_2000/batch/sge_82.sh deleted file mode 100755 index 449224493eb..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=82 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_83.sh b/test/ntuple_qcd_1500_2000/batch/sge_83.sh deleted file mode 100755 index 8e5fd59afe1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=83 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_84.sh b/test/ntuple_qcd_1500_2000/batch/sge_84.sh deleted file mode 100755 index ff6aca01f35..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=84 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_85.sh b/test/ntuple_qcd_1500_2000/batch/sge_85.sh deleted file mode 100755 index 983a8020b07..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=85 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_86.sh b/test/ntuple_qcd_1500_2000/batch/sge_86.sh deleted file mode 100755 index 4d645cadf35..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=86 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_87.sh b/test/ntuple_qcd_1500_2000/batch/sge_87.sh deleted file mode 100755 index 3fc86fdc56d..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=87 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_88.sh b/test/ntuple_qcd_1500_2000/batch/sge_88.sh deleted file mode 100755 index d464f0db7fd..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=88 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_89.sh b/test/ntuple_qcd_1500_2000/batch/sge_89.sh deleted file mode 100755 index a5c98e71bc7..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=89 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_9.sh b/test/ntuple_qcd_1500_2000/batch/sge_9.sh deleted file mode 100755 index 85da7fe4403..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_90.sh b/test/ntuple_qcd_1500_2000/batch/sge_90.sh deleted file mode 100755 index 8a8d334aeae..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=90 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_91.sh b/test/ntuple_qcd_1500_2000/batch/sge_91.sh deleted file mode 100755 index aabfb02555a..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=91 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_92.sh b/test/ntuple_qcd_1500_2000/batch/sge_92.sh deleted file mode 100755 index e44340c26f1..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=92 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_93.sh b/test/ntuple_qcd_1500_2000/batch/sge_93.sh deleted file mode 100755 index 75091e6a376..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=93 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_94.sh b/test/ntuple_qcd_1500_2000/batch/sge_94.sh deleted file mode 100755 index 5039d97fe98..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=94 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_95.sh b/test/ntuple_qcd_1500_2000/batch/sge_95.sh deleted file mode 100755 index ed44d04a38b..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=95 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_96.sh b/test/ntuple_qcd_1500_2000/batch/sge_96.sh deleted file mode 100755 index 7c642ff78bf..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=96 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_97.sh b/test/ntuple_qcd_1500_2000/batch/sge_97.sh deleted file mode 100755 index dff9e8a3d35..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=97 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_98.sh b/test/ntuple_qcd_1500_2000/batch/sge_98.sh deleted file mode 100755 index 593b273b830..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=98 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batch/sge_99.sh b/test/ntuple_qcd_1500_2000/batch/sge_99.sh deleted file mode 100755 index f77c8e76878..00000000000 --- a/test/ntuple_qcd_1500_2000/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=99 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/batchscript.sh b/test/ntuple_qcd_1500_2000/batchscript.sh deleted file mode 100755 index ae89945e8f6..00000000000 --- a/test/ntuple_qcd_1500_2000/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_1500_2000" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/condor.sub b/test/ntuple_qcd_1500_2000/condor.sub deleted file mode 100644 index 2deb2ca25ca..00000000000 --- a/test/ntuple_qcd_1500_2000/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT1500to2000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=139 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ntuple_qcd_1500_2000_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 139 - \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/helper b/test/ntuple_qcd_1500_2000/helper deleted file mode 120000 index b1793bb0f52..00000000000 --- a/test/ntuple_qcd_1500_2000/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_1500_2000/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/output b/test/ntuple_qcd_1500_2000/output deleted file mode 120000 index 4dc5dba909e..00000000000 --- a/test/ntuple_qcd_1500_2000/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_1500_2000/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_1500_2000/sge_sub.sh b/test/ntuple_qcd_1500_2000/sge_sub.sh deleted file mode 100755 index 124609edee2..00000000000 --- a/test/ntuple_qcd_1500_2000/sge_sub.sh +++ /dev/null @@ -1,139 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_1500_2000/batch/sge_138.sh diff --git a/test/ntuple_qcd_2000_Inf/ademoor.cc b/test/ntuple_qcd_2000_Inf/ademoor.cc deleted file mode 100644 index f25a8cc4c4021b3b487e9820ca6a2f631896778d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$Ra6|>l7?|;+^uo!6CT21PIc&1PBnUaSb%?8l-X8Ai;tYT!T(B zbMBct_pX_#we~~(Rkdrc{l9#uCa{@2R%zP`*%zRJC%tEox%+?+ z2aBf>@M|QF{&f5*qrNrv{dqhK=3(=*4?l+P6PR9mQ$j#ZE@v~l_eMa5y(2Ht#Y@>0 zO2duh<2W9bq2Mz(Vmb^8Xg1>82oGtiXhjaZVy<#c$J2E2RxLE;kvtsE!)Si&TRS0XvAX~cf1 zH6l#j5G{(ol~Oh>``U6N)IpRGJ#ju5uCQkVoI4;=$LxWjAG ziYu54W;6)u!H5BUSLpQj76Wy2$+cfI`u!s4%wFN<9qh_SPdewF(-I;z@;8X7B(kVJt@FBD838r%e)-Nk;YyX;?!-;}1xRCX8kt9YW zO@w~`dbm&-m+uDgiT*7ClYd={;bRAsfS9)?$IN}xIOS7rBNms%Ww+1??JVbesDrAU zibeBD{B^0c7lmCYE|vZP^SF4elCathR#>-sx_*beELZkrLuvv?H2txXYQ_a4j@pB| zP+Qtb;_^-^$g*@AUcb?V4&JB*U zpY{ChS?Xy(8cP!zSuCN!X=?sIf|rcrnKDbxEaua*``$S-oJsb3czhSUR|OgzH`i$; z@cHxTH9&U3!Uzk=j3$of%Ko`^fWYz-WT#4~)fEolNxiuhansP&4%hvxvNt*LOq>Q1 z&{CjKN+JY^5M0l}Ld71RVJNl&`YE{YtPKQCTuH|kM9guNXHR$S%H!uU=UNxB;iJJW z1dbU#zy?!IY7Oswd07sFuoqd329PaeBjOCM97HO~0p4ja{$J*ru9j=sR{~5hMkF?z zqJrg|CxZDnBm+!hfj+#>E@b4-R&i2>_r{zlHfmbfu{&qHEd^)g3TBhie35-M1q-d3 zHVH56YcJyK)H2)9w_uMKN%&#jn@$KU_=3(_+x7>kS6m1()LOO!*ezc@3y+y2gAMr0 zJzhUhe{sN=G)$KxC_O8tI%jnFx}(o>zvci!@wQI2|8U@kN&tL3|5$8Vee%jCM#x*Y z!_HMI+@tRP{>#kX)E!YqrWeDS-GJsf;y9*BNa|y)zJ^YosSV z0)<^nLvZktQI{K*SY>9jztY7uw0KogThI=7l=p5|YEwkZCZ;)^$bxosixeP5jKJRB&rek*K>t%L6=`f#-2aDVA;1QBR@NhnT^HUC+ zuIsO*RQCJ|%-D8sN9r4eNUgsz0|{Za@ne2D{%}N#jZd}VJ91RdaZ~j*%WvZ5E?@cT zX$&Vyqqois!u@(qR?neoVco|L1){$$3_cNvD;C57<;s-9*N5CQj`@i<$xDG&oI!ez_HjgzBk+ewaXnUE_JKL z{FM;)rsEmaczi$7evUm=xKpTCmzh~xti4wK0p6O&dVc$~C&{F7P1k){r{+f&3SaeB zt04P@d)g9tU%D<{BBz^KG`HEn*!O30IV&F)EH^)_NW>^RvpI7oP%hdHl`)ll(+nE( znfRGu1h5CVYis~968!Ckv!0ba(F{4fkr*M-@mA1HH&=iy*PtooqIg?vJWxa^izQk= zzi?6%eQu4jQeLJRF{L!@ic6N8`SDJ%3jfkdU*vX5AiP>8oU(ep*YQ4S<3TT?|I~Cx zm6Lcf7fyK-cDhd*&^)17+sz6eE*Vv0)tG~fxU~`+U2&im`@LIs)|XRhHBz#%><%IA zO&OWjn9^Iqs6U(-;_j27#7bGeHFSRO_}E#+aUDkVRgjqCL3R5G;e%riCoWUA4<7v6ZN8_!;+{3Q=u1IX z422ZlA%?Nj?M@&%IBrQ}5FwzpJ*=f&IF?H|;Jt-}#GAJc2KaHMQP^dRa5Q;3ij-Z0 z_xr+qm!KcF2tveLgGN5W>2lx#g~plKC9A@hR_Gn#Nu72mh}D?em&YM%AyxvK@wQM2 zsJ20i=C|3a3Y`A7^x_27Ht`>YF~{%aJ2iD&;;B7sRtX&QFY^0@&kmV}qe3@Q#9kgp zK@s+*s}7$C6-D_-I-hB%ohNOoC{5wx+1{x+X+$4(*BN4uf%44d3|Wx-=?oe+qA3YS zC^Ne2Ir9{S|Dvz|n+X3j{R{IUn_9a4R?*EZTpfALtq}-+Cv^N6M7{Kr`c&IaqA7rt z(I#EBsu!Qz*?7;^n)4L9-}9Q_o0+djtvLkcY*l#uO>77@KM4(i*lWx3rkM zBhg-`dt1CinU#&OM6Sr`9-4<247{XwzT}s!#h%fLL3X0L#&b&K+nwQZtM8w9gWz>~ zScEM(JY$Ihp%Sxq-%d0Y+7R@Lh)808Hdi7lC9lR~DJ7)IbH8Ut&J>FAUyN?EnGnLX zcB66|jW4U{+&{YR*ra## z7;kwxrZu_7m9d{XE40anc4uS(6RUU!U}U8}+C9FGitxyE-|!zx!RlwQzDX zcW~qRAC?iz=+zAs1W?^4x7?h%5e=w3AyI80^+G$FkRr$r4e0*MG6{_T#WFzRZ)T7C zP2W-fW*H-h{*Q*3O9>(e{`Csrzr5i$x@-I%R{PsNl;7wM{*CV9h3Y=SSfkTMawYGP z>(-Tc&*GiZpxbi&vui}?7oBqG2$Qf`Ej#iY zA(5d%j!KKDBA{!ikpaSD_K1S>yU)D19thsKnnBe9yEGCmtJRmxS5dATwwE)_hKjr# zOFV9b5+#PHg^!KZ+AS}{x)Sd^ABl}!nxGft+wUuDO1@x%3@rC*H7!-yPIj>sw0F*5 zkO7k;1I)e5>#7jml>Jce`bc~k)WC{0TwRa$iM^nvum&8_TM5zj#?PXMNQp+6_=i+5 z)Ba@FI}+A$^IIfO8lr?sE#V&kR%tUjY(%@v0($*J1(6rGN#?)*Y9LXuxAec+vo;jq zV_C%#qKpx0yl;@>jBU~#8qtEMTP0Egh2576-sg_;EjK6s`m*zIzqtOMc7;v8nPbqC z8o~(`sGspI2~qxDvH7N&f;{KY3zkNT@{Kp@Ns#la#xb{vi3IhSf$Dc>f+n-P?B_>b z-OmEjjm^JvJjPq zg}Ir*D_G98?ODr%5Hc1sH+E;VZ8VFKRxTzo%hw=B=k>MA2g8ZiX39J=X6sXUU+qMg zVrNnPzSLsF9)O<@Z%2yWy51|Yv*`wGKMYEJu04CoqWFdVR>ec zkImlYycv6Kd~WeU`a~p3H%GQfF$@{IRSO~yF(WwK!@wjZ%9o;`8lCXdw7)cd`DIP& zcworDXZ=_hN#Gn|R3w;Lcg9yXPNe#JEY`F3Q%uRhX`q9;%>Ge4&D^76Bg&I_CT z-EM92+ggrmibiz!=0HM)R2NrShQgJ5Z6gqEA=s-z)V4sQXE55 z(N=o|bSz^+e5Y3}Xe8FGc5}?ArWP}8f_X>aau7`BPtliu@iReIS%ik6f&}5btmt%K zoDKJ3K#Y{&EUGSt#>o2>?8)KPg`kEc{ zr=(`5EpR;z-n5y5r^%#6cJTT@=5k=dAkl8pd;k{GsMtflsl8y6;+5SKjgYDj%4Zzn z1jAP-h|9?{mY!V0eq9ZO9~1XF9Eb4V$*V~Qw$>@4J4pJAk}Q_R;qQyAn=U+%_ye@~ z;G&$T?kVQ5-jJ3ks7VmsK*9+ROq;T5N->{h`y-DC)JxjJYE3&Cdn6Ji4*0t2xqez3D`nz+NN)!ydc=ixJu=K z;+tj6XBuS98Gz$waIi07U&zhIi(`&j9U5xk0Z%qQ zkJ-Yy&cRa&$C1L3LA+eF5Z`=wd)hJI9XO-SBd+|+X@7=pai(!U;Rm`mRx1P_-0l7J zEjT{ag2`M&?(X%JqrfKj`FJXt1QdmE|1=ZlXa4v+RNFGNi=$#w!dRASEG61vv2wf| z%w{OvCL>l6*dESxjXkeB9r5DhIKS{TdLw{UBs>}l-tE3L@Ur40Pxz485z>!a6Onaw z8zjk+hwk1M0ls)oU+S9nOJNiUUTv@;lcGT(OyaXPJC^5I-hBJZQ!jHC{s76vh!MLs z%@SJ(*_Ct{jst3XkeJx~xNdwhycdz~L*!I+&ZjLm!$y(Cs73trmC$#DTo#Z3X=3ie zr6)l&1;%N~tSz*h!{hVAO^IM4yI`MBVA`I9Q0Ih^g2d;LA`A~rJkZf<`_JpTILhGZ zG6aIDHv~*ASxs+Zj}LVY94Y+MY>I7LKblBZ@gNJiQ89mR2X3_lP)OXEDwMGa_+UJc z(0XIqh12T~N@PD~RZww$l_u-mR0=FUiV_S_Dde3v2q!7tcbi4NYm&{@VL(c3e;YJW zx#6A?jU-bzrnJA)tXq~%f^sDi!^u#dWZYM{I+Zfm_gy4`H^9lAh+3lF?&abX18O8| z1;bMKE*j~geK8Ua6Qq%w&X8@l?PJef4ldH+&STHFx5HF8#3J`G8If#j)5rPSn=Ne1Q@t5^D2R)eD>kStH!y9_bu;-Ox;>Ey z*aZz6z#V*#C0=}#Rzcrb&)M{8{*ESE&Jfc@v`_wFD(nR5H1K(MX?(N<+rmk(=r23#PI`S{^KIV{7at WGb);AYQIW1$duSp#Qge)6#oO|Z#G2$ diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_0.sub b/test/ntuple_qcd_2000_Inf/batch/condor_0.sub deleted file mode 100644 index 07c6f40ad4e..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_1.sub b/test/ntuple_qcd_2000_Inf/batch/condor_1.sub deleted file mode 100644 index dbd80d7e3d8..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_10.sub b/test/ntuple_qcd_2000_Inf/batch/condor_10.sub deleted file mode 100644 index 512af9aeb12..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_11.sub b/test/ntuple_qcd_2000_Inf/batch/condor_11.sub deleted file mode 100644 index deee6e1309a..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_12.sub b/test/ntuple_qcd_2000_Inf/batch/condor_12.sub deleted file mode 100644 index 2495ed96aca..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_13.sub b/test/ntuple_qcd_2000_Inf/batch/condor_13.sub deleted file mode 100644 index bc54a0cff06..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_14.sub b/test/ntuple_qcd_2000_Inf/batch/condor_14.sub deleted file mode 100644 index 8d399d3dcbb..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_15.sub b/test/ntuple_qcd_2000_Inf/batch/condor_15.sub deleted file mode 100644 index fd211fd617c..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_16.sub b/test/ntuple_qcd_2000_Inf/batch/condor_16.sub deleted file mode 100644 index 7545f8c3e6c..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_17.sub b/test/ntuple_qcd_2000_Inf/batch/condor_17.sub deleted file mode 100644 index f399bbdac20..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_18.sub b/test/ntuple_qcd_2000_Inf/batch/condor_18.sub deleted file mode 100644 index 65f204c5978..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_19.sub b/test/ntuple_qcd_2000_Inf/batch/condor_19.sub deleted file mode 100644 index 8a9ec3690fa..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_2.sub b/test/ntuple_qcd_2000_Inf/batch/condor_2.sub deleted file mode 100644 index 14884c351f4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_20.sub b/test/ntuple_qcd_2000_Inf/batch/condor_20.sub deleted file mode 100644 index 22895e34481..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_21.sub b/test/ntuple_qcd_2000_Inf/batch/condor_21.sub deleted file mode 100644 index 44b43ecad36..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_22.sub b/test/ntuple_qcd_2000_Inf/batch/condor_22.sub deleted file mode 100644 index 4ddac90fa93..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_23.sub b/test/ntuple_qcd_2000_Inf/batch/condor_23.sub deleted file mode 100644 index a418ca1e305..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_24.sub b/test/ntuple_qcd_2000_Inf/batch/condor_24.sub deleted file mode 100644 index b171e151e69..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_25.sub b/test/ntuple_qcd_2000_Inf/batch/condor_25.sub deleted file mode 100644 index 8b5fa111758..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_26.sub b/test/ntuple_qcd_2000_Inf/batch/condor_26.sub deleted file mode 100644 index 7a73cd84355..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_27.sub b/test/ntuple_qcd_2000_Inf/batch/condor_27.sub deleted file mode 100644 index 4e4bc57889e..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_28.sub b/test/ntuple_qcd_2000_Inf/batch/condor_28.sub deleted file mode 100644 index ae5b20b3190..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_29.sub b/test/ntuple_qcd_2000_Inf/batch/condor_29.sub deleted file mode 100644 index 766a47c871d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_3.sub b/test/ntuple_qcd_2000_Inf/batch/condor_3.sub deleted file mode 100644 index a40165839a2..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_30.sub b/test/ntuple_qcd_2000_Inf/batch/condor_30.sub deleted file mode 100644 index a49b5aceee4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_31.sub b/test/ntuple_qcd_2000_Inf/batch/condor_31.sub deleted file mode 100644 index aa52689ad15..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_32.sub b/test/ntuple_qcd_2000_Inf/batch/condor_32.sub deleted file mode 100644 index 8676a946368..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_33.sub b/test/ntuple_qcd_2000_Inf/batch/condor_33.sub deleted file mode 100644 index fdcddc4be58..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_34.sub b/test/ntuple_qcd_2000_Inf/batch/condor_34.sub deleted file mode 100644 index 635c39cda65..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_35.sub b/test/ntuple_qcd_2000_Inf/batch/condor_35.sub deleted file mode 100644 index 5b7672b74bc..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_36.sub b/test/ntuple_qcd_2000_Inf/batch/condor_36.sub deleted file mode 100644 index 6d5735c6c67..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_37.sub b/test/ntuple_qcd_2000_Inf/batch/condor_37.sub deleted file mode 100644 index 02378b58ce9..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_38.sub b/test/ntuple_qcd_2000_Inf/batch/condor_38.sub deleted file mode 100644 index b66f3f64bd4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_39.sub b/test/ntuple_qcd_2000_Inf/batch/condor_39.sub deleted file mode 100644 index beec8aff11d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_4.sub b/test/ntuple_qcd_2000_Inf/batch/condor_4.sub deleted file mode 100644 index 70e58ecc9a7..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_40.sub b/test/ntuple_qcd_2000_Inf/batch/condor_40.sub deleted file mode 100644 index 0df962f6ba7..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_41.sub b/test/ntuple_qcd_2000_Inf/batch/condor_41.sub deleted file mode 100644 index 1ffe18c96a4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_42.sub b/test/ntuple_qcd_2000_Inf/batch/condor_42.sub deleted file mode 100644 index d24fb0d6b1a..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_43.sub b/test/ntuple_qcd_2000_Inf/batch/condor_43.sub deleted file mode 100644 index 9b31553b20f..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_44.sub b/test/ntuple_qcd_2000_Inf/batch/condor_44.sub deleted file mode 100644 index 0d5e7aae31d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_45.sub b/test/ntuple_qcd_2000_Inf/batch/condor_45.sub deleted file mode 100644 index 9f6e49cf998..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_46.sub b/test/ntuple_qcd_2000_Inf/batch/condor_46.sub deleted file mode 100644 index 15b546352f3..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_47.sub b/test/ntuple_qcd_2000_Inf/batch/condor_47.sub deleted file mode 100644 index 4e2fa077e12..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_48.sub b/test/ntuple_qcd_2000_Inf/batch/condor_48.sub deleted file mode 100644 index d1f1154c1cc..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_49.sub b/test/ntuple_qcd_2000_Inf/batch/condor_49.sub deleted file mode 100644 index 2d4900fb5b6..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_5.sub b/test/ntuple_qcd_2000_Inf/batch/condor_5.sub deleted file mode 100644 index 13d467ac1b1..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_50.sub b/test/ntuple_qcd_2000_Inf/batch/condor_50.sub deleted file mode 100644 index 866b0132e6a..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_51.sub b/test/ntuple_qcd_2000_Inf/batch/condor_51.sub deleted file mode 100644 index 19115e83cc0..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_52.sub b/test/ntuple_qcd_2000_Inf/batch/condor_52.sub deleted file mode 100644 index 4ad324a7fbf..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_53.sub b/test/ntuple_qcd_2000_Inf/batch/condor_53.sub deleted file mode 100644 index 08a2e0386e4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_54.sub b/test/ntuple_qcd_2000_Inf/batch/condor_54.sub deleted file mode 100644 index 40cb6552f4e..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_55.sub b/test/ntuple_qcd_2000_Inf/batch/condor_55.sub deleted file mode 100644 index b598dc70e64..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_56.sub b/test/ntuple_qcd_2000_Inf/batch/condor_56.sub deleted file mode 100644 index 4c524494d34..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_57.sub b/test/ntuple_qcd_2000_Inf/batch/condor_57.sub deleted file mode 100644 index 8793549ffdf..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_58.sub b/test/ntuple_qcd_2000_Inf/batch/condor_58.sub deleted file mode 100644 index c40e600f953..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_59.sub b/test/ntuple_qcd_2000_Inf/batch/condor_59.sub deleted file mode 100644 index f46d7cb741a..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_6.sub b/test/ntuple_qcd_2000_Inf/batch/condor_6.sub deleted file mode 100644 index 4aa62eed447..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_60.sub b/test/ntuple_qcd_2000_Inf/batch/condor_60.sub deleted file mode 100644 index 0c2d5044118..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_61.sub b/test/ntuple_qcd_2000_Inf/batch/condor_61.sub deleted file mode 100644 index 8c7bb49a627..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_62.sub b/test/ntuple_qcd_2000_Inf/batch/condor_62.sub deleted file mode 100644 index ee61d54a145..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_63.sub b/test/ntuple_qcd_2000_Inf/batch/condor_63.sub deleted file mode 100644 index b5fab403795..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_64.sub b/test/ntuple_qcd_2000_Inf/batch/condor_64.sub deleted file mode 100644 index 084b998a3ad..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_65.sub b/test/ntuple_qcd_2000_Inf/batch/condor_65.sub deleted file mode 100644 index 3c6b09b9bb0..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_66.sub b/test/ntuple_qcd_2000_Inf/batch/condor_66.sub deleted file mode 100644 index 8a1333dd7ea..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_67.sub b/test/ntuple_qcd_2000_Inf/batch/condor_67.sub deleted file mode 100644 index 6655b811d28..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_68.sub b/test/ntuple_qcd_2000_Inf/batch/condor_68.sub deleted file mode 100644 index 9d57f768c97..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_69.sub b/test/ntuple_qcd_2000_Inf/batch/condor_69.sub deleted file mode 100644 index 0ab607461df..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_7.sub b/test/ntuple_qcd_2000_Inf/batch/condor_7.sub deleted file mode 100644 index a5feba4344d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_70.sub b/test/ntuple_qcd_2000_Inf/batch/condor_70.sub deleted file mode 100644 index 236c056ba75..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_71.sub b/test/ntuple_qcd_2000_Inf/batch/condor_71.sub deleted file mode 100644 index 746aad85dd8..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_72.sub b/test/ntuple_qcd_2000_Inf/batch/condor_72.sub deleted file mode 100644 index a4deb2c32b4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_73.sub b/test/ntuple_qcd_2000_Inf/batch/condor_73.sub deleted file mode 100644 index f6422b12e7d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_74.sub b/test/ntuple_qcd_2000_Inf/batch/condor_74.sub deleted file mode 100644 index a66a2f1b76a..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_75.sub b/test/ntuple_qcd_2000_Inf/batch/condor_75.sub deleted file mode 100644 index 7e85a361788..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_76.sub b/test/ntuple_qcd_2000_Inf/batch/condor_76.sub deleted file mode 100644 index 602466cd458..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_8.sub b/test/ntuple_qcd_2000_Inf/batch/condor_8.sub deleted file mode 100644 index 9eb7428ea2e..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/condor_9.sub b/test/ntuple_qcd_2000_Inf/batch/condor_9.sub deleted file mode 100644 index e3d50d383b4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/nJobs.77 b/test/ntuple_qcd_2000_Inf/batch/nJobs.77 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_0.sh b/test/ntuple_qcd_2000_Inf/batch/sge_0.sh deleted file mode 100755 index 912b47d7f35..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_1.sh b/test/ntuple_qcd_2000_Inf/batch/sge_1.sh deleted file mode 100755 index eec15a1f6fe..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_10.sh b/test/ntuple_qcd_2000_Inf/batch/sge_10.sh deleted file mode 100755 index 6fb002d4553..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_11.sh b/test/ntuple_qcd_2000_Inf/batch/sge_11.sh deleted file mode 100755 index dfd5f5402ec..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_12.sh b/test/ntuple_qcd_2000_Inf/batch/sge_12.sh deleted file mode 100755 index 5760a6fd8f6..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_13.sh b/test/ntuple_qcd_2000_Inf/batch/sge_13.sh deleted file mode 100755 index f5dc47851a1..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_14.sh b/test/ntuple_qcd_2000_Inf/batch/sge_14.sh deleted file mode 100755 index 42ed0747c76..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_15.sh b/test/ntuple_qcd_2000_Inf/batch/sge_15.sh deleted file mode 100755 index f1cc2046570..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_16.sh b/test/ntuple_qcd_2000_Inf/batch/sge_16.sh deleted file mode 100755 index bf0ee99dce4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_17.sh b/test/ntuple_qcd_2000_Inf/batch/sge_17.sh deleted file mode 100755 index 2b81754e619..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_18.sh b/test/ntuple_qcd_2000_Inf/batch/sge_18.sh deleted file mode 100755 index 86ce7844100..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_19.sh b/test/ntuple_qcd_2000_Inf/batch/sge_19.sh deleted file mode 100755 index 8de359a4cc8..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_2.sh b/test/ntuple_qcd_2000_Inf/batch/sge_2.sh deleted file mode 100755 index 88474adf843..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_20.sh b/test/ntuple_qcd_2000_Inf/batch/sge_20.sh deleted file mode 100755 index 8c89ae4caf3..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_21.sh b/test/ntuple_qcd_2000_Inf/batch/sge_21.sh deleted file mode 100755 index 2375f706885..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_22.sh b/test/ntuple_qcd_2000_Inf/batch/sge_22.sh deleted file mode 100755 index e86b0608b40..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_23.sh b/test/ntuple_qcd_2000_Inf/batch/sge_23.sh deleted file mode 100755 index 29d6c1e7dbd..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_24.sh b/test/ntuple_qcd_2000_Inf/batch/sge_24.sh deleted file mode 100755 index 2c6e32c03b6..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_25.sh b/test/ntuple_qcd_2000_Inf/batch/sge_25.sh deleted file mode 100755 index 86dd75b15f5..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_26.sh b/test/ntuple_qcd_2000_Inf/batch/sge_26.sh deleted file mode 100755 index 51f7d01badd..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_27.sh b/test/ntuple_qcd_2000_Inf/batch/sge_27.sh deleted file mode 100755 index eab2fdaf255..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_28.sh b/test/ntuple_qcd_2000_Inf/batch/sge_28.sh deleted file mode 100755 index ac0dd8fff10..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_29.sh b/test/ntuple_qcd_2000_Inf/batch/sge_29.sh deleted file mode 100755 index 2a05001453d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_3.sh b/test/ntuple_qcd_2000_Inf/batch/sge_3.sh deleted file mode 100755 index 9de71601670..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_30.sh b/test/ntuple_qcd_2000_Inf/batch/sge_30.sh deleted file mode 100755 index 9e8d04aa971..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_31.sh b/test/ntuple_qcd_2000_Inf/batch/sge_31.sh deleted file mode 100755 index e6038e0d7ea..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_32.sh b/test/ntuple_qcd_2000_Inf/batch/sge_32.sh deleted file mode 100755 index 9615bc4565a..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_33.sh b/test/ntuple_qcd_2000_Inf/batch/sge_33.sh deleted file mode 100755 index 920f4514641..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_34.sh b/test/ntuple_qcd_2000_Inf/batch/sge_34.sh deleted file mode 100755 index e624e8033d1..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_35.sh b/test/ntuple_qcd_2000_Inf/batch/sge_35.sh deleted file mode 100755 index ef7c01e47a3..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_36.sh b/test/ntuple_qcd_2000_Inf/batch/sge_36.sh deleted file mode 100755 index 1a721f05041..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_37.sh b/test/ntuple_qcd_2000_Inf/batch/sge_37.sh deleted file mode 100755 index 83c77eb9c62..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_38.sh b/test/ntuple_qcd_2000_Inf/batch/sge_38.sh deleted file mode 100755 index 5cae5ad4164..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_39.sh b/test/ntuple_qcd_2000_Inf/batch/sge_39.sh deleted file mode 100755 index df2e0077d1e..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_4.sh b/test/ntuple_qcd_2000_Inf/batch/sge_4.sh deleted file mode 100755 index 65f3edfa21f..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_40.sh b/test/ntuple_qcd_2000_Inf/batch/sge_40.sh deleted file mode 100755 index 07ecfb81f93..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_41.sh b/test/ntuple_qcd_2000_Inf/batch/sge_41.sh deleted file mode 100755 index cafea02f0b3..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_42.sh b/test/ntuple_qcd_2000_Inf/batch/sge_42.sh deleted file mode 100755 index 200a0c68a76..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_43.sh b/test/ntuple_qcd_2000_Inf/batch/sge_43.sh deleted file mode 100755 index 70ae1561ac3..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_44.sh b/test/ntuple_qcd_2000_Inf/batch/sge_44.sh deleted file mode 100755 index 3a1722b458b..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_45.sh b/test/ntuple_qcd_2000_Inf/batch/sge_45.sh deleted file mode 100755 index 7c4d07856ed..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_46.sh b/test/ntuple_qcd_2000_Inf/batch/sge_46.sh deleted file mode 100755 index 244d387a1c4..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_47.sh b/test/ntuple_qcd_2000_Inf/batch/sge_47.sh deleted file mode 100755 index 572d186889b..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_48.sh b/test/ntuple_qcd_2000_Inf/batch/sge_48.sh deleted file mode 100755 index acf33c43b4f..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_49.sh b/test/ntuple_qcd_2000_Inf/batch/sge_49.sh deleted file mode 100755 index 6ae55175796..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_5.sh b/test/ntuple_qcd_2000_Inf/batch/sge_5.sh deleted file mode 100755 index e1e9cfbb482..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_50.sh b/test/ntuple_qcd_2000_Inf/batch/sge_50.sh deleted file mode 100755 index 02778e4ccac..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_51.sh b/test/ntuple_qcd_2000_Inf/batch/sge_51.sh deleted file mode 100755 index f11268376e2..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_52.sh b/test/ntuple_qcd_2000_Inf/batch/sge_52.sh deleted file mode 100755 index 294c66e3c89..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_53.sh b/test/ntuple_qcd_2000_Inf/batch/sge_53.sh deleted file mode 100755 index 70f6ece3bd2..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_54.sh b/test/ntuple_qcd_2000_Inf/batch/sge_54.sh deleted file mode 100755 index c1e9015bbc8..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_55.sh b/test/ntuple_qcd_2000_Inf/batch/sge_55.sh deleted file mode 100755 index 0309d967146..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_56.sh b/test/ntuple_qcd_2000_Inf/batch/sge_56.sh deleted file mode 100755 index bc48737a02e..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_57.sh b/test/ntuple_qcd_2000_Inf/batch/sge_57.sh deleted file mode 100755 index 8cab198400b..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_58.sh b/test/ntuple_qcd_2000_Inf/batch/sge_58.sh deleted file mode 100755 index 4a6d342ad7c..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_59.sh b/test/ntuple_qcd_2000_Inf/batch/sge_59.sh deleted file mode 100755 index cf064c8873f..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_6.sh b/test/ntuple_qcd_2000_Inf/batch/sge_6.sh deleted file mode 100755 index ede9692a61b..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_60.sh b/test/ntuple_qcd_2000_Inf/batch/sge_60.sh deleted file mode 100755 index cd96542b650..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_61.sh b/test/ntuple_qcd_2000_Inf/batch/sge_61.sh deleted file mode 100755 index ab7641924c1..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_62.sh b/test/ntuple_qcd_2000_Inf/batch/sge_62.sh deleted file mode 100755 index 00597810ba9..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_63.sh b/test/ntuple_qcd_2000_Inf/batch/sge_63.sh deleted file mode 100755 index f029f93ebde..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_64.sh b/test/ntuple_qcd_2000_Inf/batch/sge_64.sh deleted file mode 100755 index 86625419c74..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_65.sh b/test/ntuple_qcd_2000_Inf/batch/sge_65.sh deleted file mode 100755 index 42f76962340..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_66.sh b/test/ntuple_qcd_2000_Inf/batch/sge_66.sh deleted file mode 100755 index 382526b1a27..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_67.sh b/test/ntuple_qcd_2000_Inf/batch/sge_67.sh deleted file mode 100755 index 6e35c09af59..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_68.sh b/test/ntuple_qcd_2000_Inf/batch/sge_68.sh deleted file mode 100755 index d6a80d3b787..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_69.sh b/test/ntuple_qcd_2000_Inf/batch/sge_69.sh deleted file mode 100755 index 676cf5a7173..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_7.sh b/test/ntuple_qcd_2000_Inf/batch/sge_7.sh deleted file mode 100755 index 97ccaeda06b..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_70.sh b/test/ntuple_qcd_2000_Inf/batch/sge_70.sh deleted file mode 100755 index ba402d9637d..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_71.sh b/test/ntuple_qcd_2000_Inf/batch/sge_71.sh deleted file mode 100755 index 8710d9db865..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_72.sh b/test/ntuple_qcd_2000_Inf/batch/sge_72.sh deleted file mode 100755 index 6a65f2b62a5..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_73.sh b/test/ntuple_qcd_2000_Inf/batch/sge_73.sh deleted file mode 100755 index 2c3a6f9d546..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_74.sh b/test/ntuple_qcd_2000_Inf/batch/sge_74.sh deleted file mode 100755 index f09ddd361e7..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_75.sh b/test/ntuple_qcd_2000_Inf/batch/sge_75.sh deleted file mode 100755 index 1eb268bfbb6..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_76.sh b/test/ntuple_qcd_2000_Inf/batch/sge_76.sh deleted file mode 100755 index d47e41de2a1..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_8.sh b/test/ntuple_qcd_2000_Inf/batch/sge_8.sh deleted file mode 100755 index e47604bf332..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batch/sge_9.sh b/test/ntuple_qcd_2000_Inf/batch/sge_9.sh deleted file mode 100755 index 8c723ed3576..00000000000 --- a/test/ntuple_qcd_2000_Inf/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/batchscript.sh b/test/ntuple_qcd_2000_Inf/batchscript.sh deleted file mode 100755 index 89cd3fb9eb9..00000000000 --- a/test/ntuple_qcd_2000_Inf/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_2000_Inf" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/condor.sub b/test/ntuple_qcd_2000_Inf/condor.sub deleted file mode 100644 index 4fa363f7559..00000000000 --- a/test/ntuple_qcd_2000_Inf/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT2000toInfTuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=77 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ntuple_qcd_2000_Inf_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 77 - \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/helper b/test/ntuple_qcd_2000_Inf/helper deleted file mode 120000 index 73f6bcfdfed..00000000000 --- a/test/ntuple_qcd_2000_Inf/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_2000_Inf/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/output b/test/ntuple_qcd_2000_Inf/output deleted file mode 120000 index d08de4acf7e..00000000000 --- a/test/ntuple_qcd_2000_Inf/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_2000_Inf/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_2000_Inf/sge_sub.sh b/test/ntuple_qcd_2000_Inf/sge_sub.sh deleted file mode 100755 index 04edb291adf..00000000000 --- a/test/ntuple_qcd_2000_Inf/sge_sub.sh +++ /dev/null @@ -1,77 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_2000_Inf/batch/sge_76.sh diff --git a/test/ntuple_qcd_200_300/ademoor.cc b/test/ntuple_qcd_200_300/ademoor.cc deleted file mode 100644 index 21cb9ba2965d3f4ed76f569054983ab020623dfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$Wl$X4l7^ANZLr`l1b3G}f&|y#2~Kc#hr!(~Xa);D3=-VkT?U5`f+kq75Om4b zcfY-RZ|&W#IzRgD?$f8v`{zLcAp8l$zYdy|jD{+wl>AeQ_TJpW!O6+>|E(fDb^JO1 zG>dBIYU*y~{?8)GQv&?*ti}XUep8=zCoRi!8ZXz>Y$wRn>_E`eLVnQH7L0(P_Vual z@4#?-AA;e;9fDz(kBo$fQh-76j~#`S+~j{Wqyj>2e2Tx;{ayVOg7M;MO5jfiLBXHV z!VnB5KnMoiwzng65&lTwJ|qF{mucXiPg(1fpi%E_+f}*|D>p8APxQ88xDImT7$ZNV z3rnKr_irMKO+8V|X=sc0J5OT7JZj+z{5E=*Ot0xp9>(45ayGwzXGHP*;MnWM%B9o> zx#8A_lLSts(U7wN#B3M@qs54KD>Agbstq~lilN3e8&AWyz^FZb91-~GvvfVjlLrb6VEUXNoo;Olo-{BhMttD*0SL@bjb%Y9gB?&sN zM-S=&7{lVdJF-Nt0ZgqAF+g4wcu~oR9T{a__P7p?BkGK6o&$PkG^{3U1Odd4LE)&T zKyEsjys}qg8b&Oa z+T%i`jj=C)t6GKF z4GwZ7xX?l7P)VX<3W_6nZTz}fsD4$9I> z7A>bqzse=O$n3&#DfNFaOo`Sh2&r6SMf9p>>vzgXvFBYjW+t=7(w-Iw(rQMIKFaof<=4%hvxy8lDUnJ9Hw zKx>g)Ik6x{l)%?~EEMdi`RAop6#jDVdz-^S(^r!5MNtc^m3ebL`!c`+h63vnW*{o; zg8$@sAZ#Slq|Wfpmxu8v7<+}$Xc*Z-Dk{O?%0alA6vI0U#`oJy!_{(A=Zc>mMu)_V zQ&O~+|A@bsfMkG4#6O7F)q{+jVU-|ecxTL(Zlj`&9lv+R(^_;^DQ7w($s0ZRxoEjf z!zNkQzV0HaUgcvu+79gDA`KYfz3qg+2o!ME-nIXcdBu+Kno8St7`wIGv-pG|I>dml z(nIr}s=@(%#xPqNzx=F}@|@10drzP7ZqtDq;BB30ANa!`1)t*KJhAkB?WvkgoS^r+ zPCHkzNRRrvyNdaP*;~S#k6zC=?S?hZ5vMRsLd*3m=Nx>(2J}S)L(a!6Nd3R27NcG& zyZas;Ye&V;XLKRcefnX{-JxJ$=zK9|TZ9hsT*5ji8Eow0oGsG_3L_Fz9Gyx`QLK@F zlq0i?YYYilHR^H05~=>!0#>;A1u6aVN=LvBcY@~>)E=2hFqb^pF6i`qx02JAWPnFE zVdC65FX`F6qKhDv2ASO|cbTM0De(bQJaONu$91JGt2h?zrycEQD%DH~0eEAra!q+m zCZIyxS*$f?JjpF$_OzZk0K3cRilf93iz0}@VX&XU`Lxpvo+K`6!-+>g5{8G9y5z4I zF;_oSN3Q7EO_8(f-hnhY5hnIk&6HaZvz-sK;w12x1{+AZTwb$M!mn@G>k)YK}y%5X8Eg+9Ux5qt56uA-#FgI4l8^lTI%g~y?zejH3HLkrWy|frjhAtX&dkmn$>b|`qfmP2l1A{P z&-7uA5r#d6yZROddNSB*YA{TW`5{*=BOEwa=&u1psfWt$VU4MUfP1 zi3=zB7ZTPu8a+bk>s_D{f>8OTlczALqFf| zDYFsH6bz7GNBsQ$ETCmtzOI*PV61FHg-LxOY}~Dl$mog{rPSYi%~@Yssm(~i#0uO0T@Z%+(+9^{JODW|$)neD%l%>77i!NsE>*{kJi3hz;P`03 z#Q3D^1UaSIVZ-SNt!z4nB??%M52f1is&KLFblJzh$ECRR*HRL?k1XOW&9ejdl&7N>N>;C3;cj*E%;-syEBT4)c(q zgv!@c+bL8MEN72Qqvo2B6)C=>!9w@@%-JgO$Z(%^K@|t8nWnG`mOLI8O};WKm#G66 zP@Ef|5bawU&U$&Hm4~hx)?X2X-2y~p_sYA+2!W3IY`FA!K6nF5H=jJg@(0%9B^5=v zab#k6N9e{*H+w;7;t8wjBM1R?9TBY^LhW3Zts1E?|}vh;le zzwbhWm)zfO5Cn;KMvQ!fvZcj~8*w zAU7_>pWPJy*!(GYhdX%dZ}vkg42A=OXQxWri>?w>gLF04!W_VZ940Puj@rbc`6gJd zgdg}YU@;zj77=xkME<7YB7!n-U#2R;cj@yPEMcn;*0;y3&n%kN>Ch$QuOB{AerPnp zr(7;$vrmv7S=w|I>p&juW-2CM<&~q0ebswn0F-j?d_7bBTh~~u5hDCU3mRRY?PH82 zJ}r~K&YGB~gxW^t>Fv$J!EZ~}+=k?z9%nBGAdw>q>%n_5k-v(06Nr*n)ocxs+Ht=C zHtfMG4YHs=gn0lx{Emccun;I(B>E@A=SUlWebRq6>QD7wj6(Hxb#ihye=6WwIJucQ zxN-h3%Umm<>I}n!nA7f5l+y{ZD)~PnPC8!`>NYas7iM;HF8*a%(*I!@M#>YjCp^)2 z%)ePi$4&c3Lo6WYCZ+i66%_ySh9`7ae;QW#+djY(x{E)dyQo8WJeFlSg?hhS2IW^r?91AG&Xlh9p$73@K> zwf1GUc10$XNFu<@?M6qsNA*Y56!@#_JSAJHOOR_n8zEdpaHzIpz{HZEW7O^C4Al0?c~K8 zG^O7v&4Fldm1Z=Zu(mu%+f^mWd`5KpuIe;&T6IIeTnn!cz&%C@}E+EgM1 zOX0RMd;9)%vs2=5HwhSUX_tK|VWj4LdXp&6+M`Js+V7W1RW9zQ+ zc&b`ky%*)H7M?svW7G`OZs4^D6(c?7`%;3CT~5xscs0V;+n{;;16#^l_^ezjt##*k zk!xXEpVqzn7OO=Din~|X`%o*_kQ!^6i z8c7DVz5{pTtnZJ*2z~IOlbX9;g1r05b>i8wTs;x~g;B5MYq{noaM`r3ph|qE-J{R0 z%xe+4dZwh$pNvag?Qm^ejTgt)_hO}N#ny2!ewJ4y@`WT0-t62pdrw!mxv+Noetb|} z&?ChaM*0vNf~if8v3E!Jf`Q46Zy29WghiI8Z)r;-WsZbT&p;p3SH`R#{8<_;MLgK6Vth-w0`X`5lwAIr$`xCuT1%bZ=Vy+l7PC zfR<4;1O1HgJ+J*?ev`sHy~v z8ppM)#Hk76lq&N2YD_A}@pde5-mfT{;G#eWm_v;ucsS zk#0a6GV`n%@tE>Dv=nK&Sa2CO{Yh?Tt$4YCc+UJLDBeGB-XSKvd(p}A(5)OK} zN47U3Du;Q^mpQ%2MmCk~aJ+!R@#F~_Qk#(AC96xMbtkD0qHf!*S`s{01n$FKzoeSc z)_+^)1Y=v^p1mEet*$JXrVQw;WK3*3(v#k%}X{RMExFip#KYS;#O&B*^>1}DeH=Kgi8Os0-xelIJ=H@ylc z?-KSWZF(3n@wQ@*DE;Zb1=)wzd4oo&pJ%7?G4#k)ASJ2DD(s|f|R z)v7J_%8o)MsV|P>C$pyG|vlOo8L5*=vGC6`S`!%J$aa7~+Pl(f@N(C4K zqFq0rsp6oucp&-Di076~NZrh~Wg_>&f>m}0sSQmwGtKE;ypd7F?OZuYTl1DWL>8-^;K!-#&DWKBX$FF*})sPLPFh28fZwT%o0 z9UR1v=T|I8rz<}73U5H0+Ps46zx@e%jX4LZuTgLmau(6OU(*}pL}_qVc-)`fw-pCM zo=IbN_YY>r8^{SA5yZ8x4J*}{f^057peU|sFq4!i3OF*KTi#_MS(^084u{*9xDHsO zRdCHmxrB==@|;4o-Vjag702&>jUdt~0YhVx56Dry;^W0uWu3mCh-{5a(;i3lP$#(L zD6H_?n)!IGPWm~oe0&G0>W|*%F!x!N|@}T3UcEQUIkNP_9ACw~U7S{Z}OESkV!9A#Q+C7Sn&m35e zN+{42InbPQO6K2qN%Gk1g`(wDd~{`fDH3Q4aY;&j^YcJ5(`;v-{L75aOZoIAo+8v( zo8)lH>mU(%-vK`HG3i3Ks@=L zKn?S(s48=K`F&^JY$3ED%^xmfE#5<#dM1Yrucc$aKG1FUWD-*fiPZN(Jk)R{iE`&K zWK7eg6p-};UuimW9Xs)9bDR#N3&a%tBBcXC-PeD|CqvNi0LKdaLApD~;=oiQ6?a+H zIdI-N))F-xf0Fvh8}`98^F@^)&>EYCrb{haU}#=b6Z)R(G!XDMmFXNF3U@Jsi?X zj&#j@r^V)@)wN-Ee~4;`(5>6g{@ckQ>NnPQ`kWYpxUUs&yIP?}jXNi`>S-|?5E|ft8%skD#sgr1fkN-Vr z3}wd)m7Is|mSKZ9>1wr5bV{Hb&RLi6N=w~SN+MgfkoPgk3Eg@hI_FzYdO^9ClBFog Tw1IYtBIWA5#1;AlgB` diff --git a/test/ntuple_qcd_200_300/batch/condor_0.sub b/test/ntuple_qcd_200_300/batch/condor_0.sub deleted file mode 100644 index e12a00dea0e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_1.sub b/test/ntuple_qcd_200_300/batch/condor_1.sub deleted file mode 100644 index 03345270cad..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_10.sub b/test/ntuple_qcd_200_300/batch/condor_10.sub deleted file mode 100644 index 759b8a3ab82..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_100.sub b/test/ntuple_qcd_200_300/batch/condor_100.sub deleted file mode 100644 index 8a506a86704..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_101.sub b/test/ntuple_qcd_200_300/batch/condor_101.sub deleted file mode 100644 index c6252e47dc8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_102.sub b/test/ntuple_qcd_200_300/batch/condor_102.sub deleted file mode 100644 index 0c3f9763e5d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_103.sub b/test/ntuple_qcd_200_300/batch/condor_103.sub deleted file mode 100644 index 61b3d25f3dc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_104.sub b/test/ntuple_qcd_200_300/batch/condor_104.sub deleted file mode 100644 index 21a93cfb8c2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_105.sub b/test/ntuple_qcd_200_300/batch/condor_105.sub deleted file mode 100644 index 3d580676bde..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_106.sub b/test/ntuple_qcd_200_300/batch/condor_106.sub deleted file mode 100644 index 2bd6155090e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_107.sub b/test/ntuple_qcd_200_300/batch/condor_107.sub deleted file mode 100644 index e47fb8a0adf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_108.sub b/test/ntuple_qcd_200_300/batch/condor_108.sub deleted file mode 100644 index 4001f8226a8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_109.sub b/test/ntuple_qcd_200_300/batch/condor_109.sub deleted file mode 100644 index 21b77c899fb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_11.sub b/test/ntuple_qcd_200_300/batch/condor_11.sub deleted file mode 100644 index 33ffbc7751a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_110.sub b/test/ntuple_qcd_200_300/batch/condor_110.sub deleted file mode 100644 index 3bc647be2f1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_111.sub b/test/ntuple_qcd_200_300/batch/condor_111.sub deleted file mode 100644 index bd2863b86ca..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_112.sub b/test/ntuple_qcd_200_300/batch/condor_112.sub deleted file mode 100644 index e73843733f9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_113.sub b/test/ntuple_qcd_200_300/batch/condor_113.sub deleted file mode 100644 index 408ec1739de..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_114.sub b/test/ntuple_qcd_200_300/batch/condor_114.sub deleted file mode 100644 index 904c4ac0aa0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_115.sub b/test/ntuple_qcd_200_300/batch/condor_115.sub deleted file mode 100644 index 8ba9e534f29..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_116.sub b/test/ntuple_qcd_200_300/batch/condor_116.sub deleted file mode 100644 index 59340a77c21..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_117.sub b/test/ntuple_qcd_200_300/batch/condor_117.sub deleted file mode 100644 index 993f1e89a39..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_118.sub b/test/ntuple_qcd_200_300/batch/condor_118.sub deleted file mode 100644 index 81754a8c78f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_119.sub b/test/ntuple_qcd_200_300/batch/condor_119.sub deleted file mode 100644 index 4c285b2d8a0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_12.sub b/test/ntuple_qcd_200_300/batch/condor_12.sub deleted file mode 100644 index cbd238e6922..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_120.sub b/test/ntuple_qcd_200_300/batch/condor_120.sub deleted file mode 100644 index 0de16a08f7e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_121.sub b/test/ntuple_qcd_200_300/batch/condor_121.sub deleted file mode 100644 index 28790bab769..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_122.sub b/test/ntuple_qcd_200_300/batch/condor_122.sub deleted file mode 100644 index 467fff80413..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_123.sub b/test/ntuple_qcd_200_300/batch/condor_123.sub deleted file mode 100644 index 89a78a3b63f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_124.sub b/test/ntuple_qcd_200_300/batch/condor_124.sub deleted file mode 100644 index fea8129373f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_125.sub b/test/ntuple_qcd_200_300/batch/condor_125.sub deleted file mode 100644 index d02e91a35c5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_126.sub b/test/ntuple_qcd_200_300/batch/condor_126.sub deleted file mode 100644 index 9d2e1964f1d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_127.sub b/test/ntuple_qcd_200_300/batch/condor_127.sub deleted file mode 100644 index b05c37f9812..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_128.sub b/test/ntuple_qcd_200_300/batch/condor_128.sub deleted file mode 100644 index 1d051551c09..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_129.sub b/test/ntuple_qcd_200_300/batch/condor_129.sub deleted file mode 100644 index 53fe727d3e4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_13.sub b/test/ntuple_qcd_200_300/batch/condor_13.sub deleted file mode 100644 index 8eb5629c3d3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_130.sub b/test/ntuple_qcd_200_300/batch/condor_130.sub deleted file mode 100644 index d2aa992f0eb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_131.sub b/test/ntuple_qcd_200_300/batch/condor_131.sub deleted file mode 100644 index 708d80f31a3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_132.sub b/test/ntuple_qcd_200_300/batch/condor_132.sub deleted file mode 100644 index 48589715dd0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_133.sub b/test/ntuple_qcd_200_300/batch/condor_133.sub deleted file mode 100644 index efa76bba742..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_134.sub b/test/ntuple_qcd_200_300/batch/condor_134.sub deleted file mode 100644 index e0fd722c6d5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_135.sub b/test/ntuple_qcd_200_300/batch/condor_135.sub deleted file mode 100644 index 2d77203c808..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_136.sub b/test/ntuple_qcd_200_300/batch/condor_136.sub deleted file mode 100644 index 281becaa7df..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_137.sub b/test/ntuple_qcd_200_300/batch/condor_137.sub deleted file mode 100644 index 85cbed21ddb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_138.sub b/test/ntuple_qcd_200_300/batch/condor_138.sub deleted file mode 100644 index 998b903b7af..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_139.sub b/test/ntuple_qcd_200_300/batch/condor_139.sub deleted file mode 100644 index ce2ee8c8ca1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_139.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.139.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_139.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.139.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_14.sub b/test/ntuple_qcd_200_300/batch/condor_14.sub deleted file mode 100644 index ebd9d9cf7f1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_140.sub b/test/ntuple_qcd_200_300/batch/condor_140.sub deleted file mode 100644 index 81528fd3985..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_140.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.140.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_140.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.140.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_141.sub b/test/ntuple_qcd_200_300/batch/condor_141.sub deleted file mode 100644 index ca858ad4c79..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_141.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.141.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_141.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.141.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_142.sub b/test/ntuple_qcd_200_300/batch/condor_142.sub deleted file mode 100644 index 47e9fbae57f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_142.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.142.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_142.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.142.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_143.sub b/test/ntuple_qcd_200_300/batch/condor_143.sub deleted file mode 100644 index 9f746c4f260..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_143.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.143.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_143.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.143.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_144.sub b/test/ntuple_qcd_200_300/batch/condor_144.sub deleted file mode 100644 index 93003ad4389..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_144.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.144.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_144.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.144.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_145.sub b/test/ntuple_qcd_200_300/batch/condor_145.sub deleted file mode 100644 index bf1edf061e3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_145.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.145.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_145.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.145.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_146.sub b/test/ntuple_qcd_200_300/batch/condor_146.sub deleted file mode 100644 index 540b123dae5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_146.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.146.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_146.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.146.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_147.sub b/test/ntuple_qcd_200_300/batch/condor_147.sub deleted file mode 100644 index f8a7517125d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_147.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.147.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_147.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.147.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_148.sub b/test/ntuple_qcd_200_300/batch/condor_148.sub deleted file mode 100644 index 41f58ec3fac..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_148.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.148.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_148.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.148.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_149.sub b/test/ntuple_qcd_200_300/batch/condor_149.sub deleted file mode 100644 index 49eb71fcc31..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_149.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.149.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_149.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.149.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_15.sub b/test/ntuple_qcd_200_300/batch/condor_15.sub deleted file mode 100644 index 549b3c2ab80..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_150.sub b/test/ntuple_qcd_200_300/batch/condor_150.sub deleted file mode 100644 index b12041c5776..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_150.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.150.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_150.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.150.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_151.sub b/test/ntuple_qcd_200_300/batch/condor_151.sub deleted file mode 100644 index 448ba28e3ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_151.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.151.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_151.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.151.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_152.sub b/test/ntuple_qcd_200_300/batch/condor_152.sub deleted file mode 100644 index aa5b79dadf6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_152.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.152.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_152.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.152.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_153.sub b/test/ntuple_qcd_200_300/batch/condor_153.sub deleted file mode 100644 index 6e7bf1eca9c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_153.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.153.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_153.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.153.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_154.sub b/test/ntuple_qcd_200_300/batch/condor_154.sub deleted file mode 100644 index 9d005cc8173..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_154.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.154.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_154.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.154.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_155.sub b/test/ntuple_qcd_200_300/batch/condor_155.sub deleted file mode 100644 index 4888f57a893..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_155.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.155.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_155.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.155.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_156.sub b/test/ntuple_qcd_200_300/batch/condor_156.sub deleted file mode 100644 index b5e54fed3f9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_156.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.156.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_156.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.156.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_157.sub b/test/ntuple_qcd_200_300/batch/condor_157.sub deleted file mode 100644 index 782442a5ce6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_157.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.157.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_157.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.157.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_158.sub b/test/ntuple_qcd_200_300/batch/condor_158.sub deleted file mode 100644 index 681e2d35ddc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_158.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.158.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_158.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.158.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_159.sub b/test/ntuple_qcd_200_300/batch/condor_159.sub deleted file mode 100644 index 88a49067797..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_159.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.159.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_159.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.159.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_16.sub b/test/ntuple_qcd_200_300/batch/condor_16.sub deleted file mode 100644 index 25800c2702f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_160.sub b/test/ntuple_qcd_200_300/batch/condor_160.sub deleted file mode 100644 index ff71f79e047..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_160.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.160.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_160.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.160.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_161.sub b/test/ntuple_qcd_200_300/batch/condor_161.sub deleted file mode 100644 index 3d37647f138..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_161.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.161.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_161.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.161.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_162.sub b/test/ntuple_qcd_200_300/batch/condor_162.sub deleted file mode 100644 index b1f602aadd6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_162.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.162.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_162.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.162.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_163.sub b/test/ntuple_qcd_200_300/batch/condor_163.sub deleted file mode 100644 index f9c69a0d7a2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_163.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.163.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_163.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.163.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_164.sub b/test/ntuple_qcd_200_300/batch/condor_164.sub deleted file mode 100644 index 759ead88c46..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_164.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.164.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_164.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.164.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_165.sub b/test/ntuple_qcd_200_300/batch/condor_165.sub deleted file mode 100644 index 79f3b48bc05..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_165.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.165.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_165.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.165.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_166.sub b/test/ntuple_qcd_200_300/batch/condor_166.sub deleted file mode 100644 index 13061a7c829..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_166.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.166.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_166.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.166.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_167.sub b/test/ntuple_qcd_200_300/batch/condor_167.sub deleted file mode 100644 index 9d510463e4f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_167.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.167.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_167.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.167.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_168.sub b/test/ntuple_qcd_200_300/batch/condor_168.sub deleted file mode 100644 index 56f15c345eb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_168.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.168.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_168.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.168.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_169.sub b/test/ntuple_qcd_200_300/batch/condor_169.sub deleted file mode 100644 index e13139a9647..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_169.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.169.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_169.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.169.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_17.sub b/test/ntuple_qcd_200_300/batch/condor_17.sub deleted file mode 100644 index 7f2162d5109..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_170.sub b/test/ntuple_qcd_200_300/batch/condor_170.sub deleted file mode 100644 index 8237fba9e30..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_170.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.170.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_170.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.170.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_171.sub b/test/ntuple_qcd_200_300/batch/condor_171.sub deleted file mode 100644 index 1dd5144f95e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_171.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.171.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_171.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.171.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_172.sub b/test/ntuple_qcd_200_300/batch/condor_172.sub deleted file mode 100644 index d23014db66a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_172.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.172.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_172.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.172.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_173.sub b/test/ntuple_qcd_200_300/batch/condor_173.sub deleted file mode 100644 index cb3346e3ea4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_173.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.173.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_173.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.173.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_174.sub b/test/ntuple_qcd_200_300/batch/condor_174.sub deleted file mode 100644 index ae65239be9a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_174.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.174.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_174.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.174.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_175.sub b/test/ntuple_qcd_200_300/batch/condor_175.sub deleted file mode 100644 index af69923a5c5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_175.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.175.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_175.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.175.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_176.sub b/test/ntuple_qcd_200_300/batch/condor_176.sub deleted file mode 100644 index f216159cf55..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_176.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.176.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_176.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.176.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_177.sub b/test/ntuple_qcd_200_300/batch/condor_177.sub deleted file mode 100644 index 6cb2a2043a3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_177.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.177.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_177.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.177.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_178.sub b/test/ntuple_qcd_200_300/batch/condor_178.sub deleted file mode 100644 index ae0ef65af01..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_178.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.178.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_178.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.178.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_179.sub b/test/ntuple_qcd_200_300/batch/condor_179.sub deleted file mode 100644 index db5a261e638..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_179.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.179.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_179.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.179.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_18.sub b/test/ntuple_qcd_200_300/batch/condor_18.sub deleted file mode 100644 index f1f2665f107..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_180.sub b/test/ntuple_qcd_200_300/batch/condor_180.sub deleted file mode 100644 index 51253e6640b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_180.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.180.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_180.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.180.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_181.sub b/test/ntuple_qcd_200_300/batch/condor_181.sub deleted file mode 100644 index 8d67c6cb753..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_181.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.181.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_181.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.181.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_182.sub b/test/ntuple_qcd_200_300/batch/condor_182.sub deleted file mode 100644 index 44142a0590b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_182.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.182.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_182.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.182.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_183.sub b/test/ntuple_qcd_200_300/batch/condor_183.sub deleted file mode 100644 index 3d0cab72ed0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_183.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.183.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_183.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.183.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_184.sub b/test/ntuple_qcd_200_300/batch/condor_184.sub deleted file mode 100644 index 862ba445d5f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_184.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.184.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_184.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.184.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_185.sub b/test/ntuple_qcd_200_300/batch/condor_185.sub deleted file mode 100644 index d77924375c4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_185.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.185.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_185.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.185.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_186.sub b/test/ntuple_qcd_200_300/batch/condor_186.sub deleted file mode 100644 index 902028167d3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_186.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.186.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_186.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.186.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_187.sub b/test/ntuple_qcd_200_300/batch/condor_187.sub deleted file mode 100644 index c4bcde219f3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_187.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.187.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_187.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.187.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_188.sub b/test/ntuple_qcd_200_300/batch/condor_188.sub deleted file mode 100644 index ebb62d98fb2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_188.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.188.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_188.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.188.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_189.sub b/test/ntuple_qcd_200_300/batch/condor_189.sub deleted file mode 100644 index e82e772b571..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_189.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.189.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_189.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.189.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_19.sub b/test/ntuple_qcd_200_300/batch/condor_19.sub deleted file mode 100644 index 50dd99bf018..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_190.sub b/test/ntuple_qcd_200_300/batch/condor_190.sub deleted file mode 100644 index 943b9b2a28c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_190.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.190.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_190.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.190.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_191.sub b/test/ntuple_qcd_200_300/batch/condor_191.sub deleted file mode 100644 index e918755357a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_191.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.191.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_191.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.191.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_192.sub b/test/ntuple_qcd_200_300/batch/condor_192.sub deleted file mode 100644 index 2ca04f506f7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_192.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.192.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_192.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.192.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_193.sub b/test/ntuple_qcd_200_300/batch/condor_193.sub deleted file mode 100644 index 7c1a122424f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_193.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.193.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_193.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.193.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_194.sub b/test/ntuple_qcd_200_300/batch/condor_194.sub deleted file mode 100644 index 74643560cbe..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_194.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.194.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_194.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.194.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_195.sub b/test/ntuple_qcd_200_300/batch/condor_195.sub deleted file mode 100644 index 9fc433c7419..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_195.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.195.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_195.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.195.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_196.sub b/test/ntuple_qcd_200_300/batch/condor_196.sub deleted file mode 100644 index 9f2a0f3645e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_196.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.196.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_196.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.196.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_197.sub b/test/ntuple_qcd_200_300/batch/condor_197.sub deleted file mode 100644 index 321afb40fc0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_197.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.197.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_197.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.197.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_198.sub b/test/ntuple_qcd_200_300/batch/condor_198.sub deleted file mode 100644 index 17c5b31654a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_198.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.198.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_198.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.198.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_199.sub b/test/ntuple_qcd_200_300/batch/condor_199.sub deleted file mode 100644 index dc78ba82997..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_199.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.199.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_199.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.199.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_2.sub b/test/ntuple_qcd_200_300/batch/condor_2.sub deleted file mode 100644 index 43c658bd087..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_20.sub b/test/ntuple_qcd_200_300/batch/condor_20.sub deleted file mode 100644 index 23dfc9a1809..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_200.sub b/test/ntuple_qcd_200_300/batch/condor_200.sub deleted file mode 100644 index 08212996ca2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_200.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.200.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_200.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.200.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_201.sub b/test/ntuple_qcd_200_300/batch/condor_201.sub deleted file mode 100644 index 13a09366568..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_201.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.201.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_201.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.201.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_202.sub b/test/ntuple_qcd_200_300/batch/condor_202.sub deleted file mode 100644 index f375ee17059..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_202.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.202.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_202.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.202.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_203.sub b/test/ntuple_qcd_200_300/batch/condor_203.sub deleted file mode 100644 index f23c08b86ee..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_203.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.203.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_203.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.203.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_204.sub b/test/ntuple_qcd_200_300/batch/condor_204.sub deleted file mode 100644 index 25454cfbcb8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_204.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.204.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_204.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.204.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_205.sub b/test/ntuple_qcd_200_300/batch/condor_205.sub deleted file mode 100644 index 2cb5a3e2165..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_205.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.205.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_205.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.205.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_206.sub b/test/ntuple_qcd_200_300/batch/condor_206.sub deleted file mode 100644 index 405f0bd9469..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_206.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.206.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_206.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.206.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_207.sub b/test/ntuple_qcd_200_300/batch/condor_207.sub deleted file mode 100644 index f350a1064a7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_207.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.207.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_207.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.207.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_208.sub b/test/ntuple_qcd_200_300/batch/condor_208.sub deleted file mode 100644 index 1e5a62894b2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_208.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.208.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_208.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.208.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_209.sub b/test/ntuple_qcd_200_300/batch/condor_209.sub deleted file mode 100644 index 8811ce69fe1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_209.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.209.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_209.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.209.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_21.sub b/test/ntuple_qcd_200_300/batch/condor_21.sub deleted file mode 100644 index a8140000cb2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_210.sub b/test/ntuple_qcd_200_300/batch/condor_210.sub deleted file mode 100644 index 411bd1df5f7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_210.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.210.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_210.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.210.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_211.sub b/test/ntuple_qcd_200_300/batch/condor_211.sub deleted file mode 100644 index 33b6bb6a073..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_211.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.211.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_211.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.211.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_212.sub b/test/ntuple_qcd_200_300/batch/condor_212.sub deleted file mode 100644 index b5a67a2c575..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_212.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.212.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_212.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.212.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_213.sub b/test/ntuple_qcd_200_300/batch/condor_213.sub deleted file mode 100644 index f8d22234e51..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_213.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.213.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_213.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.213.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_214.sub b/test/ntuple_qcd_200_300/batch/condor_214.sub deleted file mode 100644 index 31a524d50c7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_214.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.214.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_214.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.214.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_215.sub b/test/ntuple_qcd_200_300/batch/condor_215.sub deleted file mode 100644 index 5fb7fb703fe..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_215.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.215.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_215.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.215.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_216.sub b/test/ntuple_qcd_200_300/batch/condor_216.sub deleted file mode 100644 index 51835e1fda4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_216.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.216.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_216.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.216.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_217.sub b/test/ntuple_qcd_200_300/batch/condor_217.sub deleted file mode 100644 index 2a9a9d39275..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_217.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.217.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_217.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.217.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_218.sub b/test/ntuple_qcd_200_300/batch/condor_218.sub deleted file mode 100644 index 89cb5125f56..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_218.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.218.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_218.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.218.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_219.sub b/test/ntuple_qcd_200_300/batch/condor_219.sub deleted file mode 100644 index c0254d29f23..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_219.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.219.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_219.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.219.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_22.sub b/test/ntuple_qcd_200_300/batch/condor_22.sub deleted file mode 100644 index 8a25916a448..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_220.sub b/test/ntuple_qcd_200_300/batch/condor_220.sub deleted file mode 100644 index 12139e3afd6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_220.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.220.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_220.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.220.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_221.sub b/test/ntuple_qcd_200_300/batch/condor_221.sub deleted file mode 100644 index a6a96571ff4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_221.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.221.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_221.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.221.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_222.sub b/test/ntuple_qcd_200_300/batch/condor_222.sub deleted file mode 100644 index c94f31379e2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_222.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.222.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_222.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.222.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_223.sub b/test/ntuple_qcd_200_300/batch/condor_223.sub deleted file mode 100644 index bd1262e3800..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_223.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.223.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_223.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.223.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_224.sub b/test/ntuple_qcd_200_300/batch/condor_224.sub deleted file mode 100644 index 1734461e448..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_224.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.224.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_224.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.224.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_225.sub b/test/ntuple_qcd_200_300/batch/condor_225.sub deleted file mode 100644 index 0fb8c9f01ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_225.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.225.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_225.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.225.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_226.sub b/test/ntuple_qcd_200_300/batch/condor_226.sub deleted file mode 100644 index ae19f1b0a12..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_226.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.226.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_226.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.226.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_227.sub b/test/ntuple_qcd_200_300/batch/condor_227.sub deleted file mode 100644 index 333cf9bcd4c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_227.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.227.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_227.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.227.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_228.sub b/test/ntuple_qcd_200_300/batch/condor_228.sub deleted file mode 100644 index 0752839079e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_228.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.228.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_228.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.228.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_229.sub b/test/ntuple_qcd_200_300/batch/condor_229.sub deleted file mode 100644 index 19d73bb5aa2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_229.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.229.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_229.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.229.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_23.sub b/test/ntuple_qcd_200_300/batch/condor_23.sub deleted file mode 100644 index 3bb0729fe8b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_230.sub b/test/ntuple_qcd_200_300/batch/condor_230.sub deleted file mode 100644 index 2958f042a4d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_230.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.230.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_230.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.230.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_231.sub b/test/ntuple_qcd_200_300/batch/condor_231.sub deleted file mode 100644 index 6ad94a66026..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_231.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.231.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_231.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.231.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_232.sub b/test/ntuple_qcd_200_300/batch/condor_232.sub deleted file mode 100644 index 11d00e9ca1d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_232.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.232.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_232.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.232.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_233.sub b/test/ntuple_qcd_200_300/batch/condor_233.sub deleted file mode 100644 index 06d1bbf0045..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_233.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.233.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_233.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.233.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_234.sub b/test/ntuple_qcd_200_300/batch/condor_234.sub deleted file mode 100644 index 2520bdbbe41..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_234.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.234.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_234.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.234.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_235.sub b/test/ntuple_qcd_200_300/batch/condor_235.sub deleted file mode 100644 index 6cca1e1d176..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_235.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.235.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_235.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.235.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_236.sub b/test/ntuple_qcd_200_300/batch/condor_236.sub deleted file mode 100644 index 9c160aa9557..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_236.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.236.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_236.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.236.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_237.sub b/test/ntuple_qcd_200_300/batch/condor_237.sub deleted file mode 100644 index 9ad3a4bb660..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_237.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.237.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_237.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.237.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_238.sub b/test/ntuple_qcd_200_300/batch/condor_238.sub deleted file mode 100644 index e4ba96eceb7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_238.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.238.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_238.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.238.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_239.sub b/test/ntuple_qcd_200_300/batch/condor_239.sub deleted file mode 100644 index e409c82bf37..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_239.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.239.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_239.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.239.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_24.sub b/test/ntuple_qcd_200_300/batch/condor_24.sub deleted file mode 100644 index a9709e68062..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_240.sub b/test/ntuple_qcd_200_300/batch/condor_240.sub deleted file mode 100644 index 98dbe99ac16..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_240.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.240.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_240.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.240.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_241.sub b/test/ntuple_qcd_200_300/batch/condor_241.sub deleted file mode 100644 index 4ac1d38c357..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_241.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.241.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_241.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.241.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_242.sub b/test/ntuple_qcd_200_300/batch/condor_242.sub deleted file mode 100644 index 5c58e1a1255..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_242.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.242.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_242.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.242.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_243.sub b/test/ntuple_qcd_200_300/batch/condor_243.sub deleted file mode 100644 index aa8164f741c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_243.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.243.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_243.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.243.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_244.sub b/test/ntuple_qcd_200_300/batch/condor_244.sub deleted file mode 100644 index b0a0d9e6d82..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_244.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.244.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_244.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.244.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_245.sub b/test/ntuple_qcd_200_300/batch/condor_245.sub deleted file mode 100644 index 236e0fd64b8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_245.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.245.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_245.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.245.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_246.sub b/test/ntuple_qcd_200_300/batch/condor_246.sub deleted file mode 100644 index a8e927c359c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_246.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.246.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_246.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.246.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_247.sub b/test/ntuple_qcd_200_300/batch/condor_247.sub deleted file mode 100644 index 4b592d425ff..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_247.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.247.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_247.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.247.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_248.sub b/test/ntuple_qcd_200_300/batch/condor_248.sub deleted file mode 100644 index 20868f9faa3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_248.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.248.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_248.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.248.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_249.sub b/test/ntuple_qcd_200_300/batch/condor_249.sub deleted file mode 100644 index ccabfb05bf5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_249.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.249.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_249.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.249.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_25.sub b/test/ntuple_qcd_200_300/batch/condor_25.sub deleted file mode 100644 index 4b971abef2c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_250.sub b/test/ntuple_qcd_200_300/batch/condor_250.sub deleted file mode 100644 index 974ec6892ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_250.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.250.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_250.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.250.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_251.sub b/test/ntuple_qcd_200_300/batch/condor_251.sub deleted file mode 100644 index d25cbd9d5c0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_251.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.251.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_251.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.251.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_252.sub b/test/ntuple_qcd_200_300/batch/condor_252.sub deleted file mode 100644 index 1c03f619f4c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_252.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.252.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_252.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.252.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_253.sub b/test/ntuple_qcd_200_300/batch/condor_253.sub deleted file mode 100644 index 54501d1c1de..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_253.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.253.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_253.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.253.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_254.sub b/test/ntuple_qcd_200_300/batch/condor_254.sub deleted file mode 100644 index 510ea2fdb3e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_254.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.254.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_254.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.254.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_255.sub b/test/ntuple_qcd_200_300/batch/condor_255.sub deleted file mode 100644 index cc03499de7d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_255.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.255.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_255.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.255.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_256.sub b/test/ntuple_qcd_200_300/batch/condor_256.sub deleted file mode 100644 index 7abc6474227..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_256.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.256.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_256.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.256.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_257.sub b/test/ntuple_qcd_200_300/batch/condor_257.sub deleted file mode 100644 index 468ed24d5d5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_257.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.257.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_257.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.257.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_258.sub b/test/ntuple_qcd_200_300/batch/condor_258.sub deleted file mode 100644 index 19be9b596b1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_258.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.258.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_258.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.258.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_259.sub b/test/ntuple_qcd_200_300/batch/condor_259.sub deleted file mode 100644 index b0fc13e12cc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_259.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.259.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_259.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.259.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_26.sub b/test/ntuple_qcd_200_300/batch/condor_26.sub deleted file mode 100644 index de17df94d5b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_260.sub b/test/ntuple_qcd_200_300/batch/condor_260.sub deleted file mode 100644 index 83b2fe49b61..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_260.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.260.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_260.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.260.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_261.sub b/test/ntuple_qcd_200_300/batch/condor_261.sub deleted file mode 100644 index b17a9e7c025..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_261.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.261.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_261.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.261.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_262.sub b/test/ntuple_qcd_200_300/batch/condor_262.sub deleted file mode 100644 index 2f65e05a9bf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_262.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.262.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_262.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.262.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_263.sub b/test/ntuple_qcd_200_300/batch/condor_263.sub deleted file mode 100644 index ecc9da84fa1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_263.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.263.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_263.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.263.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_264.sub b/test/ntuple_qcd_200_300/batch/condor_264.sub deleted file mode 100644 index 006b409dd68..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_264.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.264.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_264.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.264.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_265.sub b/test/ntuple_qcd_200_300/batch/condor_265.sub deleted file mode 100644 index e054922eeac..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_265.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.265.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_265.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.265.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_266.sub b/test/ntuple_qcd_200_300/batch/condor_266.sub deleted file mode 100644 index c467e033f3f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_266.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.266.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_266.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.266.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_267.sub b/test/ntuple_qcd_200_300/batch/condor_267.sub deleted file mode 100644 index f4b74f0987e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_267.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.267.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_267.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.267.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_268.sub b/test/ntuple_qcd_200_300/batch/condor_268.sub deleted file mode 100644 index 4856b4a69b4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_268.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.268.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_268.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.268.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_269.sub b/test/ntuple_qcd_200_300/batch/condor_269.sub deleted file mode 100644 index 508e678fae7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_269.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.269.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_269.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.269.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_27.sub b/test/ntuple_qcd_200_300/batch/condor_27.sub deleted file mode 100644 index 3c4b6a0b056..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_270.sub b/test/ntuple_qcd_200_300/batch/condor_270.sub deleted file mode 100644 index 212393b4613..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_270.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.270.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_270.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.270.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_271.sub b/test/ntuple_qcd_200_300/batch/condor_271.sub deleted file mode 100644 index 670ed60c3b5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_271.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.271.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_271.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.271.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_272.sub b/test/ntuple_qcd_200_300/batch/condor_272.sub deleted file mode 100644 index 4c217e76013..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_272.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.272.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_272.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.272.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_273.sub b/test/ntuple_qcd_200_300/batch/condor_273.sub deleted file mode 100644 index ed93ecd6fa2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_273.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.273.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_273.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.273.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_274.sub b/test/ntuple_qcd_200_300/batch/condor_274.sub deleted file mode 100644 index 3923a4adacf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_274.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.274.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_274.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.274.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_275.sub b/test/ntuple_qcd_200_300/batch/condor_275.sub deleted file mode 100644 index fed7dcd55f2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_275.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.275.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_275.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.275.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_276.sub b/test/ntuple_qcd_200_300/batch/condor_276.sub deleted file mode 100644 index 9695427432c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_276.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.276.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_276.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.276.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_277.sub b/test/ntuple_qcd_200_300/batch/condor_277.sub deleted file mode 100644 index 0b84f5fc3be..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_277.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.277.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_277.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.277.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_278.sub b/test/ntuple_qcd_200_300/batch/condor_278.sub deleted file mode 100644 index bb086892d10..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_278.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.278.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_278.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.278.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_279.sub b/test/ntuple_qcd_200_300/batch/condor_279.sub deleted file mode 100644 index df2ad543619..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_279.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.279.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_279.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.279.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_28.sub b/test/ntuple_qcd_200_300/batch/condor_28.sub deleted file mode 100644 index 50c70a43b59..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_280.sub b/test/ntuple_qcd_200_300/batch/condor_280.sub deleted file mode 100644 index 75bcd497e61..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_280.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.280.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_280.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.280.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_281.sub b/test/ntuple_qcd_200_300/batch/condor_281.sub deleted file mode 100644 index 10f3975e22f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_281.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.281.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_281.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.281.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_282.sub b/test/ntuple_qcd_200_300/batch/condor_282.sub deleted file mode 100644 index f7522c46428..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_282.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.282.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_282.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.282.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_283.sub b/test/ntuple_qcd_200_300/batch/condor_283.sub deleted file mode 100644 index 8cf8ae116ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_283.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.283.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_283.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.283.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_284.sub b/test/ntuple_qcd_200_300/batch/condor_284.sub deleted file mode 100644 index af99febcdf4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_284.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.284.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_284.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.284.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_285.sub b/test/ntuple_qcd_200_300/batch/condor_285.sub deleted file mode 100644 index ce4c771561e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_285.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.285.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_285.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.285.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_286.sub b/test/ntuple_qcd_200_300/batch/condor_286.sub deleted file mode 100644 index cc22fe9b120..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_286.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.286.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_286.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.286.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_287.sub b/test/ntuple_qcd_200_300/batch/condor_287.sub deleted file mode 100644 index c01953b4c70..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_287.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.287.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_287.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.287.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_288.sub b/test/ntuple_qcd_200_300/batch/condor_288.sub deleted file mode 100644 index 1869c73076f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_288.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.288.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_288.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.288.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_289.sub b/test/ntuple_qcd_200_300/batch/condor_289.sub deleted file mode 100644 index 2a7923f8a3c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_289.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.289.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_289.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.289.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_29.sub b/test/ntuple_qcd_200_300/batch/condor_29.sub deleted file mode 100644 index 7a2aea3b168..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_290.sub b/test/ntuple_qcd_200_300/batch/condor_290.sub deleted file mode 100644 index 6fea49aface..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_290.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.290.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_290.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.290.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_291.sub b/test/ntuple_qcd_200_300/batch/condor_291.sub deleted file mode 100644 index 54dad865d16..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_291.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.291.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_291.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.291.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_292.sub b/test/ntuple_qcd_200_300/batch/condor_292.sub deleted file mode 100644 index 0ca96efdd5a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_292.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.292.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_292.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.292.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_293.sub b/test/ntuple_qcd_200_300/batch/condor_293.sub deleted file mode 100644 index cd1d742e7df..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_293.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.293.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_293.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.293.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_294.sub b/test/ntuple_qcd_200_300/batch/condor_294.sub deleted file mode 100644 index 8d183698180..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_294.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.294.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_294.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.294.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_295.sub b/test/ntuple_qcd_200_300/batch/condor_295.sub deleted file mode 100644 index 850dfe43b27..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_295.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.295.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_295.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.295.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_296.sub b/test/ntuple_qcd_200_300/batch/condor_296.sub deleted file mode 100644 index f2702a26483..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_296.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.296.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_296.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.296.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_297.sub b/test/ntuple_qcd_200_300/batch/condor_297.sub deleted file mode 100644 index 548087e1f3c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_297.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.297.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_297.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.297.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_298.sub b/test/ntuple_qcd_200_300/batch/condor_298.sub deleted file mode 100644 index 7bc39aee749..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_298.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.298.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_298.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.298.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_299.sub b/test/ntuple_qcd_200_300/batch/condor_299.sub deleted file mode 100644 index 0c9d450bf12..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_299.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.299.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_299.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.299.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_3.sub b/test/ntuple_qcd_200_300/batch/condor_3.sub deleted file mode 100644 index 588c0b80e51..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_30.sub b/test/ntuple_qcd_200_300/batch/condor_30.sub deleted file mode 100644 index e348a2febf3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_300.sub b/test/ntuple_qcd_200_300/batch/condor_300.sub deleted file mode 100644 index 6c2df34325a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_300.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.300.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_300.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.300.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_301.sub b/test/ntuple_qcd_200_300/batch/condor_301.sub deleted file mode 100644 index c109ea4cb7b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_301.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.301.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_301.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.301.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_302.sub b/test/ntuple_qcd_200_300/batch/condor_302.sub deleted file mode 100644 index f232cd5ba2a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_302.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.302.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_302.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.302.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_303.sub b/test/ntuple_qcd_200_300/batch/condor_303.sub deleted file mode 100644 index a8eaa94e4a0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_303.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.303.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_303.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.303.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_304.sub b/test/ntuple_qcd_200_300/batch/condor_304.sub deleted file mode 100644 index 87287fa32ad..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_304.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.304.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_304.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.304.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_305.sub b/test/ntuple_qcd_200_300/batch/condor_305.sub deleted file mode 100644 index 8c1964d9866..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_305.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.305.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_305.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.305.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_306.sub b/test/ntuple_qcd_200_300/batch/condor_306.sub deleted file mode 100644 index 70a85ba0207..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_306.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.306.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_306.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.306.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_307.sub b/test/ntuple_qcd_200_300/batch/condor_307.sub deleted file mode 100644 index 94ec3bb6081..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_307.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.307.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_307.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.307.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_308.sub b/test/ntuple_qcd_200_300/batch/condor_308.sub deleted file mode 100644 index 42174830a4e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_308.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.308.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_308.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.308.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_309.sub b/test/ntuple_qcd_200_300/batch/condor_309.sub deleted file mode 100644 index 3be3f7f24bf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_309.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.309.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_309.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.309.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_31.sub b/test/ntuple_qcd_200_300/batch/condor_31.sub deleted file mode 100644 index b4ca95c275d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_310.sub b/test/ntuple_qcd_200_300/batch/condor_310.sub deleted file mode 100644 index a33964dd5a8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_310.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.310.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_310.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.310.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_311.sub b/test/ntuple_qcd_200_300/batch/condor_311.sub deleted file mode 100644 index f2ba841391b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_311.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.311.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_311.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.311.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_312.sub b/test/ntuple_qcd_200_300/batch/condor_312.sub deleted file mode 100644 index 09c88b886e6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_312.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.312.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_312.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.312.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_313.sub b/test/ntuple_qcd_200_300/batch/condor_313.sub deleted file mode 100644 index dd173881dc6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_313.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.313.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_313.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.313.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_314.sub b/test/ntuple_qcd_200_300/batch/condor_314.sub deleted file mode 100644 index 3fd2ca244d8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_314.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.314.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_314.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.314.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_315.sub b/test/ntuple_qcd_200_300/batch/condor_315.sub deleted file mode 100644 index 010de1115f3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_315.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.315.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_315.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.315.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_316.sub b/test/ntuple_qcd_200_300/batch/condor_316.sub deleted file mode 100644 index 34bba96bce9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_316.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.316.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_316.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.316.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_317.sub b/test/ntuple_qcd_200_300/batch/condor_317.sub deleted file mode 100644 index bb724119d36..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_317.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.317.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_317.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.317.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_318.sub b/test/ntuple_qcd_200_300/batch/condor_318.sub deleted file mode 100644 index 245abca9e34..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_318.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.318.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_318.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.318.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_319.sub b/test/ntuple_qcd_200_300/batch/condor_319.sub deleted file mode 100644 index 42a68d09a90..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_319.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.319.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_319.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.319.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_32.sub b/test/ntuple_qcd_200_300/batch/condor_32.sub deleted file mode 100644 index 98b0a12ef04..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_320.sub b/test/ntuple_qcd_200_300/batch/condor_320.sub deleted file mode 100644 index e3cab9c5d1c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_320.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.320.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_320.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.320.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_321.sub b/test/ntuple_qcd_200_300/batch/condor_321.sub deleted file mode 100644 index 9534fb3afd5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_321.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.321.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_321.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.321.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_322.sub b/test/ntuple_qcd_200_300/batch/condor_322.sub deleted file mode 100644 index 9eec480a6c0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_322.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.322.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_322.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.322.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_323.sub b/test/ntuple_qcd_200_300/batch/condor_323.sub deleted file mode 100644 index c0fd0ab6da9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_323.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.323.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_323.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.323.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_324.sub b/test/ntuple_qcd_200_300/batch/condor_324.sub deleted file mode 100644 index 047728696c8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_324.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.324.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_324.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.324.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_325.sub b/test/ntuple_qcd_200_300/batch/condor_325.sub deleted file mode 100644 index 93a48f16abf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_325.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.325.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_325.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.325.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_326.sub b/test/ntuple_qcd_200_300/batch/condor_326.sub deleted file mode 100644 index 6fbad7c28cc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_326.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.326.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_326.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.326.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_327.sub b/test/ntuple_qcd_200_300/batch/condor_327.sub deleted file mode 100644 index 20e5a41ad71..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_327.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.327.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_327.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.327.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_328.sub b/test/ntuple_qcd_200_300/batch/condor_328.sub deleted file mode 100644 index 5b30159bf62..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_328.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.328.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_328.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.328.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_329.sub b/test/ntuple_qcd_200_300/batch/condor_329.sub deleted file mode 100644 index b6a26de5f23..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_329.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.329.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_329.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.329.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_33.sub b/test/ntuple_qcd_200_300/batch/condor_33.sub deleted file mode 100644 index 5bdb7ed1d24..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_330.sub b/test/ntuple_qcd_200_300/batch/condor_330.sub deleted file mode 100644 index 94db89bc822..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_330.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.330.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_330.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.330.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_331.sub b/test/ntuple_qcd_200_300/batch/condor_331.sub deleted file mode 100644 index 4f80f7a9c59..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_331.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.331.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_331.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.331.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_332.sub b/test/ntuple_qcd_200_300/batch/condor_332.sub deleted file mode 100644 index 21d24405b72..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_332.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.332.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_332.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.332.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_333.sub b/test/ntuple_qcd_200_300/batch/condor_333.sub deleted file mode 100644 index 4e32906965f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_333.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.333.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_333.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.333.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_334.sub b/test/ntuple_qcd_200_300/batch/condor_334.sub deleted file mode 100644 index 022cf66ed31..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_334.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.334.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_334.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.334.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_335.sub b/test/ntuple_qcd_200_300/batch/condor_335.sub deleted file mode 100644 index c9a8556dfd9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_335.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.335.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_335.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.335.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_336.sub b/test/ntuple_qcd_200_300/batch/condor_336.sub deleted file mode 100644 index 702d57ea04e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_336.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.336.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_336.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.336.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_337.sub b/test/ntuple_qcd_200_300/batch/condor_337.sub deleted file mode 100644 index da9a168104d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_337.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.337.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_337.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.337.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_338.sub b/test/ntuple_qcd_200_300/batch/condor_338.sub deleted file mode 100644 index c9ccc701cbc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_338.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.338.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_338.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.338.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_339.sub b/test/ntuple_qcd_200_300/batch/condor_339.sub deleted file mode 100644 index 123d0f6d178..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_339.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.339.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_339.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.339.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_34.sub b/test/ntuple_qcd_200_300/batch/condor_34.sub deleted file mode 100644 index 2466ec3193a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_340.sub b/test/ntuple_qcd_200_300/batch/condor_340.sub deleted file mode 100644 index 0a29d8c4a2c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_340.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.340.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_340.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.340.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_341.sub b/test/ntuple_qcd_200_300/batch/condor_341.sub deleted file mode 100644 index d798846d185..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_341.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.341.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_341.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.341.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_342.sub b/test/ntuple_qcd_200_300/batch/condor_342.sub deleted file mode 100644 index 261aad2f329..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_342.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.342.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_342.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.342.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_343.sub b/test/ntuple_qcd_200_300/batch/condor_343.sub deleted file mode 100644 index b3170e41b62..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_343.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.343.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_343.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.343.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_344.sub b/test/ntuple_qcd_200_300/batch/condor_344.sub deleted file mode 100644 index 97842e9146a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_344.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.344.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_344.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.344.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_345.sub b/test/ntuple_qcd_200_300/batch/condor_345.sub deleted file mode 100644 index baff86369eb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_345.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.345.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_345.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.345.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_346.sub b/test/ntuple_qcd_200_300/batch/condor_346.sub deleted file mode 100644 index f0268480dbf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_346.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.346.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_346.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.346.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_347.sub b/test/ntuple_qcd_200_300/batch/condor_347.sub deleted file mode 100644 index 03658728709..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_347.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.347.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_347.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.347.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_348.sub b/test/ntuple_qcd_200_300/batch/condor_348.sub deleted file mode 100644 index 7a98beb0a44..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_348.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.348.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_348.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.348.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_349.sub b/test/ntuple_qcd_200_300/batch/condor_349.sub deleted file mode 100644 index 8cc806833ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_349.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.349.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_349.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.349.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_35.sub b/test/ntuple_qcd_200_300/batch/condor_35.sub deleted file mode 100644 index 727e4769300..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_350.sub b/test/ntuple_qcd_200_300/batch/condor_350.sub deleted file mode 100644 index 522107990b8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_350.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.350.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_350.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.350.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_351.sub b/test/ntuple_qcd_200_300/batch/condor_351.sub deleted file mode 100644 index 8c8ea7d5c73..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_351.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.351.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_351.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.351.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_352.sub b/test/ntuple_qcd_200_300/batch/condor_352.sub deleted file mode 100644 index fcf29c6d265..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_352.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.352.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_352.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.352.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_353.sub b/test/ntuple_qcd_200_300/batch/condor_353.sub deleted file mode 100644 index c0b12382bf4..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_353.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.353.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_353.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.353.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_354.sub b/test/ntuple_qcd_200_300/batch/condor_354.sub deleted file mode 100644 index 501dcd90509..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_354.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.354.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_354.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.354.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_355.sub b/test/ntuple_qcd_200_300/batch/condor_355.sub deleted file mode 100644 index d78a668e0b7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_355.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.355.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_355.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.355.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_356.sub b/test/ntuple_qcd_200_300/batch/condor_356.sub deleted file mode 100644 index 1f6624e1a04..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_356.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.356.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_356.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.356.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_357.sub b/test/ntuple_qcd_200_300/batch/condor_357.sub deleted file mode 100644 index 6c7cbdf6d59..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_357.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.357.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_357.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.357.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_358.sub b/test/ntuple_qcd_200_300/batch/condor_358.sub deleted file mode 100644 index 429a21b3310..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_358.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.358.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_358.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.358.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_359.sub b/test/ntuple_qcd_200_300/batch/condor_359.sub deleted file mode 100644 index 36033b1202c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_359.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.359.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_359.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.359.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_36.sub b/test/ntuple_qcd_200_300/batch/condor_36.sub deleted file mode 100644 index ae65c08bad5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_360.sub b/test/ntuple_qcd_200_300/batch/condor_360.sub deleted file mode 100644 index 3d4d0f0be41..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_360.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.360.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_360.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.360.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_361.sub b/test/ntuple_qcd_200_300/batch/condor_361.sub deleted file mode 100644 index 57a71f4ea2e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_361.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.361.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_361.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.361.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_362.sub b/test/ntuple_qcd_200_300/batch/condor_362.sub deleted file mode 100644 index 126d39cccb5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_362.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.362.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_362.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.362.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_363.sub b/test/ntuple_qcd_200_300/batch/condor_363.sub deleted file mode 100644 index 828e17c4992..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_363.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.363.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_363.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.363.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_364.sub b/test/ntuple_qcd_200_300/batch/condor_364.sub deleted file mode 100644 index a10a8b1462c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_364.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.364.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_364.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.364.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_365.sub b/test/ntuple_qcd_200_300/batch/condor_365.sub deleted file mode 100644 index cb94e28729f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_365.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.365.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_365.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.365.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_366.sub b/test/ntuple_qcd_200_300/batch/condor_366.sub deleted file mode 100644 index 7840b191f5b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_366.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.366.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_366.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.366.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_367.sub b/test/ntuple_qcd_200_300/batch/condor_367.sub deleted file mode 100644 index f5828ed715f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_367.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.367.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_367.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.367.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_368.sub b/test/ntuple_qcd_200_300/batch/condor_368.sub deleted file mode 100644 index f06e0fd3eec..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_368.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.368.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_368.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.368.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_369.sub b/test/ntuple_qcd_200_300/batch/condor_369.sub deleted file mode 100644 index 29b874832d8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_369.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.369.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_369.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.369.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_37.sub b/test/ntuple_qcd_200_300/batch/condor_37.sub deleted file mode 100644 index 6e90f72f9b9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_370.sub b/test/ntuple_qcd_200_300/batch/condor_370.sub deleted file mode 100644 index 99384e6181a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_370.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.370.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_370.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.370.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_371.sub b/test/ntuple_qcd_200_300/batch/condor_371.sub deleted file mode 100644 index 3c8aea6f8f3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_371.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.371.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_371.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.371.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_372.sub b/test/ntuple_qcd_200_300/batch/condor_372.sub deleted file mode 100644 index 439d55ce684..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_372.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.372.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_372.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.372.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_373.sub b/test/ntuple_qcd_200_300/batch/condor_373.sub deleted file mode 100644 index 7f87fa2e9bd..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_373.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.373.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_373.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.373.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_374.sub b/test/ntuple_qcd_200_300/batch/condor_374.sub deleted file mode 100644 index 6c98ce1c4b6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_374.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.374.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_374.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.374.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_375.sub b/test/ntuple_qcd_200_300/batch/condor_375.sub deleted file mode 100644 index 8a3fab11918..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_375.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.375.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_375.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.375.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_376.sub b/test/ntuple_qcd_200_300/batch/condor_376.sub deleted file mode 100644 index ad4e5ddecea..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_376.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.376.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_376.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.376.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_377.sub b/test/ntuple_qcd_200_300/batch/condor_377.sub deleted file mode 100644 index 81f8c16c383..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_377.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.377.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_377.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.377.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_378.sub b/test/ntuple_qcd_200_300/batch/condor_378.sub deleted file mode 100644 index 11724f1ba0a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_378.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.378.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_378.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.378.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_379.sub b/test/ntuple_qcd_200_300/batch/condor_379.sub deleted file mode 100644 index 6c8baf74b0b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_379.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.379.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_379.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.379.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_38.sub b/test/ntuple_qcd_200_300/batch/condor_38.sub deleted file mode 100644 index 07c265f72a2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_380.sub b/test/ntuple_qcd_200_300/batch/condor_380.sub deleted file mode 100644 index f4222e63b03..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_380.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.380.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_380.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.380.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_381.sub b/test/ntuple_qcd_200_300/batch/condor_381.sub deleted file mode 100644 index 4966eab0e84..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_381.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.381.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_381.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.381.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_382.sub b/test/ntuple_qcd_200_300/batch/condor_382.sub deleted file mode 100644 index b074277e140..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_382.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.382.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_382.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.382.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_383.sub b/test/ntuple_qcd_200_300/batch/condor_383.sub deleted file mode 100644 index 693206dc60f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_383.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.383.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_383.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.383.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_384.sub b/test/ntuple_qcd_200_300/batch/condor_384.sub deleted file mode 100644 index b43e54afec5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_384.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.384.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_384.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.384.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_385.sub b/test/ntuple_qcd_200_300/batch/condor_385.sub deleted file mode 100644 index 0cb295aced8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_385.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.385.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_385.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.385.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_386.sub b/test/ntuple_qcd_200_300/batch/condor_386.sub deleted file mode 100644 index 25bbc090060..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_386.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.386.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_386.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.386.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_387.sub b/test/ntuple_qcd_200_300/batch/condor_387.sub deleted file mode 100644 index 94df23b19b0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_387.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.387.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_387.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.387.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_388.sub b/test/ntuple_qcd_200_300/batch/condor_388.sub deleted file mode 100644 index d65fec41348..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_388.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.388.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_388.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.388.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_389.sub b/test/ntuple_qcd_200_300/batch/condor_389.sub deleted file mode 100644 index 1f80f8aa24c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_389.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.389.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_389.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.389.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_39.sub b/test/ntuple_qcd_200_300/batch/condor_39.sub deleted file mode 100644 index d7d07c658c1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_390.sub b/test/ntuple_qcd_200_300/batch/condor_390.sub deleted file mode 100644 index 139acaf5a46..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_390.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.390.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_390.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.390.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_391.sub b/test/ntuple_qcd_200_300/batch/condor_391.sub deleted file mode 100644 index 19703db08bd..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_391.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.391.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_391.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.391.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_392.sub b/test/ntuple_qcd_200_300/batch/condor_392.sub deleted file mode 100644 index bb711a3d228..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_392.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.392.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_392.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.392.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_393.sub b/test/ntuple_qcd_200_300/batch/condor_393.sub deleted file mode 100644 index 2a10b04e60c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_393.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.393.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_393.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.393.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_394.sub b/test/ntuple_qcd_200_300/batch/condor_394.sub deleted file mode 100644 index 24654b644c9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_394.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.394.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_394.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.394.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_395.sub b/test/ntuple_qcd_200_300/batch/condor_395.sub deleted file mode 100644 index 1d910406a02..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_395.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.395.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_395.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.395.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_396.sub b/test/ntuple_qcd_200_300/batch/condor_396.sub deleted file mode 100644 index 838725d7d97..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_396.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.396.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_396.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.396.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_397.sub b/test/ntuple_qcd_200_300/batch/condor_397.sub deleted file mode 100644 index 1ede5d46b83..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_397.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.397.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_397.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.397.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_398.sub b/test/ntuple_qcd_200_300/batch/condor_398.sub deleted file mode 100644 index b372926bcb7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_398.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.398.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_398.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.398.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_399.sub b/test/ntuple_qcd_200_300/batch/condor_399.sub deleted file mode 100644 index 066c9661a36..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_399.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.399.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_399.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.399.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_4.sub b/test/ntuple_qcd_200_300/batch/condor_4.sub deleted file mode 100644 index c8d78323988..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_40.sub b/test/ntuple_qcd_200_300/batch/condor_40.sub deleted file mode 100644 index f61563bba68..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_400.sub b/test/ntuple_qcd_200_300/batch/condor_400.sub deleted file mode 100644 index b655f0ddb73..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_400.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.400.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_400.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.400.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_401.sub b/test/ntuple_qcd_200_300/batch/condor_401.sub deleted file mode 100644 index 663bd468b72..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_401.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.401.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_401.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.401.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_402.sub b/test/ntuple_qcd_200_300/batch/condor_402.sub deleted file mode 100644 index dcfe3d2b07f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_402.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.402.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_402.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.402.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_403.sub b/test/ntuple_qcd_200_300/batch/condor_403.sub deleted file mode 100644 index e19abd57099..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_403.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.403.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_403.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.403.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_404.sub b/test/ntuple_qcd_200_300/batch/condor_404.sub deleted file mode 100644 index bd3f1e490c2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_404.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.404.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_404.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.404.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_405.sub b/test/ntuple_qcd_200_300/batch/condor_405.sub deleted file mode 100644 index f43db1612ed..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_405.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.405.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_405.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.405.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_406.sub b/test/ntuple_qcd_200_300/batch/condor_406.sub deleted file mode 100644 index 39c93e14362..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_406.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.406.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_406.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.406.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_407.sub b/test/ntuple_qcd_200_300/batch/condor_407.sub deleted file mode 100644 index e7478d2370f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_407.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.407.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_407.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.407.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_408.sub b/test/ntuple_qcd_200_300/batch/condor_408.sub deleted file mode 100644 index 081fa807939..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_408.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.408.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_408.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.408.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_409.sub b/test/ntuple_qcd_200_300/batch/condor_409.sub deleted file mode 100644 index 26f61887a45..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_409.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.409.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_409.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.409.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_41.sub b/test/ntuple_qcd_200_300/batch/condor_41.sub deleted file mode 100644 index 5ef4d0e25d7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_410.sub b/test/ntuple_qcd_200_300/batch/condor_410.sub deleted file mode 100644 index aac427b82bf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_410.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.410.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_410.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.410.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_411.sub b/test/ntuple_qcd_200_300/batch/condor_411.sub deleted file mode 100644 index 5163535dbe6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_411.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.411.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_411.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.411.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_412.sub b/test/ntuple_qcd_200_300/batch/condor_412.sub deleted file mode 100644 index 37d5a61e1a0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_412.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.412.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_412.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.412.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_413.sub b/test/ntuple_qcd_200_300/batch/condor_413.sub deleted file mode 100644 index a80a387938e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_413.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.413.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_413.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.413.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_414.sub b/test/ntuple_qcd_200_300/batch/condor_414.sub deleted file mode 100644 index 0d1a873d5f1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_414.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.414.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_414.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.414.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_415.sub b/test/ntuple_qcd_200_300/batch/condor_415.sub deleted file mode 100644 index 543098cb858..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_415.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.415.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_415.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.415.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_416.sub b/test/ntuple_qcd_200_300/batch/condor_416.sub deleted file mode 100644 index 2221082dc90..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_416.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.416.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_416.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.416.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_417.sub b/test/ntuple_qcd_200_300/batch/condor_417.sub deleted file mode 100644 index 1d3ccf21240..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_417.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.417.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_417.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.417.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_418.sub b/test/ntuple_qcd_200_300/batch/condor_418.sub deleted file mode 100644 index e476d0801ae..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_418.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.418.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_418.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.418.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_419.sub b/test/ntuple_qcd_200_300/batch/condor_419.sub deleted file mode 100644 index 03743d8c287..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_419.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.419.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_419.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.419.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_42.sub b/test/ntuple_qcd_200_300/batch/condor_42.sub deleted file mode 100644 index 610bddce704..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_420.sub b/test/ntuple_qcd_200_300/batch/condor_420.sub deleted file mode 100644 index 920a75d02ee..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_420.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.420.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_420.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.420.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_421.sub b/test/ntuple_qcd_200_300/batch/condor_421.sub deleted file mode 100644 index c38f43347e7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_421.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.421.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_421.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.421.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_422.sub b/test/ntuple_qcd_200_300/batch/condor_422.sub deleted file mode 100644 index 0b6cdb74a3b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_422.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.422.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_422.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.422.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_423.sub b/test/ntuple_qcd_200_300/batch/condor_423.sub deleted file mode 100644 index fe252725dce..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_423.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.423.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_423.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.423.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_424.sub b/test/ntuple_qcd_200_300/batch/condor_424.sub deleted file mode 100644 index 2017577e5bd..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_424.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.424.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_424.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.424.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_425.sub b/test/ntuple_qcd_200_300/batch/condor_425.sub deleted file mode 100644 index 3f2f152b5aa..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_425.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.425.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_425.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.425.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_426.sub b/test/ntuple_qcd_200_300/batch/condor_426.sub deleted file mode 100644 index 0416e67e3b9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_426.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.426.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_426.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.426.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_427.sub b/test/ntuple_qcd_200_300/batch/condor_427.sub deleted file mode 100644 index 7f11af16662..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_427.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.427.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_427.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.427.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_428.sub b/test/ntuple_qcd_200_300/batch/condor_428.sub deleted file mode 100644 index 6a6a1125615..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_428.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.428.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_428.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.428.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_429.sub b/test/ntuple_qcd_200_300/batch/condor_429.sub deleted file mode 100644 index 0774cd07aee..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_429.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.429.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_429.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.429.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_43.sub b/test/ntuple_qcd_200_300/batch/condor_43.sub deleted file mode 100644 index f5382ee8621..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_430.sub b/test/ntuple_qcd_200_300/batch/condor_430.sub deleted file mode 100644 index 958ffaf39c9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_430.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.430.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_430.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.430.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_431.sub b/test/ntuple_qcd_200_300/batch/condor_431.sub deleted file mode 100644 index 2c2049fa466..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_431.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.431.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_431.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.431.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_432.sub b/test/ntuple_qcd_200_300/batch/condor_432.sub deleted file mode 100644 index ffb8a3cfd9f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_432.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.432.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_432.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.432.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_433.sub b/test/ntuple_qcd_200_300/batch/condor_433.sub deleted file mode 100644 index 30113f5cc68..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_433.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.433.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_433.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.433.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_434.sub b/test/ntuple_qcd_200_300/batch/condor_434.sub deleted file mode 100644 index 64528c7a115..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_434.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.434.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_434.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.434.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_435.sub b/test/ntuple_qcd_200_300/batch/condor_435.sub deleted file mode 100644 index 185a7ccaf4e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_435.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.435.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_435.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.435.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_436.sub b/test/ntuple_qcd_200_300/batch/condor_436.sub deleted file mode 100644 index 3fdc8685430..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_436.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.436.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_436.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.436.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_437.sub b/test/ntuple_qcd_200_300/batch/condor_437.sub deleted file mode 100644 index 0f14c36ca11..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_437.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.437.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_437.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.437.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_438.sub b/test/ntuple_qcd_200_300/batch/condor_438.sub deleted file mode 100644 index d59463fb479..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_438.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.438.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_438.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.438.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_439.sub b/test/ntuple_qcd_200_300/batch/condor_439.sub deleted file mode 100644 index f305eabe234..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_439.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.439.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_439.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.439.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_44.sub b/test/ntuple_qcd_200_300/batch/condor_44.sub deleted file mode 100644 index 8ae3448e719..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_440.sub b/test/ntuple_qcd_200_300/batch/condor_440.sub deleted file mode 100644 index 46b1af71fd5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_440.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.440.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_440.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.440.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_441.sub b/test/ntuple_qcd_200_300/batch/condor_441.sub deleted file mode 100644 index 24d52c98147..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_441.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.441.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_441.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.441.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_442.sub b/test/ntuple_qcd_200_300/batch/condor_442.sub deleted file mode 100644 index ceeb1162a30..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_442.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.442.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_442.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.442.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_443.sub b/test/ntuple_qcd_200_300/batch/condor_443.sub deleted file mode 100644 index 42a013b683c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_443.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.443.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_443.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.443.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_444.sub b/test/ntuple_qcd_200_300/batch/condor_444.sub deleted file mode 100644 index 13c15e6f0dc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_444.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.444.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_444.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.444.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_445.sub b/test/ntuple_qcd_200_300/batch/condor_445.sub deleted file mode 100644 index 98c66d30ed2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_445.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.445.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_445.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.445.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_446.sub b/test/ntuple_qcd_200_300/batch/condor_446.sub deleted file mode 100644 index 675b1295c30..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_446.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.446.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_446.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.446.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_447.sub b/test/ntuple_qcd_200_300/batch/condor_447.sub deleted file mode 100644 index 9a8dda648a2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_447.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.447.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_447.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.447.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_448.sub b/test/ntuple_qcd_200_300/batch/condor_448.sub deleted file mode 100644 index 4f9eb0b8135..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_448.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.448.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_448.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.448.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_449.sub b/test/ntuple_qcd_200_300/batch/condor_449.sub deleted file mode 100644 index e52c83817f7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_449.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.449.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_449.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.449.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_45.sub b/test/ntuple_qcd_200_300/batch/condor_45.sub deleted file mode 100644 index 24878933c64..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_450.sub b/test/ntuple_qcd_200_300/batch/condor_450.sub deleted file mode 100644 index f8ce346f406..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_450.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.450.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_450.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.450.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_451.sub b/test/ntuple_qcd_200_300/batch/condor_451.sub deleted file mode 100644 index edf64913dfa..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_451.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.451.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_451.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.451.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_452.sub b/test/ntuple_qcd_200_300/batch/condor_452.sub deleted file mode 100644 index ffaa0fee8a6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_452.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.452.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_452.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.452.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_453.sub b/test/ntuple_qcd_200_300/batch/condor_453.sub deleted file mode 100644 index df81ffebf55..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_453.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.453.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_453.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.453.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_454.sub b/test/ntuple_qcd_200_300/batch/condor_454.sub deleted file mode 100644 index c4d7fb93510..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_454.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.454.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_454.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.454.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_455.sub b/test/ntuple_qcd_200_300/batch/condor_455.sub deleted file mode 100644 index 3f036da0345..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_455.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.455.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_455.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.455.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_456.sub b/test/ntuple_qcd_200_300/batch/condor_456.sub deleted file mode 100644 index 26a8f70d79f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_456.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.456.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_456.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.456.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_457.sub b/test/ntuple_qcd_200_300/batch/condor_457.sub deleted file mode 100644 index 1e99f215ef5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_457.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.457.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_457.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.457.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_458.sub b/test/ntuple_qcd_200_300/batch/condor_458.sub deleted file mode 100644 index 5ce84a94396..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_458.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.458.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_458.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.458.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_459.sub b/test/ntuple_qcd_200_300/batch/condor_459.sub deleted file mode 100644 index acfa9e20086..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_459.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.459.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_459.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.459.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_46.sub b/test/ntuple_qcd_200_300/batch/condor_46.sub deleted file mode 100644 index 102ccf4a694..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_460.sub b/test/ntuple_qcd_200_300/batch/condor_460.sub deleted file mode 100644 index 87ea187c081..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_460.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.460.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_460.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.460.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_461.sub b/test/ntuple_qcd_200_300/batch/condor_461.sub deleted file mode 100644 index c6668510a46..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_461.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.461.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_461.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.461.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_462.sub b/test/ntuple_qcd_200_300/batch/condor_462.sub deleted file mode 100644 index e19b3bede18..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_462.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.462.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_462.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.462.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_463.sub b/test/ntuple_qcd_200_300/batch/condor_463.sub deleted file mode 100644 index 2b1f8a9a3d7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_463.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.463.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_463.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.463.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_464.sub b/test/ntuple_qcd_200_300/batch/condor_464.sub deleted file mode 100644 index d783afad840..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_464.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.464.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_464.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.464.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_465.sub b/test/ntuple_qcd_200_300/batch/condor_465.sub deleted file mode 100644 index 5cffccbc9db..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_465.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.465.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_465.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.465.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_466.sub b/test/ntuple_qcd_200_300/batch/condor_466.sub deleted file mode 100644 index 17eaa0c528f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_466.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.466.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_466.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.466.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_467.sub b/test/ntuple_qcd_200_300/batch/condor_467.sub deleted file mode 100644 index 22f30afff96..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_467.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.467.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_467.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.467.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_468.sub b/test/ntuple_qcd_200_300/batch/condor_468.sub deleted file mode 100644 index 361209f1dc2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_468.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.468.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_468.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.468.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_469.sub b/test/ntuple_qcd_200_300/batch/condor_469.sub deleted file mode 100644 index db1235c72ce..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_469.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.469.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_469.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.469.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_47.sub b/test/ntuple_qcd_200_300/batch/condor_47.sub deleted file mode 100644 index 7bbce0b19bf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_470.sub b/test/ntuple_qcd_200_300/batch/condor_470.sub deleted file mode 100644 index faf9743ec74..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_470.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.470.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_470.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.470.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_471.sub b/test/ntuple_qcd_200_300/batch/condor_471.sub deleted file mode 100644 index 342d79cd229..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_471.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.471.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_471.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.471.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_472.sub b/test/ntuple_qcd_200_300/batch/condor_472.sub deleted file mode 100644 index c4b6ad0d1f9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_472.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.472.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_472.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.472.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_473.sub b/test/ntuple_qcd_200_300/batch/condor_473.sub deleted file mode 100644 index 16151cfc2df..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_473.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.473.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_473.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.473.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_474.sub b/test/ntuple_qcd_200_300/batch/condor_474.sub deleted file mode 100644 index 97b25786cac..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_474.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.474.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_474.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.474.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_475.sub b/test/ntuple_qcd_200_300/batch/condor_475.sub deleted file mode 100644 index 68540aa38f2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_475.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.475.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_475.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.475.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_476.sub b/test/ntuple_qcd_200_300/batch/condor_476.sub deleted file mode 100644 index 19067d9a705..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_476.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.476.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_476.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.476.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_477.sub b/test/ntuple_qcd_200_300/batch/condor_477.sub deleted file mode 100644 index 9db9c269659..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_477.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.477.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_477.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.477.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_478.sub b/test/ntuple_qcd_200_300/batch/condor_478.sub deleted file mode 100644 index c9a8b5f745b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_478.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.478.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_478.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.478.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_479.sub b/test/ntuple_qcd_200_300/batch/condor_479.sub deleted file mode 100644 index b88f54fd7cf..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_479.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.479.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_479.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.479.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_48.sub b/test/ntuple_qcd_200_300/batch/condor_48.sub deleted file mode 100644 index c6f208c9780..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_480.sub b/test/ntuple_qcd_200_300/batch/condor_480.sub deleted file mode 100644 index afb05f8d912..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_480.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.480.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_480.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.480.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_481.sub b/test/ntuple_qcd_200_300/batch/condor_481.sub deleted file mode 100644 index 32c31424467..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_481.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.481.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_481.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.481.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_482.sub b/test/ntuple_qcd_200_300/batch/condor_482.sub deleted file mode 100644 index 269bd3a027f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_482.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.482.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_482.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.482.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_483.sub b/test/ntuple_qcd_200_300/batch/condor_483.sub deleted file mode 100644 index 0f726a9cafd..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_483.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.483.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_483.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.483.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_484.sub b/test/ntuple_qcd_200_300/batch/condor_484.sub deleted file mode 100644 index aa5e3bc08f6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_484.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.484.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_484.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.484.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_485.sub b/test/ntuple_qcd_200_300/batch/condor_485.sub deleted file mode 100644 index f9a9090143a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_485.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.485.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_485.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.485.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_486.sub b/test/ntuple_qcd_200_300/batch/condor_486.sub deleted file mode 100644 index 195ce11ff5c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_486.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.486.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_486.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.486.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_487.sub b/test/ntuple_qcd_200_300/batch/condor_487.sub deleted file mode 100644 index 41fcb2ad527..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_487.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.487.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_487.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.487.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_488.sub b/test/ntuple_qcd_200_300/batch/condor_488.sub deleted file mode 100644 index 2f72f3a48f6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_488.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.488.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_488.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.488.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_489.sub b/test/ntuple_qcd_200_300/batch/condor_489.sub deleted file mode 100644 index 72bafa97578..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_489.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.489.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_489.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.489.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_49.sub b/test/ntuple_qcd_200_300/batch/condor_49.sub deleted file mode 100644 index ce22e3cf23c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_490.sub b/test/ntuple_qcd_200_300/batch/condor_490.sub deleted file mode 100644 index ea9583ab4b8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_490.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.490.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_490.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.490.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_491.sub b/test/ntuple_qcd_200_300/batch/condor_491.sub deleted file mode 100644 index 01420de5aa3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_491.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.491.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_491.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.491.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_492.sub b/test/ntuple_qcd_200_300/batch/condor_492.sub deleted file mode 100644 index 8118b7c46e6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_492.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.492.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_492.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.492.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_493.sub b/test/ntuple_qcd_200_300/batch/condor_493.sub deleted file mode 100644 index 491d0b850e2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_493.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.493.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_493.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.493.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_494.sub b/test/ntuple_qcd_200_300/batch/condor_494.sub deleted file mode 100644 index 58d88cb16f9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_494.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.494.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_494.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.494.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_495.sub b/test/ntuple_qcd_200_300/batch/condor_495.sub deleted file mode 100644 index 24735b7f08c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_495.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.495.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_495.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.495.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_496.sub b/test/ntuple_qcd_200_300/batch/condor_496.sub deleted file mode 100644 index 0e7ac0ad2f8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_496.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.496.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_496.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.496.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_497.sub b/test/ntuple_qcd_200_300/batch/condor_497.sub deleted file mode 100644 index c39642f6e89..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_497.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.497.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_497.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.497.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_498.sub b/test/ntuple_qcd_200_300/batch/condor_498.sub deleted file mode 100644 index 3d5d52d9a3d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_498.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.498.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_498.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.498.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_499.sub b/test/ntuple_qcd_200_300/batch/condor_499.sub deleted file mode 100644 index 8efcdaeb0f3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_499.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.499.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_499.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.499.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_5.sub b/test/ntuple_qcd_200_300/batch/condor_5.sub deleted file mode 100644 index 2fa7c7e010f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_50.sub b/test/ntuple_qcd_200_300/batch/condor_50.sub deleted file mode 100644 index 66d302ee1f8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_51.sub b/test/ntuple_qcd_200_300/batch/condor_51.sub deleted file mode 100644 index 01786f83a32..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_52.sub b/test/ntuple_qcd_200_300/batch/condor_52.sub deleted file mode 100644 index 5d717030f04..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_53.sub b/test/ntuple_qcd_200_300/batch/condor_53.sub deleted file mode 100644 index 0a2d86d16a6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_54.sub b/test/ntuple_qcd_200_300/batch/condor_54.sub deleted file mode 100644 index 7aa77f26e7a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_55.sub b/test/ntuple_qcd_200_300/batch/condor_55.sub deleted file mode 100644 index 67ed77a6197..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_56.sub b/test/ntuple_qcd_200_300/batch/condor_56.sub deleted file mode 100644 index b1f0284eba0..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_57.sub b/test/ntuple_qcd_200_300/batch/condor_57.sub deleted file mode 100644 index bf1d27d306e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_58.sub b/test/ntuple_qcd_200_300/batch/condor_58.sub deleted file mode 100644 index 72bae0241ed..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_59.sub b/test/ntuple_qcd_200_300/batch/condor_59.sub deleted file mode 100644 index 009d81e5cfc..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_6.sub b/test/ntuple_qcd_200_300/batch/condor_6.sub deleted file mode 100644 index bdb80c164c3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_60.sub b/test/ntuple_qcd_200_300/batch/condor_60.sub deleted file mode 100644 index ee80efb851f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_61.sub b/test/ntuple_qcd_200_300/batch/condor_61.sub deleted file mode 100644 index ce76d73342a..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_62.sub b/test/ntuple_qcd_200_300/batch/condor_62.sub deleted file mode 100644 index 59ecedd3610..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_63.sub b/test/ntuple_qcd_200_300/batch/condor_63.sub deleted file mode 100644 index 96e6b5bcc2b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_64.sub b/test/ntuple_qcd_200_300/batch/condor_64.sub deleted file mode 100644 index d833c9d07c3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_65.sub b/test/ntuple_qcd_200_300/batch/condor_65.sub deleted file mode 100644 index b4d52096e29..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_66.sub b/test/ntuple_qcd_200_300/batch/condor_66.sub deleted file mode 100644 index 13a401aa831..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_67.sub b/test/ntuple_qcd_200_300/batch/condor_67.sub deleted file mode 100644 index 76876851ec5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_68.sub b/test/ntuple_qcd_200_300/batch/condor_68.sub deleted file mode 100644 index 76c7055c63e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_69.sub b/test/ntuple_qcd_200_300/batch/condor_69.sub deleted file mode 100644 index e7745df8bba..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_7.sub b/test/ntuple_qcd_200_300/batch/condor_7.sub deleted file mode 100644 index be0fabcb360..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_70.sub b/test/ntuple_qcd_200_300/batch/condor_70.sub deleted file mode 100644 index 9417974999b..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_71.sub b/test/ntuple_qcd_200_300/batch/condor_71.sub deleted file mode 100644 index 5114a54bf6d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_72.sub b/test/ntuple_qcd_200_300/batch/condor_72.sub deleted file mode 100644 index b670c29e9c1..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_73.sub b/test/ntuple_qcd_200_300/batch/condor_73.sub deleted file mode 100644 index 03f608c3368..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_74.sub b/test/ntuple_qcd_200_300/batch/condor_74.sub deleted file mode 100644 index ccf131ff0b8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_75.sub b/test/ntuple_qcd_200_300/batch/condor_75.sub deleted file mode 100644 index 04067d9d821..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_76.sub b/test/ntuple_qcd_200_300/batch/condor_76.sub deleted file mode 100644 index 9969cb95c94..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_77.sub b/test/ntuple_qcd_200_300/batch/condor_77.sub deleted file mode 100644 index 5a93ee41269..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_78.sub b/test/ntuple_qcd_200_300/batch/condor_78.sub deleted file mode 100644 index a629b353119..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_79.sub b/test/ntuple_qcd_200_300/batch/condor_79.sub deleted file mode 100644 index e6780b43ecb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_8.sub b/test/ntuple_qcd_200_300/batch/condor_8.sub deleted file mode 100644 index 5045fa42dff..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_80.sub b/test/ntuple_qcd_200_300/batch/condor_80.sub deleted file mode 100644 index 5ea90cb7ec2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_81.sub b/test/ntuple_qcd_200_300/batch/condor_81.sub deleted file mode 100644 index 88828a98a50..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_82.sub b/test/ntuple_qcd_200_300/batch/condor_82.sub deleted file mode 100644 index adb30bca58f..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_83.sub b/test/ntuple_qcd_200_300/batch/condor_83.sub deleted file mode 100644 index 1e4bc68bc0d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_84.sub b/test/ntuple_qcd_200_300/batch/condor_84.sub deleted file mode 100644 index b45c20dd86e..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_85.sub b/test/ntuple_qcd_200_300/batch/condor_85.sub deleted file mode 100644 index 36a25e351c2..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_86.sub b/test/ntuple_qcd_200_300/batch/condor_86.sub deleted file mode 100644 index 1a90b78e200..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_87.sub b/test/ntuple_qcd_200_300/batch/condor_87.sub deleted file mode 100644 index 0c4cc0cb2cd..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_88.sub b/test/ntuple_qcd_200_300/batch/condor_88.sub deleted file mode 100644 index 167a08a0ec9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_89.sub b/test/ntuple_qcd_200_300/batch/condor_89.sub deleted file mode 100644 index 2877b8234a9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_9.sub b/test/ntuple_qcd_200_300/batch/condor_9.sub deleted file mode 100644 index 4e8b6c20cae..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_90.sub b/test/ntuple_qcd_200_300/batch/condor_90.sub deleted file mode 100644 index 7a79a9867c8..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_91.sub b/test/ntuple_qcd_200_300/batch/condor_91.sub deleted file mode 100644 index b72e4c1f88d..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_92.sub b/test/ntuple_qcd_200_300/batch/condor_92.sub deleted file mode 100644 index f49ab15cfa3..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_93.sub b/test/ntuple_qcd_200_300/batch/condor_93.sub deleted file mode 100644 index a8e5e5294bb..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_94.sub b/test/ntuple_qcd_200_300/batch/condor_94.sub deleted file mode 100644 index 083d2f5abe6..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_95.sub b/test/ntuple_qcd_200_300/batch/condor_95.sub deleted file mode 100644 index 1933c3a944c..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_96.sub b/test/ntuple_qcd_200_300/batch/condor_96.sub deleted file mode 100644 index d6211e242d5..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_97.sub b/test/ntuple_qcd_200_300/batch/condor_97.sub deleted file mode 100644 index 90616c99f31..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_98.sub b/test/ntuple_qcd_200_300/batch/condor_98.sub deleted file mode 100644 index 2a667ca41d7..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/condor_99.sub b/test/ntuple_qcd_200_300/batch/condor_99.sub deleted file mode 100644 index ca2420564c9..00000000000 --- a/test/ntuple_qcd_200_300/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/nJobs.500 b/test/ntuple_qcd_200_300/batch/nJobs.500 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_200_300/batch/sge_0.sh b/test/ntuple_qcd_200_300/batch/sge_0.sh deleted file mode 100755 index d933632217f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_1.sh b/test/ntuple_qcd_200_300/batch/sge_1.sh deleted file mode 100755 index 7b313511f91..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_10.sh b/test/ntuple_qcd_200_300/batch/sge_10.sh deleted file mode 100755 index d091a25bdf9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_100.sh b/test/ntuple_qcd_200_300/batch/sge_100.sh deleted file mode 100755 index 36754d0fb5d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_101.sh b/test/ntuple_qcd_200_300/batch/sge_101.sh deleted file mode 100755 index df282fe2b08..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_102.sh b/test/ntuple_qcd_200_300/batch/sge_102.sh deleted file mode 100755 index efa8e12d879..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_103.sh b/test/ntuple_qcd_200_300/batch/sge_103.sh deleted file mode 100755 index 52ca3696a76..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_104.sh b/test/ntuple_qcd_200_300/batch/sge_104.sh deleted file mode 100755 index 038bf4427ed..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_105.sh b/test/ntuple_qcd_200_300/batch/sge_105.sh deleted file mode 100755 index 7c98fbb06fb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_106.sh b/test/ntuple_qcd_200_300/batch/sge_106.sh deleted file mode 100755 index 96ed87da17d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_107.sh b/test/ntuple_qcd_200_300/batch/sge_107.sh deleted file mode 100755 index c381a7e828c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_108.sh b/test/ntuple_qcd_200_300/batch/sge_108.sh deleted file mode 100755 index e5e043bb042..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_109.sh b/test/ntuple_qcd_200_300/batch/sge_109.sh deleted file mode 100755 index 9fc77835d79..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_11.sh b/test/ntuple_qcd_200_300/batch/sge_11.sh deleted file mode 100755 index de2fec02aa2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_110.sh b/test/ntuple_qcd_200_300/batch/sge_110.sh deleted file mode 100755 index abb23184fe4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_111.sh b/test/ntuple_qcd_200_300/batch/sge_111.sh deleted file mode 100755 index 295292f5185..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_112.sh b/test/ntuple_qcd_200_300/batch/sge_112.sh deleted file mode 100755 index c3d9a196181..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_113.sh b/test/ntuple_qcd_200_300/batch/sge_113.sh deleted file mode 100755 index 0873507cef2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_114.sh b/test/ntuple_qcd_200_300/batch/sge_114.sh deleted file mode 100755 index 6576244e9a7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_115.sh b/test/ntuple_qcd_200_300/batch/sge_115.sh deleted file mode 100755 index e46815d1276..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_116.sh b/test/ntuple_qcd_200_300/batch/sge_116.sh deleted file mode 100755 index c7e3f7f9409..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_117.sh b/test/ntuple_qcd_200_300/batch/sge_117.sh deleted file mode 100755 index c4e26080893..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_118.sh b/test/ntuple_qcd_200_300/batch/sge_118.sh deleted file mode 100755 index a6ef0ae532f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_119.sh b/test/ntuple_qcd_200_300/batch/sge_119.sh deleted file mode 100755 index f5f5c9d68ed..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_12.sh b/test/ntuple_qcd_200_300/batch/sge_12.sh deleted file mode 100755 index a6cc5a210c8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_120.sh b/test/ntuple_qcd_200_300/batch/sge_120.sh deleted file mode 100755 index 95cbc6708b6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_121.sh b/test/ntuple_qcd_200_300/batch/sge_121.sh deleted file mode 100755 index 4dc4cbeaedc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_122.sh b/test/ntuple_qcd_200_300/batch/sge_122.sh deleted file mode 100755 index 864e5614df9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_123.sh b/test/ntuple_qcd_200_300/batch/sge_123.sh deleted file mode 100755 index 150b4b38470..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_124.sh b/test/ntuple_qcd_200_300/batch/sge_124.sh deleted file mode 100755 index c8c946f7c76..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_125.sh b/test/ntuple_qcd_200_300/batch/sge_125.sh deleted file mode 100755 index b5287a706d6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_126.sh b/test/ntuple_qcd_200_300/batch/sge_126.sh deleted file mode 100755 index 2532b5bff12..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_127.sh b/test/ntuple_qcd_200_300/batch/sge_127.sh deleted file mode 100755 index 28cda64d2d9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_128.sh b/test/ntuple_qcd_200_300/batch/sge_128.sh deleted file mode 100755 index 8a4ebb96a36..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_129.sh b/test/ntuple_qcd_200_300/batch/sge_129.sh deleted file mode 100755 index 2378440de6f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_13.sh b/test/ntuple_qcd_200_300/batch/sge_13.sh deleted file mode 100755 index 8e2463e77ae..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_130.sh b/test/ntuple_qcd_200_300/batch/sge_130.sh deleted file mode 100755 index 7f67b20572f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_131.sh b/test/ntuple_qcd_200_300/batch/sge_131.sh deleted file mode 100755 index 30310e94aa0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_132.sh b/test/ntuple_qcd_200_300/batch/sge_132.sh deleted file mode 100755 index 69223488bc0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_133.sh b/test/ntuple_qcd_200_300/batch/sge_133.sh deleted file mode 100755 index 5c7025ed718..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_134.sh b/test/ntuple_qcd_200_300/batch/sge_134.sh deleted file mode 100755 index 6b3c6ad2717..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_135.sh b/test/ntuple_qcd_200_300/batch/sge_135.sh deleted file mode 100755 index 46b2bdd1149..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_136.sh b/test/ntuple_qcd_200_300/batch/sge_136.sh deleted file mode 100755 index eccadef91a1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_137.sh b/test/ntuple_qcd_200_300/batch/sge_137.sh deleted file mode 100755 index b675649a332..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_138.sh b/test/ntuple_qcd_200_300/batch/sge_138.sh deleted file mode 100755 index 0ff1f79914f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_139.sh b/test/ntuple_qcd_200_300/batch/sge_139.sh deleted file mode 100755 index 7e8c9e5ceb0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_139.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=139 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_139.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_14.sh b/test/ntuple_qcd_200_300/batch/sge_14.sh deleted file mode 100755 index 93266e25375..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_140.sh b/test/ntuple_qcd_200_300/batch/sge_140.sh deleted file mode 100755 index f32444c0f87..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_140.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=140 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_140.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_141.sh b/test/ntuple_qcd_200_300/batch/sge_141.sh deleted file mode 100755 index 6e88bded488..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_141.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=141 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_141.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_142.sh b/test/ntuple_qcd_200_300/batch/sge_142.sh deleted file mode 100755 index 47dca2001dd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_142.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=142 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_142.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_143.sh b/test/ntuple_qcd_200_300/batch/sge_143.sh deleted file mode 100755 index 9aadaef6098..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_143.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=143 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_143.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_144.sh b/test/ntuple_qcd_200_300/batch/sge_144.sh deleted file mode 100755 index 0db2022fc7c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_144.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=144 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_144.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_145.sh b/test/ntuple_qcd_200_300/batch/sge_145.sh deleted file mode 100755 index eda8027fd25..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_145.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=145 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_145.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_146.sh b/test/ntuple_qcd_200_300/batch/sge_146.sh deleted file mode 100755 index c290fbcff00..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_146.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=146 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_146.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_147.sh b/test/ntuple_qcd_200_300/batch/sge_147.sh deleted file mode 100755 index c259b3916da..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_147.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=147 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_147.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_148.sh b/test/ntuple_qcd_200_300/batch/sge_148.sh deleted file mode 100755 index 4d92e27755f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_148.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=148 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_148.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_149.sh b/test/ntuple_qcd_200_300/batch/sge_149.sh deleted file mode 100755 index b8673af165e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_149.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=149 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_149.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_15.sh b/test/ntuple_qcd_200_300/batch/sge_15.sh deleted file mode 100755 index 1c405a2151b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_150.sh b/test/ntuple_qcd_200_300/batch/sge_150.sh deleted file mode 100755 index 3e60fed706c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_150.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=150 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_150.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_151.sh b/test/ntuple_qcd_200_300/batch/sge_151.sh deleted file mode 100755 index c57aed635e2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_151.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=151 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_151.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_152.sh b/test/ntuple_qcd_200_300/batch/sge_152.sh deleted file mode 100755 index ca099117854..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_152.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=152 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_152.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_153.sh b/test/ntuple_qcd_200_300/batch/sge_153.sh deleted file mode 100755 index cdec3b24aaa..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_153.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=153 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_153.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_154.sh b/test/ntuple_qcd_200_300/batch/sge_154.sh deleted file mode 100755 index dc5375cd629..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_154.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=154 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_154.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_155.sh b/test/ntuple_qcd_200_300/batch/sge_155.sh deleted file mode 100755 index f0b4fb35855..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_155.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=155 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_155.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_156.sh b/test/ntuple_qcd_200_300/batch/sge_156.sh deleted file mode 100755 index ca69bd26a26..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_156.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=156 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_156.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_157.sh b/test/ntuple_qcd_200_300/batch/sge_157.sh deleted file mode 100755 index 20c7e4b9e0c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_157.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=157 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_157.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_158.sh b/test/ntuple_qcd_200_300/batch/sge_158.sh deleted file mode 100755 index 98dce5bf493..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_158.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=158 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_158.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_159.sh b/test/ntuple_qcd_200_300/batch/sge_159.sh deleted file mode 100755 index 38f640101d9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_159.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=159 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_159.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_16.sh b/test/ntuple_qcd_200_300/batch/sge_16.sh deleted file mode 100755 index f53dd922e49..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_160.sh b/test/ntuple_qcd_200_300/batch/sge_160.sh deleted file mode 100755 index d6e32d3c234..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_160.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=160 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_160.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_161.sh b/test/ntuple_qcd_200_300/batch/sge_161.sh deleted file mode 100755 index e77abb0bbfe..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_161.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=161 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_161.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_162.sh b/test/ntuple_qcd_200_300/batch/sge_162.sh deleted file mode 100755 index 95cee478814..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_162.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=162 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_162.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_163.sh b/test/ntuple_qcd_200_300/batch/sge_163.sh deleted file mode 100755 index 992f834f33c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_163.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=163 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_163.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_164.sh b/test/ntuple_qcd_200_300/batch/sge_164.sh deleted file mode 100755 index b570f9b2dc8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_164.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=164 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_164.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_165.sh b/test/ntuple_qcd_200_300/batch/sge_165.sh deleted file mode 100755 index 4ab3a1f0019..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_165.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=165 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_165.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_166.sh b/test/ntuple_qcd_200_300/batch/sge_166.sh deleted file mode 100755 index bba93893c0e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_166.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=166 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_166.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_167.sh b/test/ntuple_qcd_200_300/batch/sge_167.sh deleted file mode 100755 index cc1bdbcaf5c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_167.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=167 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_167.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_168.sh b/test/ntuple_qcd_200_300/batch/sge_168.sh deleted file mode 100755 index 90e1ab50226..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_168.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=168 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_168.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_169.sh b/test/ntuple_qcd_200_300/batch/sge_169.sh deleted file mode 100755 index 17cd1c9ea28..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_169.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=169 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_169.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_17.sh b/test/ntuple_qcd_200_300/batch/sge_17.sh deleted file mode 100755 index b78e5adb3fd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_170.sh b/test/ntuple_qcd_200_300/batch/sge_170.sh deleted file mode 100755 index e9335e19bc9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_170.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=170 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_170.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_171.sh b/test/ntuple_qcd_200_300/batch/sge_171.sh deleted file mode 100755 index 4691203f037..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_171.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=171 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_171.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_172.sh b/test/ntuple_qcd_200_300/batch/sge_172.sh deleted file mode 100755 index 58cf58d89ac..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_172.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=172 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_172.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_173.sh b/test/ntuple_qcd_200_300/batch/sge_173.sh deleted file mode 100755 index cfc7e323f6a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_173.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=173 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_173.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_174.sh b/test/ntuple_qcd_200_300/batch/sge_174.sh deleted file mode 100755 index 9c36667c8db..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_174.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=174 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_174.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_175.sh b/test/ntuple_qcd_200_300/batch/sge_175.sh deleted file mode 100755 index 5928aeb4477..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_175.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=175 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_175.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_176.sh b/test/ntuple_qcd_200_300/batch/sge_176.sh deleted file mode 100755 index fa169b27737..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_176.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=176 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_176.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_177.sh b/test/ntuple_qcd_200_300/batch/sge_177.sh deleted file mode 100755 index 7dbaf3b7f22..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_177.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=177 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_177.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_178.sh b/test/ntuple_qcd_200_300/batch/sge_178.sh deleted file mode 100755 index 2b809f26946..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_178.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=178 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_178.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_179.sh b/test/ntuple_qcd_200_300/batch/sge_179.sh deleted file mode 100755 index f2c46a5a2fc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_179.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=179 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_179.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_18.sh b/test/ntuple_qcd_200_300/batch/sge_18.sh deleted file mode 100755 index 66abddacf67..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_180.sh b/test/ntuple_qcd_200_300/batch/sge_180.sh deleted file mode 100755 index 226c073a360..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_180.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=180 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_180.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_181.sh b/test/ntuple_qcd_200_300/batch/sge_181.sh deleted file mode 100755 index 878226e94e8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_181.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=181 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_181.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_182.sh b/test/ntuple_qcd_200_300/batch/sge_182.sh deleted file mode 100755 index 579b4ce09f6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_182.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=182 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_182.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_183.sh b/test/ntuple_qcd_200_300/batch/sge_183.sh deleted file mode 100755 index 59d70d2881d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_183.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=183 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_183.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_184.sh b/test/ntuple_qcd_200_300/batch/sge_184.sh deleted file mode 100755 index e1b00a2eaff..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_184.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=184 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_184.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_185.sh b/test/ntuple_qcd_200_300/batch/sge_185.sh deleted file mode 100755 index f31627e99e5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_185.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=185 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_185.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_186.sh b/test/ntuple_qcd_200_300/batch/sge_186.sh deleted file mode 100755 index 4689b864bef..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_186.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=186 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_186.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_187.sh b/test/ntuple_qcd_200_300/batch/sge_187.sh deleted file mode 100755 index 63948b489e7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_187.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=187 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_187.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_188.sh b/test/ntuple_qcd_200_300/batch/sge_188.sh deleted file mode 100755 index d71d493c633..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_188.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=188 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_188.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_189.sh b/test/ntuple_qcd_200_300/batch/sge_189.sh deleted file mode 100755 index 1912baf4a14..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_189.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=189 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_189.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_19.sh b/test/ntuple_qcd_200_300/batch/sge_19.sh deleted file mode 100755 index 814af0eab7c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_190.sh b/test/ntuple_qcd_200_300/batch/sge_190.sh deleted file mode 100755 index ea13f588e92..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_190.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=190 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_190.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_191.sh b/test/ntuple_qcd_200_300/batch/sge_191.sh deleted file mode 100755 index 7b64203419b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_191.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=191 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_191.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_192.sh b/test/ntuple_qcd_200_300/batch/sge_192.sh deleted file mode 100755 index e3c26a1b4e3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_192.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=192 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_192.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_193.sh b/test/ntuple_qcd_200_300/batch/sge_193.sh deleted file mode 100755 index 101bc66e386..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_193.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=193 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_193.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_194.sh b/test/ntuple_qcd_200_300/batch/sge_194.sh deleted file mode 100755 index e704ea2762e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_194.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=194 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_194.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_195.sh b/test/ntuple_qcd_200_300/batch/sge_195.sh deleted file mode 100755 index de2970c5fdd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_195.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=195 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_195.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_196.sh b/test/ntuple_qcd_200_300/batch/sge_196.sh deleted file mode 100755 index 30c8f58d52f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_196.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=196 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_196.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_197.sh b/test/ntuple_qcd_200_300/batch/sge_197.sh deleted file mode 100755 index bd032a9b1da..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_197.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=197 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_197.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_198.sh b/test/ntuple_qcd_200_300/batch/sge_198.sh deleted file mode 100755 index 59df56cbd26..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_198.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=198 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_198.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_199.sh b/test/ntuple_qcd_200_300/batch/sge_199.sh deleted file mode 100755 index 250d4ac80c1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_199.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=199 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_199.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_2.sh b/test/ntuple_qcd_200_300/batch/sge_2.sh deleted file mode 100755 index 454a22ade1b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_20.sh b/test/ntuple_qcd_200_300/batch/sge_20.sh deleted file mode 100755 index efbfa6a5234..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_200.sh b/test/ntuple_qcd_200_300/batch/sge_200.sh deleted file mode 100755 index 6e033ac0487..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_200.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=200 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_200.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_201.sh b/test/ntuple_qcd_200_300/batch/sge_201.sh deleted file mode 100755 index df7ee1da533..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_201.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=201 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_201.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_202.sh b/test/ntuple_qcd_200_300/batch/sge_202.sh deleted file mode 100755 index 1b1aca85ece..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_202.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=202 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_202.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_203.sh b/test/ntuple_qcd_200_300/batch/sge_203.sh deleted file mode 100755 index 93f34d8857c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_203.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=203 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_203.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_204.sh b/test/ntuple_qcd_200_300/batch/sge_204.sh deleted file mode 100755 index 887c0bbfad4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_204.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=204 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_204.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_205.sh b/test/ntuple_qcd_200_300/batch/sge_205.sh deleted file mode 100755 index c5b5dd48889..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_205.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=205 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_205.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_206.sh b/test/ntuple_qcd_200_300/batch/sge_206.sh deleted file mode 100755 index c23234dba9d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_206.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=206 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_206.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_207.sh b/test/ntuple_qcd_200_300/batch/sge_207.sh deleted file mode 100755 index 8b1cda6a103..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_207.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=207 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_207.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_208.sh b/test/ntuple_qcd_200_300/batch/sge_208.sh deleted file mode 100755 index 348e289c81b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_208.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=208 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_208.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_209.sh b/test/ntuple_qcd_200_300/batch/sge_209.sh deleted file mode 100755 index 6a9e6084fc5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_209.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=209 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_209.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_21.sh b/test/ntuple_qcd_200_300/batch/sge_21.sh deleted file mode 100755 index 267e6147e5e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_210.sh b/test/ntuple_qcd_200_300/batch/sge_210.sh deleted file mode 100755 index 4115b5b905f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_210.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=210 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_210.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_211.sh b/test/ntuple_qcd_200_300/batch/sge_211.sh deleted file mode 100755 index dde3b2118fa..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_211.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=211 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_211.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_212.sh b/test/ntuple_qcd_200_300/batch/sge_212.sh deleted file mode 100755 index 914e6a03640..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_212.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=212 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_212.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_213.sh b/test/ntuple_qcd_200_300/batch/sge_213.sh deleted file mode 100755 index 494ba777736..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_213.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=213 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_213.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_214.sh b/test/ntuple_qcd_200_300/batch/sge_214.sh deleted file mode 100755 index 620db10adf7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_214.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=214 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_214.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_215.sh b/test/ntuple_qcd_200_300/batch/sge_215.sh deleted file mode 100755 index 82f95f72843..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_215.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=215 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_215.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_216.sh b/test/ntuple_qcd_200_300/batch/sge_216.sh deleted file mode 100755 index ed98b7a43a5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_216.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=216 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_216.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_217.sh b/test/ntuple_qcd_200_300/batch/sge_217.sh deleted file mode 100755 index 4eb000834ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_217.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=217 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_217.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_218.sh b/test/ntuple_qcd_200_300/batch/sge_218.sh deleted file mode 100755 index 26195a71ede..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_218.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=218 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_218.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_219.sh b/test/ntuple_qcd_200_300/batch/sge_219.sh deleted file mode 100755 index 727674957eb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_219.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=219 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_219.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_22.sh b/test/ntuple_qcd_200_300/batch/sge_22.sh deleted file mode 100755 index 499e86f18cc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_220.sh b/test/ntuple_qcd_200_300/batch/sge_220.sh deleted file mode 100755 index 87bb69ee70e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_220.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=220 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_220.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_221.sh b/test/ntuple_qcd_200_300/batch/sge_221.sh deleted file mode 100755 index cae4c1a409a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_221.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=221 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_221.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_222.sh b/test/ntuple_qcd_200_300/batch/sge_222.sh deleted file mode 100755 index 20808bc83c8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_222.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=222 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_222.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_223.sh b/test/ntuple_qcd_200_300/batch/sge_223.sh deleted file mode 100755 index 3dc9be97427..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_223.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=223 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_223.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_224.sh b/test/ntuple_qcd_200_300/batch/sge_224.sh deleted file mode 100755 index 977589430bd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_224.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=224 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_224.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_225.sh b/test/ntuple_qcd_200_300/batch/sge_225.sh deleted file mode 100755 index b9c274b9ba1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_225.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=225 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_225.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_226.sh b/test/ntuple_qcd_200_300/batch/sge_226.sh deleted file mode 100755 index d36b7a9833f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_226.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=226 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_226.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_227.sh b/test/ntuple_qcd_200_300/batch/sge_227.sh deleted file mode 100755 index 017a6f59e76..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_227.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=227 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_227.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_228.sh b/test/ntuple_qcd_200_300/batch/sge_228.sh deleted file mode 100755 index 444d11dedd4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_228.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=228 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_228.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_229.sh b/test/ntuple_qcd_200_300/batch/sge_229.sh deleted file mode 100755 index 3d63353e8e3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_229.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=229 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_229.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_23.sh b/test/ntuple_qcd_200_300/batch/sge_23.sh deleted file mode 100755 index 92e02e7da80..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_230.sh b/test/ntuple_qcd_200_300/batch/sge_230.sh deleted file mode 100755 index 607db8fca47..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_230.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=230 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_230.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_231.sh b/test/ntuple_qcd_200_300/batch/sge_231.sh deleted file mode 100755 index f0d6501af53..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_231.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=231 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_231.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_232.sh b/test/ntuple_qcd_200_300/batch/sge_232.sh deleted file mode 100755 index e7b99b4ef77..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_232.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=232 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_232.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_233.sh b/test/ntuple_qcd_200_300/batch/sge_233.sh deleted file mode 100755 index a15f53a2d61..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_233.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=233 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_233.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_234.sh b/test/ntuple_qcd_200_300/batch/sge_234.sh deleted file mode 100755 index 5ac845a3ed9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_234.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=234 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_234.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_235.sh b/test/ntuple_qcd_200_300/batch/sge_235.sh deleted file mode 100755 index 6817a0366b3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_235.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=235 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_235.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_236.sh b/test/ntuple_qcd_200_300/batch/sge_236.sh deleted file mode 100755 index 43cc2c57dba..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_236.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=236 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_236.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_237.sh b/test/ntuple_qcd_200_300/batch/sge_237.sh deleted file mode 100755 index d112a30162b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_237.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=237 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_237.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_238.sh b/test/ntuple_qcd_200_300/batch/sge_238.sh deleted file mode 100755 index dbad1b1a404..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_238.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=238 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_238.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_239.sh b/test/ntuple_qcd_200_300/batch/sge_239.sh deleted file mode 100755 index 9b3b4f4a21c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_239.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=239 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_239.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_24.sh b/test/ntuple_qcd_200_300/batch/sge_24.sh deleted file mode 100755 index 0ad54c8d2c1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_240.sh b/test/ntuple_qcd_200_300/batch/sge_240.sh deleted file mode 100755 index 295ea6b8a1b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_240.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=240 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_240.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_241.sh b/test/ntuple_qcd_200_300/batch/sge_241.sh deleted file mode 100755 index f5593a832f3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_241.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=241 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_241.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_242.sh b/test/ntuple_qcd_200_300/batch/sge_242.sh deleted file mode 100755 index ac0d095f6dc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_242.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=242 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_242.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_243.sh b/test/ntuple_qcd_200_300/batch/sge_243.sh deleted file mode 100755 index ac4658b239d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_243.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=243 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_243.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_244.sh b/test/ntuple_qcd_200_300/batch/sge_244.sh deleted file mode 100755 index b7228611874..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_244.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=244 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_244.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_245.sh b/test/ntuple_qcd_200_300/batch/sge_245.sh deleted file mode 100755 index 3489ba39f9c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_245.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=245 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_245.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_246.sh b/test/ntuple_qcd_200_300/batch/sge_246.sh deleted file mode 100755 index ed38408da8b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_246.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=246 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_246.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_247.sh b/test/ntuple_qcd_200_300/batch/sge_247.sh deleted file mode 100755 index c7b84b7c2ad..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_247.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=247 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_247.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_248.sh b/test/ntuple_qcd_200_300/batch/sge_248.sh deleted file mode 100755 index 2f779b2b923..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_248.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=248 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_248.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_249.sh b/test/ntuple_qcd_200_300/batch/sge_249.sh deleted file mode 100755 index 700d259c76e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_249.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=249 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_249.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_25.sh b/test/ntuple_qcd_200_300/batch/sge_25.sh deleted file mode 100755 index 1f4edad8ad1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_250.sh b/test/ntuple_qcd_200_300/batch/sge_250.sh deleted file mode 100755 index 5d466ed6023..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_250.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=250 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_250.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_251.sh b/test/ntuple_qcd_200_300/batch/sge_251.sh deleted file mode 100755 index ac65b9ef97e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_251.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=251 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_251.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_252.sh b/test/ntuple_qcd_200_300/batch/sge_252.sh deleted file mode 100755 index 625cf95f14e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_252.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=252 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_252.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_253.sh b/test/ntuple_qcd_200_300/batch/sge_253.sh deleted file mode 100755 index ed6193c1b4d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_253.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=253 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_253.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_254.sh b/test/ntuple_qcd_200_300/batch/sge_254.sh deleted file mode 100755 index d0a0381d418..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_254.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=254 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_254.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_255.sh b/test/ntuple_qcd_200_300/batch/sge_255.sh deleted file mode 100755 index de1f7688c4d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_255.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=255 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_255.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_256.sh b/test/ntuple_qcd_200_300/batch/sge_256.sh deleted file mode 100755 index 1d4d624682d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_256.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=256 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_256.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_257.sh b/test/ntuple_qcd_200_300/batch/sge_257.sh deleted file mode 100755 index 56dbd5f51bf..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_257.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=257 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_257.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_258.sh b/test/ntuple_qcd_200_300/batch/sge_258.sh deleted file mode 100755 index 52dbc4c63cb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_258.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=258 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_258.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_259.sh b/test/ntuple_qcd_200_300/batch/sge_259.sh deleted file mode 100755 index f27368a8ed9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_259.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=259 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_259.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_26.sh b/test/ntuple_qcd_200_300/batch/sge_26.sh deleted file mode 100755 index 034aa0e4db3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_260.sh b/test/ntuple_qcd_200_300/batch/sge_260.sh deleted file mode 100755 index c3bffb1a55c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_260.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=260 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_260.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_261.sh b/test/ntuple_qcd_200_300/batch/sge_261.sh deleted file mode 100755 index a788487fbaa..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_261.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=261 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_261.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_262.sh b/test/ntuple_qcd_200_300/batch/sge_262.sh deleted file mode 100755 index 8649bc41434..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_262.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=262 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_262.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_263.sh b/test/ntuple_qcd_200_300/batch/sge_263.sh deleted file mode 100755 index 5337ab31887..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_263.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=263 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_263.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_264.sh b/test/ntuple_qcd_200_300/batch/sge_264.sh deleted file mode 100755 index 1c9a2fa8679..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_264.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=264 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_264.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_265.sh b/test/ntuple_qcd_200_300/batch/sge_265.sh deleted file mode 100755 index 812f128fd27..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_265.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=265 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_265.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_266.sh b/test/ntuple_qcd_200_300/batch/sge_266.sh deleted file mode 100755 index 4ae8d6e59ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_266.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=266 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_266.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_267.sh b/test/ntuple_qcd_200_300/batch/sge_267.sh deleted file mode 100755 index 720f9255b3e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_267.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=267 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_267.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_268.sh b/test/ntuple_qcd_200_300/batch/sge_268.sh deleted file mode 100755 index 95ce15ab425..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_268.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=268 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_268.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_269.sh b/test/ntuple_qcd_200_300/batch/sge_269.sh deleted file mode 100755 index effa881f310..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_269.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=269 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_269.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_27.sh b/test/ntuple_qcd_200_300/batch/sge_27.sh deleted file mode 100755 index db806066e8d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_270.sh b/test/ntuple_qcd_200_300/batch/sge_270.sh deleted file mode 100755 index f5110bd8db4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_270.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=270 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_270.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_271.sh b/test/ntuple_qcd_200_300/batch/sge_271.sh deleted file mode 100755 index e99f06dbc5b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_271.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=271 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_271.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_272.sh b/test/ntuple_qcd_200_300/batch/sge_272.sh deleted file mode 100755 index 9551c27b7f8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_272.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=272 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_272.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_273.sh b/test/ntuple_qcd_200_300/batch/sge_273.sh deleted file mode 100755 index 0c555f703ef..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_273.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=273 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_273.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_274.sh b/test/ntuple_qcd_200_300/batch/sge_274.sh deleted file mode 100755 index e2c0fa18c21..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_274.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=274 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_274.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_275.sh b/test/ntuple_qcd_200_300/batch/sge_275.sh deleted file mode 100755 index d518b143775..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_275.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=275 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_275.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_276.sh b/test/ntuple_qcd_200_300/batch/sge_276.sh deleted file mode 100755 index 9c09a093910..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_276.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=276 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_276.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_277.sh b/test/ntuple_qcd_200_300/batch/sge_277.sh deleted file mode 100755 index bb83f5c9519..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_277.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=277 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_277.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_278.sh b/test/ntuple_qcd_200_300/batch/sge_278.sh deleted file mode 100755 index dd4d029647e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_278.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=278 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_278.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_279.sh b/test/ntuple_qcd_200_300/batch/sge_279.sh deleted file mode 100755 index 8050cf5ce8c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_279.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=279 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_279.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_28.sh b/test/ntuple_qcd_200_300/batch/sge_28.sh deleted file mode 100755 index 89630965748..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_280.sh b/test/ntuple_qcd_200_300/batch/sge_280.sh deleted file mode 100755 index ad9b95bc488..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_280.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=280 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_280.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_281.sh b/test/ntuple_qcd_200_300/batch/sge_281.sh deleted file mode 100755 index f826718b353..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_281.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=281 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_281.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_282.sh b/test/ntuple_qcd_200_300/batch/sge_282.sh deleted file mode 100755 index ab667c79c7e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_282.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=282 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_282.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_283.sh b/test/ntuple_qcd_200_300/batch/sge_283.sh deleted file mode 100755 index 9739d19882c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_283.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=283 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_283.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_284.sh b/test/ntuple_qcd_200_300/batch/sge_284.sh deleted file mode 100755 index 19d07b155e9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_284.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=284 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_284.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_285.sh b/test/ntuple_qcd_200_300/batch/sge_285.sh deleted file mode 100755 index 9a28ba0868c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_285.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=285 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_285.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_286.sh b/test/ntuple_qcd_200_300/batch/sge_286.sh deleted file mode 100755 index 4f11a94703d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_286.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=286 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_286.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_287.sh b/test/ntuple_qcd_200_300/batch/sge_287.sh deleted file mode 100755 index 3bbc831a4d8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_287.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=287 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_287.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_288.sh b/test/ntuple_qcd_200_300/batch/sge_288.sh deleted file mode 100755 index 7881d4d6090..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_288.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=288 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_288.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_289.sh b/test/ntuple_qcd_200_300/batch/sge_289.sh deleted file mode 100755 index 27a0afa6914..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_289.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=289 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_289.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_29.sh b/test/ntuple_qcd_200_300/batch/sge_29.sh deleted file mode 100755 index eb35c4d53c6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_290.sh b/test/ntuple_qcd_200_300/batch/sge_290.sh deleted file mode 100755 index f247d1046e7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_290.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=290 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_290.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_291.sh b/test/ntuple_qcd_200_300/batch/sge_291.sh deleted file mode 100755 index df16af60990..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_291.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=291 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_291.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_292.sh b/test/ntuple_qcd_200_300/batch/sge_292.sh deleted file mode 100755 index e3621d0a708..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_292.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=292 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_292.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_293.sh b/test/ntuple_qcd_200_300/batch/sge_293.sh deleted file mode 100755 index bd59c1e6e60..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_293.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=293 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_293.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_294.sh b/test/ntuple_qcd_200_300/batch/sge_294.sh deleted file mode 100755 index a1c14b68c64..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_294.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=294 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_294.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_295.sh b/test/ntuple_qcd_200_300/batch/sge_295.sh deleted file mode 100755 index b466a2fbe33..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_295.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=295 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_295.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_296.sh b/test/ntuple_qcd_200_300/batch/sge_296.sh deleted file mode 100755 index ef136c9a940..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_296.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=296 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_296.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_297.sh b/test/ntuple_qcd_200_300/batch/sge_297.sh deleted file mode 100755 index 34b62b46989..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_297.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=297 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_297.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_298.sh b/test/ntuple_qcd_200_300/batch/sge_298.sh deleted file mode 100755 index 6336324fbf0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_298.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=298 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_298.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_299.sh b/test/ntuple_qcd_200_300/batch/sge_299.sh deleted file mode 100755 index 8255587a99d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_299.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=299 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_299.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_3.sh b/test/ntuple_qcd_200_300/batch/sge_3.sh deleted file mode 100755 index c0bc6e77bff..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_30.sh b/test/ntuple_qcd_200_300/batch/sge_30.sh deleted file mode 100755 index 3bb56b5f83a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_300.sh b/test/ntuple_qcd_200_300/batch/sge_300.sh deleted file mode 100755 index 998ce850c28..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_300.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=300 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_300.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_301.sh b/test/ntuple_qcd_200_300/batch/sge_301.sh deleted file mode 100755 index 3251da4476f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_301.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=301 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_301.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_302.sh b/test/ntuple_qcd_200_300/batch/sge_302.sh deleted file mode 100755 index f1cfd836c4b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_302.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=302 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_302.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_303.sh b/test/ntuple_qcd_200_300/batch/sge_303.sh deleted file mode 100755 index cf165907f8f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_303.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=303 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_303.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_304.sh b/test/ntuple_qcd_200_300/batch/sge_304.sh deleted file mode 100755 index 140016cbc22..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_304.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=304 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_304.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_305.sh b/test/ntuple_qcd_200_300/batch/sge_305.sh deleted file mode 100755 index 8c3179e3cc8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_305.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=305 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_305.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_306.sh b/test/ntuple_qcd_200_300/batch/sge_306.sh deleted file mode 100755 index 7630be203f8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_306.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=306 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_306.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_307.sh b/test/ntuple_qcd_200_300/batch/sge_307.sh deleted file mode 100755 index 12dc5bc9343..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_307.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=307 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_307.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_308.sh b/test/ntuple_qcd_200_300/batch/sge_308.sh deleted file mode 100755 index b68ad218a57..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_308.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=308 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_308.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_309.sh b/test/ntuple_qcd_200_300/batch/sge_309.sh deleted file mode 100755 index 260ff87af28..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_309.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=309 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_309.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_31.sh b/test/ntuple_qcd_200_300/batch/sge_31.sh deleted file mode 100755 index 62f87a9c55d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_310.sh b/test/ntuple_qcd_200_300/batch/sge_310.sh deleted file mode 100755 index 348c522d2bd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_310.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=310 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_310.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_311.sh b/test/ntuple_qcd_200_300/batch/sge_311.sh deleted file mode 100755 index 91cf3b3d142..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_311.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=311 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_311.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_312.sh b/test/ntuple_qcd_200_300/batch/sge_312.sh deleted file mode 100755 index a0e832fcb0a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_312.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=312 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_312.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_313.sh b/test/ntuple_qcd_200_300/batch/sge_313.sh deleted file mode 100755 index 1aed66ed63b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_313.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=313 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_313.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_314.sh b/test/ntuple_qcd_200_300/batch/sge_314.sh deleted file mode 100755 index 8a967cde224..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_314.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=314 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_314.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_315.sh b/test/ntuple_qcd_200_300/batch/sge_315.sh deleted file mode 100755 index 9119bd2d9c1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_315.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=315 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_315.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_316.sh b/test/ntuple_qcd_200_300/batch/sge_316.sh deleted file mode 100755 index 7d2cee51cf7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_316.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=316 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_316.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_317.sh b/test/ntuple_qcd_200_300/batch/sge_317.sh deleted file mode 100755 index 5417c57326c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_317.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=317 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_317.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_318.sh b/test/ntuple_qcd_200_300/batch/sge_318.sh deleted file mode 100755 index 8f553e4df3a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_318.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=318 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_318.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_319.sh b/test/ntuple_qcd_200_300/batch/sge_319.sh deleted file mode 100755 index 685bc28749b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_319.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=319 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_319.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_32.sh b/test/ntuple_qcd_200_300/batch/sge_32.sh deleted file mode 100755 index d48e30f5945..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_320.sh b/test/ntuple_qcd_200_300/batch/sge_320.sh deleted file mode 100755 index a919199d001..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_320.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=320 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_320.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_321.sh b/test/ntuple_qcd_200_300/batch/sge_321.sh deleted file mode 100755 index 6174f8cb96f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_321.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=321 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_321.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_322.sh b/test/ntuple_qcd_200_300/batch/sge_322.sh deleted file mode 100755 index e764a7f2601..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_322.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=322 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_322.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_323.sh b/test/ntuple_qcd_200_300/batch/sge_323.sh deleted file mode 100755 index e5b61269b40..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_323.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=323 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_323.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_324.sh b/test/ntuple_qcd_200_300/batch/sge_324.sh deleted file mode 100755 index e61952d90bc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_324.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=324 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_324.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_325.sh b/test/ntuple_qcd_200_300/batch/sge_325.sh deleted file mode 100755 index f30082ea430..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_325.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=325 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_325.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_326.sh b/test/ntuple_qcd_200_300/batch/sge_326.sh deleted file mode 100755 index b0145a5db0b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_326.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=326 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_326.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_327.sh b/test/ntuple_qcd_200_300/batch/sge_327.sh deleted file mode 100755 index 0f9cb9da349..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_327.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=327 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_327.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_328.sh b/test/ntuple_qcd_200_300/batch/sge_328.sh deleted file mode 100755 index 781902a12d2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_328.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=328 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_328.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_329.sh b/test/ntuple_qcd_200_300/batch/sge_329.sh deleted file mode 100755 index 4644d212ebb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_329.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=329 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_329.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_33.sh b/test/ntuple_qcd_200_300/batch/sge_33.sh deleted file mode 100755 index 6a5986942b7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_330.sh b/test/ntuple_qcd_200_300/batch/sge_330.sh deleted file mode 100755 index 542c6bf620b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_330.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=330 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_330.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_331.sh b/test/ntuple_qcd_200_300/batch/sge_331.sh deleted file mode 100755 index 3817aa1fd34..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_331.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=331 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_331.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_332.sh b/test/ntuple_qcd_200_300/batch/sge_332.sh deleted file mode 100755 index 881842279c1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_332.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=332 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_332.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_333.sh b/test/ntuple_qcd_200_300/batch/sge_333.sh deleted file mode 100755 index bf204494ba6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_333.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=333 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_333.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_334.sh b/test/ntuple_qcd_200_300/batch/sge_334.sh deleted file mode 100755 index 11ef21e8954..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_334.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=334 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_334.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_335.sh b/test/ntuple_qcd_200_300/batch/sge_335.sh deleted file mode 100755 index fcc4f82d850..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_335.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=335 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_335.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_336.sh b/test/ntuple_qcd_200_300/batch/sge_336.sh deleted file mode 100755 index d79e02d2f26..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_336.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=336 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_336.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_337.sh b/test/ntuple_qcd_200_300/batch/sge_337.sh deleted file mode 100755 index 1188ec5afbe..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_337.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=337 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_337.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_338.sh b/test/ntuple_qcd_200_300/batch/sge_338.sh deleted file mode 100755 index f2dc81e0252..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_338.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=338 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_338.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_339.sh b/test/ntuple_qcd_200_300/batch/sge_339.sh deleted file mode 100755 index 3f69c02680f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_339.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=339 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_339.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_34.sh b/test/ntuple_qcd_200_300/batch/sge_34.sh deleted file mode 100755 index 1ce5a6327a7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_340.sh b/test/ntuple_qcd_200_300/batch/sge_340.sh deleted file mode 100755 index 71c495823f0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_340.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=340 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_340.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_341.sh b/test/ntuple_qcd_200_300/batch/sge_341.sh deleted file mode 100755 index 2fb80727d52..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_341.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=341 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_341.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_342.sh b/test/ntuple_qcd_200_300/batch/sge_342.sh deleted file mode 100755 index 5fb45630c3d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_342.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=342 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_342.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_343.sh b/test/ntuple_qcd_200_300/batch/sge_343.sh deleted file mode 100755 index 2937ce02952..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_343.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=343 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_343.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_344.sh b/test/ntuple_qcd_200_300/batch/sge_344.sh deleted file mode 100755 index 7e5ce456e85..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_344.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=344 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_344.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_345.sh b/test/ntuple_qcd_200_300/batch/sge_345.sh deleted file mode 100755 index e3c76cb79d2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_345.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=345 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_345.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_346.sh b/test/ntuple_qcd_200_300/batch/sge_346.sh deleted file mode 100755 index b57b4c2e581..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_346.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=346 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_346.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_347.sh b/test/ntuple_qcd_200_300/batch/sge_347.sh deleted file mode 100755 index 54a72f037aa..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_347.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=347 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_347.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_348.sh b/test/ntuple_qcd_200_300/batch/sge_348.sh deleted file mode 100755 index 43ce1eabb34..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_348.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=348 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_348.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_349.sh b/test/ntuple_qcd_200_300/batch/sge_349.sh deleted file mode 100755 index e4f378d6981..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_349.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=349 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_349.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_35.sh b/test/ntuple_qcd_200_300/batch/sge_35.sh deleted file mode 100755 index 66e1c90dc17..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_350.sh b/test/ntuple_qcd_200_300/batch/sge_350.sh deleted file mode 100755 index 3b4ff092eee..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_350.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=350 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_350.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_351.sh b/test/ntuple_qcd_200_300/batch/sge_351.sh deleted file mode 100755 index 8081b5004d9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_351.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=351 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_351.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_352.sh b/test/ntuple_qcd_200_300/batch/sge_352.sh deleted file mode 100755 index 9a01de45c11..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_352.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=352 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_352.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_353.sh b/test/ntuple_qcd_200_300/batch/sge_353.sh deleted file mode 100755 index 497dc892645..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_353.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=353 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_353.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_354.sh b/test/ntuple_qcd_200_300/batch/sge_354.sh deleted file mode 100755 index 4bad89e4635..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_354.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=354 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_354.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_355.sh b/test/ntuple_qcd_200_300/batch/sge_355.sh deleted file mode 100755 index d919f131705..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_355.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=355 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_355.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_356.sh b/test/ntuple_qcd_200_300/batch/sge_356.sh deleted file mode 100755 index 747bcc40264..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_356.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=356 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_356.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_357.sh b/test/ntuple_qcd_200_300/batch/sge_357.sh deleted file mode 100755 index 7a397f2c02b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_357.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=357 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_357.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_358.sh b/test/ntuple_qcd_200_300/batch/sge_358.sh deleted file mode 100755 index cc69a41e5f5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_358.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=358 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_358.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_359.sh b/test/ntuple_qcd_200_300/batch/sge_359.sh deleted file mode 100755 index eb6b3de3e53..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_359.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=359 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_359.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_36.sh b/test/ntuple_qcd_200_300/batch/sge_36.sh deleted file mode 100755 index 24963ad2fa3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_360.sh b/test/ntuple_qcd_200_300/batch/sge_360.sh deleted file mode 100755 index c418598107a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_360.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=360 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_360.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_361.sh b/test/ntuple_qcd_200_300/batch/sge_361.sh deleted file mode 100755 index 5b3d3ac3ebe..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_361.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=361 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_361.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_362.sh b/test/ntuple_qcd_200_300/batch/sge_362.sh deleted file mode 100755 index 9c65397cb9c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_362.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=362 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_362.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_363.sh b/test/ntuple_qcd_200_300/batch/sge_363.sh deleted file mode 100755 index 62961bc6e44..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_363.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=363 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_363.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_364.sh b/test/ntuple_qcd_200_300/batch/sge_364.sh deleted file mode 100755 index ef0208cde1e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_364.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=364 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_364.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_365.sh b/test/ntuple_qcd_200_300/batch/sge_365.sh deleted file mode 100755 index 86d92a8cc05..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_365.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=365 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_365.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_366.sh b/test/ntuple_qcd_200_300/batch/sge_366.sh deleted file mode 100755 index 9f1398e0e01..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_366.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=366 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_366.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_367.sh b/test/ntuple_qcd_200_300/batch/sge_367.sh deleted file mode 100755 index 3504dcaf862..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_367.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=367 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_367.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_368.sh b/test/ntuple_qcd_200_300/batch/sge_368.sh deleted file mode 100755 index c7615906bc7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_368.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=368 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_368.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_369.sh b/test/ntuple_qcd_200_300/batch/sge_369.sh deleted file mode 100755 index 2d06b62c917..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_369.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=369 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_369.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_37.sh b/test/ntuple_qcd_200_300/batch/sge_37.sh deleted file mode 100755 index 03a07af6043..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_370.sh b/test/ntuple_qcd_200_300/batch/sge_370.sh deleted file mode 100755 index bf65bf1bf54..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_370.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=370 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_370.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_371.sh b/test/ntuple_qcd_200_300/batch/sge_371.sh deleted file mode 100755 index 37895a18643..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_371.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=371 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_371.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_372.sh b/test/ntuple_qcd_200_300/batch/sge_372.sh deleted file mode 100755 index fa6ae54d57a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_372.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=372 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_372.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_373.sh b/test/ntuple_qcd_200_300/batch/sge_373.sh deleted file mode 100755 index a367b24e85b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_373.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=373 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_373.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_374.sh b/test/ntuple_qcd_200_300/batch/sge_374.sh deleted file mode 100755 index 0e351faa3c9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_374.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=374 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_374.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_375.sh b/test/ntuple_qcd_200_300/batch/sge_375.sh deleted file mode 100755 index 35c8fd4d617..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_375.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=375 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_375.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_376.sh b/test/ntuple_qcd_200_300/batch/sge_376.sh deleted file mode 100755 index 785aba247b0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_376.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=376 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_376.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_377.sh b/test/ntuple_qcd_200_300/batch/sge_377.sh deleted file mode 100755 index 0c0f31c663d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_377.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=377 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_377.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_378.sh b/test/ntuple_qcd_200_300/batch/sge_378.sh deleted file mode 100755 index b9b280517bd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_378.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=378 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_378.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_379.sh b/test/ntuple_qcd_200_300/batch/sge_379.sh deleted file mode 100755 index 195329a7c51..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_379.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=379 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_379.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_38.sh b/test/ntuple_qcd_200_300/batch/sge_38.sh deleted file mode 100755 index f9b42bdc443..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_380.sh b/test/ntuple_qcd_200_300/batch/sge_380.sh deleted file mode 100755 index ffe03cd3ca9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_380.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=380 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_380.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_381.sh b/test/ntuple_qcd_200_300/batch/sge_381.sh deleted file mode 100755 index 6684c2f9579..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_381.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=381 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_381.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_382.sh b/test/ntuple_qcd_200_300/batch/sge_382.sh deleted file mode 100755 index c45940f4c5b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_382.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=382 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_382.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_383.sh b/test/ntuple_qcd_200_300/batch/sge_383.sh deleted file mode 100755 index d48353c23e5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_383.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=383 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_383.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_384.sh b/test/ntuple_qcd_200_300/batch/sge_384.sh deleted file mode 100755 index 66eb85e5854..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_384.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=384 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_384.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_385.sh b/test/ntuple_qcd_200_300/batch/sge_385.sh deleted file mode 100755 index 02073253d4e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_385.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=385 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_385.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_386.sh b/test/ntuple_qcd_200_300/batch/sge_386.sh deleted file mode 100755 index 03af68cae5e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_386.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=386 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_386.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_387.sh b/test/ntuple_qcd_200_300/batch/sge_387.sh deleted file mode 100755 index edf2b4c2b3f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_387.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=387 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_387.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_388.sh b/test/ntuple_qcd_200_300/batch/sge_388.sh deleted file mode 100755 index d4d489676d6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_388.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=388 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_388.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_389.sh b/test/ntuple_qcd_200_300/batch/sge_389.sh deleted file mode 100755 index 439743179db..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_389.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=389 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_389.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_39.sh b/test/ntuple_qcd_200_300/batch/sge_39.sh deleted file mode 100755 index 91c22214cb1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_390.sh b/test/ntuple_qcd_200_300/batch/sge_390.sh deleted file mode 100755 index 030c8dfdd1c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_390.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=390 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_390.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_391.sh b/test/ntuple_qcd_200_300/batch/sge_391.sh deleted file mode 100755 index 9d00c9b5a42..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_391.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=391 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_391.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_392.sh b/test/ntuple_qcd_200_300/batch/sge_392.sh deleted file mode 100755 index 5e256153033..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_392.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=392 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_392.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_393.sh b/test/ntuple_qcd_200_300/batch/sge_393.sh deleted file mode 100755 index 2772126c1f8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_393.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=393 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_393.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_394.sh b/test/ntuple_qcd_200_300/batch/sge_394.sh deleted file mode 100755 index 996459b08c2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_394.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=394 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_394.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_395.sh b/test/ntuple_qcd_200_300/batch/sge_395.sh deleted file mode 100755 index 73d203dabaa..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_395.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=395 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_395.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_396.sh b/test/ntuple_qcd_200_300/batch/sge_396.sh deleted file mode 100755 index 090b6647e04..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_396.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=396 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_396.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_397.sh b/test/ntuple_qcd_200_300/batch/sge_397.sh deleted file mode 100755 index 19b22f317bf..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_397.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=397 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_397.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_398.sh b/test/ntuple_qcd_200_300/batch/sge_398.sh deleted file mode 100755 index 8e23271bfe1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_398.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=398 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_398.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_399.sh b/test/ntuple_qcd_200_300/batch/sge_399.sh deleted file mode 100755 index acfcc9a4d15..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_399.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=399 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_399.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_4.sh b/test/ntuple_qcd_200_300/batch/sge_4.sh deleted file mode 100755 index bf597227681..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_40.sh b/test/ntuple_qcd_200_300/batch/sge_40.sh deleted file mode 100755 index 513489fbb3b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_400.sh b/test/ntuple_qcd_200_300/batch/sge_400.sh deleted file mode 100755 index b8acf61c874..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_400.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=400 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_400.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_401.sh b/test/ntuple_qcd_200_300/batch/sge_401.sh deleted file mode 100755 index b00c6a6486a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_401.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=401 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_401.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_402.sh b/test/ntuple_qcd_200_300/batch/sge_402.sh deleted file mode 100755 index c3364976e3b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_402.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=402 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_402.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_403.sh b/test/ntuple_qcd_200_300/batch/sge_403.sh deleted file mode 100755 index ff108c580f3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_403.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=403 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_403.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_404.sh b/test/ntuple_qcd_200_300/batch/sge_404.sh deleted file mode 100755 index 831e6e3e7ec..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_404.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=404 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_404.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_405.sh b/test/ntuple_qcd_200_300/batch/sge_405.sh deleted file mode 100755 index 8fde1c02e3d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_405.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=405 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_405.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_406.sh b/test/ntuple_qcd_200_300/batch/sge_406.sh deleted file mode 100755 index c76635f71e1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_406.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=406 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_406.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_407.sh b/test/ntuple_qcd_200_300/batch/sge_407.sh deleted file mode 100755 index 9248fc3ead4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_407.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=407 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_407.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_408.sh b/test/ntuple_qcd_200_300/batch/sge_408.sh deleted file mode 100755 index caa4d15d6bb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_408.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=408 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_408.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_409.sh b/test/ntuple_qcd_200_300/batch/sge_409.sh deleted file mode 100755 index 8378eae4f52..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_409.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=409 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_409.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_41.sh b/test/ntuple_qcd_200_300/batch/sge_41.sh deleted file mode 100755 index 1c91db7286a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_410.sh b/test/ntuple_qcd_200_300/batch/sge_410.sh deleted file mode 100755 index 572d7e07fac..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_410.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=410 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_410.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_411.sh b/test/ntuple_qcd_200_300/batch/sge_411.sh deleted file mode 100755 index 17b9cc81631..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_411.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=411 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_411.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_412.sh b/test/ntuple_qcd_200_300/batch/sge_412.sh deleted file mode 100755 index d05723d9db9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_412.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=412 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_412.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_413.sh b/test/ntuple_qcd_200_300/batch/sge_413.sh deleted file mode 100755 index 0ba1c5d1930..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_413.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=413 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_413.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_414.sh b/test/ntuple_qcd_200_300/batch/sge_414.sh deleted file mode 100755 index a806164ba50..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_414.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=414 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_414.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_415.sh b/test/ntuple_qcd_200_300/batch/sge_415.sh deleted file mode 100755 index c08104586f1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_415.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=415 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_415.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_416.sh b/test/ntuple_qcd_200_300/batch/sge_416.sh deleted file mode 100755 index 7e8b2517600..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_416.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=416 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_416.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_417.sh b/test/ntuple_qcd_200_300/batch/sge_417.sh deleted file mode 100755 index 5e86486fd34..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_417.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=417 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_417.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_418.sh b/test/ntuple_qcd_200_300/batch/sge_418.sh deleted file mode 100755 index 929b7f89ddf..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_418.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=418 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_418.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_419.sh b/test/ntuple_qcd_200_300/batch/sge_419.sh deleted file mode 100755 index 79b20ed2fd9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_419.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=419 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_419.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_42.sh b/test/ntuple_qcd_200_300/batch/sge_42.sh deleted file mode 100755 index 9a16790931c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_420.sh b/test/ntuple_qcd_200_300/batch/sge_420.sh deleted file mode 100755 index 462ef894ee8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_420.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=420 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_420.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_421.sh b/test/ntuple_qcd_200_300/batch/sge_421.sh deleted file mode 100755 index 31385ab0928..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_421.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=421 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_421.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_422.sh b/test/ntuple_qcd_200_300/batch/sge_422.sh deleted file mode 100755 index 354d7f63d69..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_422.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=422 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_422.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_423.sh b/test/ntuple_qcd_200_300/batch/sge_423.sh deleted file mode 100755 index 5b4263b5ed2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_423.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=423 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_423.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_424.sh b/test/ntuple_qcd_200_300/batch/sge_424.sh deleted file mode 100755 index 10b40d8c36d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_424.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=424 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_424.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_425.sh b/test/ntuple_qcd_200_300/batch/sge_425.sh deleted file mode 100755 index 8e91148c469..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_425.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=425 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_425.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_426.sh b/test/ntuple_qcd_200_300/batch/sge_426.sh deleted file mode 100755 index c057527edb3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_426.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=426 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_426.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_427.sh b/test/ntuple_qcd_200_300/batch/sge_427.sh deleted file mode 100755 index 4c9226abea7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_427.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=427 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_427.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_428.sh b/test/ntuple_qcd_200_300/batch/sge_428.sh deleted file mode 100755 index 301779c3428..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_428.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=428 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_428.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_429.sh b/test/ntuple_qcd_200_300/batch/sge_429.sh deleted file mode 100755 index 7e52534fc72..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_429.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=429 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_429.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_43.sh b/test/ntuple_qcd_200_300/batch/sge_43.sh deleted file mode 100755 index 26d095467a8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_430.sh b/test/ntuple_qcd_200_300/batch/sge_430.sh deleted file mode 100755 index d6ea2e2147a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_430.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=430 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_430.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_431.sh b/test/ntuple_qcd_200_300/batch/sge_431.sh deleted file mode 100755 index ac5e4808b49..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_431.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=431 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_431.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_432.sh b/test/ntuple_qcd_200_300/batch/sge_432.sh deleted file mode 100755 index 94c0127a3e9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_432.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=432 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_432.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_433.sh b/test/ntuple_qcd_200_300/batch/sge_433.sh deleted file mode 100755 index 205bba29227..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_433.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=433 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_433.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_434.sh b/test/ntuple_qcd_200_300/batch/sge_434.sh deleted file mode 100755 index 89808799a8c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_434.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=434 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_434.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_435.sh b/test/ntuple_qcd_200_300/batch/sge_435.sh deleted file mode 100755 index c4c91f659cf..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_435.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=435 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_435.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_436.sh b/test/ntuple_qcd_200_300/batch/sge_436.sh deleted file mode 100755 index d6f24f0ef90..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_436.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=436 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_436.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_437.sh b/test/ntuple_qcd_200_300/batch/sge_437.sh deleted file mode 100755 index 59bffffc72b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_437.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=437 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_437.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_438.sh b/test/ntuple_qcd_200_300/batch/sge_438.sh deleted file mode 100755 index 8379774dfe7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_438.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=438 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_438.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_439.sh b/test/ntuple_qcd_200_300/batch/sge_439.sh deleted file mode 100755 index f21622572c7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_439.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=439 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_439.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_44.sh b/test/ntuple_qcd_200_300/batch/sge_44.sh deleted file mode 100755 index e3f14c993cb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_440.sh b/test/ntuple_qcd_200_300/batch/sge_440.sh deleted file mode 100755 index b2fd9e2ce46..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_440.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=440 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_440.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_441.sh b/test/ntuple_qcd_200_300/batch/sge_441.sh deleted file mode 100755 index ed097a2e5cb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_441.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=441 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_441.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_442.sh b/test/ntuple_qcd_200_300/batch/sge_442.sh deleted file mode 100755 index b002ffa7916..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_442.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=442 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_442.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_443.sh b/test/ntuple_qcd_200_300/batch/sge_443.sh deleted file mode 100755 index b9054785b89..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_443.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=443 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_443.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_444.sh b/test/ntuple_qcd_200_300/batch/sge_444.sh deleted file mode 100755 index a2a1d9e10de..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_444.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=444 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_444.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_445.sh b/test/ntuple_qcd_200_300/batch/sge_445.sh deleted file mode 100755 index 2a32365da0a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_445.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=445 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_445.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_446.sh b/test/ntuple_qcd_200_300/batch/sge_446.sh deleted file mode 100755 index 282f44f7383..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_446.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=446 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_446.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_447.sh b/test/ntuple_qcd_200_300/batch/sge_447.sh deleted file mode 100755 index 9fb065f95a5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_447.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=447 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_447.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_448.sh b/test/ntuple_qcd_200_300/batch/sge_448.sh deleted file mode 100755 index 1a429bd85ae..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_448.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=448 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_448.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_449.sh b/test/ntuple_qcd_200_300/batch/sge_449.sh deleted file mode 100755 index 63859d8cd58..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_449.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=449 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_449.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_45.sh b/test/ntuple_qcd_200_300/batch/sge_45.sh deleted file mode 100755 index e576d24dac4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_450.sh b/test/ntuple_qcd_200_300/batch/sge_450.sh deleted file mode 100755 index c8856f34936..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_450.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=450 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_450.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_451.sh b/test/ntuple_qcd_200_300/batch/sge_451.sh deleted file mode 100755 index 6ef317ed29b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_451.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=451 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_451.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_452.sh b/test/ntuple_qcd_200_300/batch/sge_452.sh deleted file mode 100755 index a64c4a08295..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_452.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=452 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_452.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_453.sh b/test/ntuple_qcd_200_300/batch/sge_453.sh deleted file mode 100755 index 30d81929b17..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_453.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=453 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_453.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_454.sh b/test/ntuple_qcd_200_300/batch/sge_454.sh deleted file mode 100755 index 0e405f67315..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_454.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=454 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_454.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_455.sh b/test/ntuple_qcd_200_300/batch/sge_455.sh deleted file mode 100755 index 936a937b445..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_455.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=455 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_455.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_456.sh b/test/ntuple_qcd_200_300/batch/sge_456.sh deleted file mode 100755 index 673e19d45f0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_456.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=456 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_456.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_457.sh b/test/ntuple_qcd_200_300/batch/sge_457.sh deleted file mode 100755 index 81e240bf533..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_457.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=457 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_457.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_458.sh b/test/ntuple_qcd_200_300/batch/sge_458.sh deleted file mode 100755 index 399de1919d2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_458.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=458 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_458.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_459.sh b/test/ntuple_qcd_200_300/batch/sge_459.sh deleted file mode 100755 index 4d835e2b243..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_459.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=459 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_459.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_46.sh b/test/ntuple_qcd_200_300/batch/sge_46.sh deleted file mode 100755 index 6e3845d5102..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_460.sh b/test/ntuple_qcd_200_300/batch/sge_460.sh deleted file mode 100755 index 7f969803300..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_460.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=460 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_460.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_461.sh b/test/ntuple_qcd_200_300/batch/sge_461.sh deleted file mode 100755 index 13881489fa1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_461.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=461 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_461.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_462.sh b/test/ntuple_qcd_200_300/batch/sge_462.sh deleted file mode 100755 index 9f0791c5471..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_462.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=462 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_462.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_463.sh b/test/ntuple_qcd_200_300/batch/sge_463.sh deleted file mode 100755 index e7d4a6ceb8b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_463.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=463 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_463.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_464.sh b/test/ntuple_qcd_200_300/batch/sge_464.sh deleted file mode 100755 index 98028ec02ef..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_464.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=464 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_464.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_465.sh b/test/ntuple_qcd_200_300/batch/sge_465.sh deleted file mode 100755 index 9c350228c78..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_465.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=465 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_465.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_466.sh b/test/ntuple_qcd_200_300/batch/sge_466.sh deleted file mode 100755 index 822662dceb7..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_466.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=466 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_466.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_467.sh b/test/ntuple_qcd_200_300/batch/sge_467.sh deleted file mode 100755 index a59f552d68c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_467.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=467 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_467.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_468.sh b/test/ntuple_qcd_200_300/batch/sge_468.sh deleted file mode 100755 index 15c56b77c2e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_468.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=468 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_468.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_469.sh b/test/ntuple_qcd_200_300/batch/sge_469.sh deleted file mode 100755 index 4fcf675a876..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_469.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=469 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_469.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_47.sh b/test/ntuple_qcd_200_300/batch/sge_47.sh deleted file mode 100755 index f1803b7c908..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_470.sh b/test/ntuple_qcd_200_300/batch/sge_470.sh deleted file mode 100755 index 1682ae34336..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_470.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=470 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_470.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_471.sh b/test/ntuple_qcd_200_300/batch/sge_471.sh deleted file mode 100755 index 0f622652a0a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_471.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=471 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_471.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_472.sh b/test/ntuple_qcd_200_300/batch/sge_472.sh deleted file mode 100755 index c4c2e770752..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_472.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=472 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_472.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_473.sh b/test/ntuple_qcd_200_300/batch/sge_473.sh deleted file mode 100755 index 5b158c64400..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_473.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=473 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_473.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_474.sh b/test/ntuple_qcd_200_300/batch/sge_474.sh deleted file mode 100755 index 3e76b4263df..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_474.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=474 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_474.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_475.sh b/test/ntuple_qcd_200_300/batch/sge_475.sh deleted file mode 100755 index 42bc042f285..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_475.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=475 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_475.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_476.sh b/test/ntuple_qcd_200_300/batch/sge_476.sh deleted file mode 100755 index 8c0fc24d6b0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_476.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=476 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_476.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_477.sh b/test/ntuple_qcd_200_300/batch/sge_477.sh deleted file mode 100755 index 3b7b862923e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_477.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=477 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_477.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_478.sh b/test/ntuple_qcd_200_300/batch/sge_478.sh deleted file mode 100755 index 419e4bdca97..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_478.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=478 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_478.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_479.sh b/test/ntuple_qcd_200_300/batch/sge_479.sh deleted file mode 100755 index 1fc25a1f21b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_479.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=479 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_479.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_48.sh b/test/ntuple_qcd_200_300/batch/sge_48.sh deleted file mode 100755 index 70884b68cef..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_480.sh b/test/ntuple_qcd_200_300/batch/sge_480.sh deleted file mode 100755 index a63f3b7a937..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_480.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=480 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_480.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_481.sh b/test/ntuple_qcd_200_300/batch/sge_481.sh deleted file mode 100755 index 07797736e22..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_481.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=481 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_481.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_482.sh b/test/ntuple_qcd_200_300/batch/sge_482.sh deleted file mode 100755 index b89556c8e6b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_482.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=482 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_482.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_483.sh b/test/ntuple_qcd_200_300/batch/sge_483.sh deleted file mode 100755 index 55e4f978ced..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_483.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=483 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_483.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_484.sh b/test/ntuple_qcd_200_300/batch/sge_484.sh deleted file mode 100755 index aee8d0681e5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_484.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=484 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_484.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_485.sh b/test/ntuple_qcd_200_300/batch/sge_485.sh deleted file mode 100755 index dc30397749f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_485.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=485 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_485.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_486.sh b/test/ntuple_qcd_200_300/batch/sge_486.sh deleted file mode 100755 index 97451ed7030..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_486.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=486 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_486.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_487.sh b/test/ntuple_qcd_200_300/batch/sge_487.sh deleted file mode 100755 index 59c0db41e89..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_487.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=487 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_487.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_488.sh b/test/ntuple_qcd_200_300/batch/sge_488.sh deleted file mode 100755 index 8536348a636..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_488.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=488 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_488.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_489.sh b/test/ntuple_qcd_200_300/batch/sge_489.sh deleted file mode 100755 index 345671c728c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_489.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=489 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_489.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_49.sh b/test/ntuple_qcd_200_300/batch/sge_49.sh deleted file mode 100755 index 98f4725458d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_490.sh b/test/ntuple_qcd_200_300/batch/sge_490.sh deleted file mode 100755 index 6ba0633070b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_490.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=490 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_490.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_491.sh b/test/ntuple_qcd_200_300/batch/sge_491.sh deleted file mode 100755 index 51377658377..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_491.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=491 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_491.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_492.sh b/test/ntuple_qcd_200_300/batch/sge_492.sh deleted file mode 100755 index b873954f69b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_492.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=492 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_492.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_493.sh b/test/ntuple_qcd_200_300/batch/sge_493.sh deleted file mode 100755 index 4fb7a3dbd26..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_493.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=493 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_493.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_494.sh b/test/ntuple_qcd_200_300/batch/sge_494.sh deleted file mode 100755 index 415e1fe7904..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_494.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=494 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_494.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_495.sh b/test/ntuple_qcd_200_300/batch/sge_495.sh deleted file mode 100755 index 4a4499c2fa1..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_495.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=495 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_495.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_496.sh b/test/ntuple_qcd_200_300/batch/sge_496.sh deleted file mode 100755 index c70f82f07e3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_496.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=496 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_496.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_497.sh b/test/ntuple_qcd_200_300/batch/sge_497.sh deleted file mode 100755 index c45fa556c1d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_497.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=497 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_497.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_498.sh b/test/ntuple_qcd_200_300/batch/sge_498.sh deleted file mode 100755 index b8f2af3b713..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_498.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=498 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_498.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_499.sh b/test/ntuple_qcd_200_300/batch/sge_499.sh deleted file mode 100755 index e58a3e48462..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_499.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=499 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_499.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_5.sh b/test/ntuple_qcd_200_300/batch/sge_5.sh deleted file mode 100755 index 2ee4533b491..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_50.sh b/test/ntuple_qcd_200_300/batch/sge_50.sh deleted file mode 100755 index c9c5a7af691..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_51.sh b/test/ntuple_qcd_200_300/batch/sge_51.sh deleted file mode 100755 index 9fbf13406f9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_52.sh b/test/ntuple_qcd_200_300/batch/sge_52.sh deleted file mode 100755 index af28e44cc7c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_53.sh b/test/ntuple_qcd_200_300/batch/sge_53.sh deleted file mode 100755 index d1f3f3993f2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_54.sh b/test/ntuple_qcd_200_300/batch/sge_54.sh deleted file mode 100755 index 28529268039..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_55.sh b/test/ntuple_qcd_200_300/batch/sge_55.sh deleted file mode 100755 index d3606bac626..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_56.sh b/test/ntuple_qcd_200_300/batch/sge_56.sh deleted file mode 100755 index 0765fbe546a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_57.sh b/test/ntuple_qcd_200_300/batch/sge_57.sh deleted file mode 100755 index 0a6e53efd5d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_58.sh b/test/ntuple_qcd_200_300/batch/sge_58.sh deleted file mode 100755 index 84f3388726d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_59.sh b/test/ntuple_qcd_200_300/batch/sge_59.sh deleted file mode 100755 index 415f4cac991..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_6.sh b/test/ntuple_qcd_200_300/batch/sge_6.sh deleted file mode 100755 index bb33cdd0ebd..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_60.sh b/test/ntuple_qcd_200_300/batch/sge_60.sh deleted file mode 100755 index adffd9f3bb4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_61.sh b/test/ntuple_qcd_200_300/batch/sge_61.sh deleted file mode 100755 index ad6b983060a..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_62.sh b/test/ntuple_qcd_200_300/batch/sge_62.sh deleted file mode 100755 index df9b9d3fe31..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_63.sh b/test/ntuple_qcd_200_300/batch/sge_63.sh deleted file mode 100755 index e1e48c8d529..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_64.sh b/test/ntuple_qcd_200_300/batch/sge_64.sh deleted file mode 100755 index 8a92bf4c31f..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_65.sh b/test/ntuple_qcd_200_300/batch/sge_65.sh deleted file mode 100755 index eefdd4bdac5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_66.sh b/test/ntuple_qcd_200_300/batch/sge_66.sh deleted file mode 100755 index 423352ffca6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_67.sh b/test/ntuple_qcd_200_300/batch/sge_67.sh deleted file mode 100755 index 63dfbf87ff3..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_68.sh b/test/ntuple_qcd_200_300/batch/sge_68.sh deleted file mode 100755 index dc283b73df6..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_69.sh b/test/ntuple_qcd_200_300/batch/sge_69.sh deleted file mode 100755 index f7770f93533..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_7.sh b/test/ntuple_qcd_200_300/batch/sge_7.sh deleted file mode 100755 index aea510af2c0..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_70.sh b/test/ntuple_qcd_200_300/batch/sge_70.sh deleted file mode 100755 index 4d93b3d5635..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_71.sh b/test/ntuple_qcd_200_300/batch/sge_71.sh deleted file mode 100755 index ac0a9fb58fa..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_72.sh b/test/ntuple_qcd_200_300/batch/sge_72.sh deleted file mode 100755 index b659f7c7a2d..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_73.sh b/test/ntuple_qcd_200_300/batch/sge_73.sh deleted file mode 100755 index cc9165d4a45..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_74.sh b/test/ntuple_qcd_200_300/batch/sge_74.sh deleted file mode 100755 index 6ad84a5e2cc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_75.sh b/test/ntuple_qcd_200_300/batch/sge_75.sh deleted file mode 100755 index eed7d55ff99..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_76.sh b/test/ntuple_qcd_200_300/batch/sge_76.sh deleted file mode 100755 index 9618bf88306..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_77.sh b/test/ntuple_qcd_200_300/batch/sge_77.sh deleted file mode 100755 index 023f3a309c4..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_78.sh b/test/ntuple_qcd_200_300/batch/sge_78.sh deleted file mode 100755 index 723ab787eca..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_79.sh b/test/ntuple_qcd_200_300/batch/sge_79.sh deleted file mode 100755 index 31976ea53ab..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_8.sh b/test/ntuple_qcd_200_300/batch/sge_8.sh deleted file mode 100755 index cf7062d8449..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_80.sh b/test/ntuple_qcd_200_300/batch/sge_80.sh deleted file mode 100755 index 1ef4db130c9..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_81.sh b/test/ntuple_qcd_200_300/batch/sge_81.sh deleted file mode 100755 index 1d953f1abb8..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_82.sh b/test/ntuple_qcd_200_300/batch/sge_82.sh deleted file mode 100755 index f39674aa308..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_83.sh b/test/ntuple_qcd_200_300/batch/sge_83.sh deleted file mode 100755 index d54938cfa01..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_84.sh b/test/ntuple_qcd_200_300/batch/sge_84.sh deleted file mode 100755 index 3d5381638f2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_85.sh b/test/ntuple_qcd_200_300/batch/sge_85.sh deleted file mode 100755 index 9fb10cb118c..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_86.sh b/test/ntuple_qcd_200_300/batch/sge_86.sh deleted file mode 100755 index 2d9f646f1bb..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_87.sh b/test/ntuple_qcd_200_300/batch/sge_87.sh deleted file mode 100755 index 59e9375280b..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_88.sh b/test/ntuple_qcd_200_300/batch/sge_88.sh deleted file mode 100755 index 7e1a8a2d548..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_89.sh b/test/ntuple_qcd_200_300/batch/sge_89.sh deleted file mode 100755 index 84194143741..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_9.sh b/test/ntuple_qcd_200_300/batch/sge_9.sh deleted file mode 100755 index 8521187245e..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_90.sh b/test/ntuple_qcd_200_300/batch/sge_90.sh deleted file mode 100755 index b62083b1042..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_91.sh b/test/ntuple_qcd_200_300/batch/sge_91.sh deleted file mode 100755 index 0c91cd08119..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_92.sh b/test/ntuple_qcd_200_300/batch/sge_92.sh deleted file mode 100755 index 5f47cc5ba91..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_93.sh b/test/ntuple_qcd_200_300/batch/sge_93.sh deleted file mode 100755 index e57b8ec51ae..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_94.sh b/test/ntuple_qcd_200_300/batch/sge_94.sh deleted file mode 100755 index 6b7bf4807c2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_95.sh b/test/ntuple_qcd_200_300/batch/sge_95.sh deleted file mode 100755 index 2970e4b9eb5..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_96.sh b/test/ntuple_qcd_200_300/batch/sge_96.sh deleted file mode 100755 index c35ff988bf2..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_97.sh b/test/ntuple_qcd_200_300/batch/sge_97.sh deleted file mode 100755 index 688883c4392..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_98.sh b/test/ntuple_qcd_200_300/batch/sge_98.sh deleted file mode 100755 index a87160ca8cc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batch/sge_99.sh b/test/ntuple_qcd_200_300/batch/sge_99.sh deleted file mode 100755 index d03541c9cbc..00000000000 --- a/test/ntuple_qcd_200_300/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/batchscript.sh b/test/ntuple_qcd_200_300/batchscript.sh deleted file mode 100755 index 47cd8c09a57..00000000000 --- a/test/ntuple_qcd_200_300/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_200_300" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/condor.sub b/test/ntuple_qcd_200_300/condor.sub deleted file mode 100644 index 6956dc0145d..00000000000 --- a/test/ntuple_qcd_200_300/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT200to300TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ntuple_qcd_200_300_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 500 - \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/helper b/test/ntuple_qcd_200_300/helper deleted file mode 120000 index 75412861dd9..00000000000 --- a/test/ntuple_qcd_200_300/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_200_300/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/output b/test/ntuple_qcd_200_300/output deleted file mode 120000 index af529d9e9b8..00000000000 --- a/test/ntuple_qcd_200_300/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_200_300/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_200_300/sge_sub.sh b/test/ntuple_qcd_200_300/sge_sub.sh deleted file mode 100755 index d500c775a98..00000000000 --- a/test/ntuple_qcd_200_300/sge_sub.sh +++ /dev/null @@ -1,500 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_182.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_183.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_184.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_185.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_186.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_187.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_188.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_189.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_190.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_191.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_192.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_193.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_194.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_195.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_196.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_197.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_198.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_199.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_200.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_201.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_202.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_203.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_204.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_205.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_206.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_207.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_208.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_209.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_210.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_211.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_212.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_213.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_214.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_215.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_216.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_217.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_218.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_219.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_220.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_221.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_222.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_223.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_224.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_225.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_226.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_227.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_228.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_229.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_230.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_231.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_232.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_233.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_234.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_235.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_236.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_237.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_238.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_239.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_240.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_241.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_242.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_243.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_244.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_245.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_246.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_247.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_248.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_249.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_250.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_251.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_252.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_253.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_254.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_255.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_256.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_257.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_258.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_259.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_260.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_261.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_262.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_263.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_264.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_265.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_266.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_267.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_268.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_269.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_270.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_271.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_272.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_273.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_274.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_275.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_276.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_277.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_278.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_279.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_280.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_281.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_282.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_283.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_284.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_285.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_286.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_287.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_288.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_289.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_290.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_291.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_292.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_293.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_294.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_295.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_296.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_297.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_298.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_299.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_300.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_301.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_302.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_303.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_304.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_305.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_306.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_307.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_308.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_309.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_310.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_311.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_312.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_313.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_314.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_315.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_316.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_317.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_318.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_319.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_320.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_321.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_322.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_323.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_324.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_325.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_326.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_327.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_328.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_329.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_330.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_331.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_332.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_333.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_334.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_335.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_336.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_337.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_338.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_339.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_340.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_341.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_342.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_343.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_344.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_345.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_346.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_347.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_348.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_349.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_350.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_351.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_352.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_353.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_354.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_355.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_356.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_357.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_358.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_359.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_360.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_361.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_362.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_363.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_364.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_365.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_366.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_367.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_368.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_369.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_370.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_371.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_372.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_373.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_374.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_375.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_376.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_377.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_378.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_379.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_380.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_381.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_382.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_383.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_384.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_385.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_386.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_387.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_388.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_389.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_390.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_391.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_392.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_393.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_394.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_395.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_396.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_397.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_398.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_399.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_400.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_401.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_402.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_403.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_404.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_405.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_406.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_407.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_408.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_409.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_410.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_411.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_412.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_413.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_414.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_415.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_416.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_417.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_418.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_419.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_420.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_421.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_422.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_423.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_424.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_425.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_426.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_427.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_428.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_429.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_430.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_431.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_432.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_433.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_434.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_435.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_436.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_437.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_438.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_439.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_440.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_441.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_442.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_443.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_444.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_445.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_446.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_447.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_448.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_449.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_450.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_451.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_452.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_453.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_454.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_455.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_456.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_457.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_458.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_459.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_460.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_461.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_462.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_463.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_464.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_465.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_466.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_467.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_468.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_469.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_470.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_471.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_472.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_473.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_474.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_475.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_476.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_477.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_478.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_479.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_480.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_481.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_482.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_483.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_484.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_485.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_486.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_487.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_488.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_489.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_490.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_491.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_492.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_493.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_494.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_495.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_496.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_497.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_498.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_200_300/batch/sge_499.sh diff --git a/test/ntuple_qcd_300_500/ademoor.cc b/test/ntuple_qcd_300_500/ademoor.cc deleted file mode 100644 index f50ccd487bc12d8ae9a71f4b1e48b4a02fa70607..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai%WmJ@Hx5pW}WQLBRL!?JQ5b2WcP^4Rgp+RcsZV>4j8e!;=4yC(Oq(da6V~~UA zJnwVfSnHg<*7afk_ukjO*8TtTyD`vF{siE!gC#Aismd)a|BzytT3A9I9Gw5(D(XYW zpYu<%n6}PluGX&qERsJYpzmZ=CII1H1}~}wwd{sznS@-fSILyuh}~o3X1yL zL)+hh<6;_!;{XZ7vCTz81z^B&!2j5hM-8F+qoKlyA%x(+*8N@055y6An0of7g9!d- zG%pZ`6+IA#Y16~LY;NWr?Aj+$_Eol?e>!owU4l-dyJcJHMy%Ah$du&Or~cZk8~aH4 zK0QP{Ex%7ANz{iU^^E$K81K{g$G8VgJboL4$OL9B52|3uXQz|tU8E71aqsZG(BirD z3YFpd$D>$orNO|H9zZ%G3#ZA5cRehqwW0;h|AM8;IUT6!8p=^6fUElQO`6QwwOCx8XuCC45-$VPk0bjLCgY^L>LR6Ce zunyb53*8tI1{5ulFt1?qi^l?j8nU^!Vjq89mBR`2#SzVaj0ug zO>lyzLR`PBu(hodp38xbJ+P4dbCERq zdD?S^AD2UgiUhn@fP02Fgv_wIX2aj@S%f4{YjVw8H;t1&z#H*6Ezi3Jj_GDNytAOn zGD?#Lz zsS32F9VagDgc(voT*+$VthWe*MB9v1dW6Mf%kE%GkdU8pN~6(Z=Am$I%4%_Eu+8jG z!GH*@Zxy4Wqg~nW83JmShW37^QoqbM}Qln`=5-t?FLzGb5N# zpFAomSkApCoQp*@z$M}D1$K0yp`}>IiWwq}Ig)Kubns(#PM$UwoRrI%O-S-a^wtzC zv}oESytJ!5i?373Y{l9_{60$pg?el{pgaaWbJW?k+fTjVM3JJ=dDoBM-05C;#1au` zz*p|3bw~3FialYNE<;#)QcQiy1nu0>e~es(LeM?lrrP=K`(O})f1kz`n^qsI+e8a^ zyl%I377KH$Ln1#-?@itkXJo!-T(#}jJOzy5ngo@;v6_N<2KVT{5C}XSvZU}?`%s8^ zuI%b{aHta=Go8|b#+1Kr3~5s^FmyZ{dRKr=?>>*WSJd0k!97``4|)zD1s@zsjDeS_ zGUX_3qZ+N-^mkYYgd^CAX{cckJSL4Eb9+WGa=cD89gf=RsPCqT({QqH8VDRfS!!9{zCJ~l;q7HIER7RTdu^O<;YVH<8B5qU81(T8~- z#n7p`zFI0p_fBxewrd+|??|xNnz|W80JoJ7_tTNzAss%5dfjXIu%7*@sx#YX{OUGe z@#22;QKZJ#IJXhx#MejylXC2TL1aYB!5`7R2WtD+*f;K()yiVc;7G6 z9c2!Z33w0HRp_rDWWG(~^0nQpJwqiUDy$l_!NV>sBt{qP7{xvo%Z~aoN-ahTHdft1 zWM7kq=QJkumayv&#s|52rKs?d*KSPIkXUI88o#XUMy03AuAn=nn%UqAwWHI4uJ&oQTJ%bYQ$~{Wct1i`|@` zk<-JOnCi^}DRerk zFScBYW;2mSg6-si94T>P~ItTAENl#=W-A*=Xe5p=5O-dVe)%##fv@_ zWJgnq0S~Z^9d35~vBYDSGzL(7YuiGb+XQ1c1%16OMMSjUKn*~#rIGk$i#?dK^pwfF z2Hrmed(R;oHz)!mTLVU(g6T5i1#*qkF-z8kYSvio!bu&r=zwb6?en9c)gWtr&G>g& zB3Zfy&6@Kw7Zs2CTGNXYlv{;23Zsv_Wji!qImOes*?cFo&p*rW6+Ag$9*PWEPky0x z6q$vxH&u0TPb4qIOWMJsp>mqEsiZIo0=~OdanOi5=&m!wABE(Z%NRaJ>!UYlSdXG2 z8m7wVuII>;7yOI9{%<1u)AVo5hh}Q!@}OdwTRPiwo4-XNdPwLss|CP`&-&o7dClOcpbA^+D(n@ImzCrW zn$zh&td@!Tq^Ao==#Mf2aPcd9?_Ra=tFY)k?=^D(_xM-Cl^(h_V-L(l&t9bT1*x-N z1KO0ifE=#cw{{gbUP=UlVRt4tRaxtXxyKVVyg!0px8pDu!tUp<$qZccYblwW681+o z$^Ya<5j0w~U9?ElwcU6u7B6G!m6`IITFZif(fNlEL1x zb>aRO%l2CfPMw*`)jRvgw-Odj7)TJGo1}Sy&L}en$fG^AfBcVSDgVUm|6&zrU`~lsCukt!5rU^oHf=8=y zFYvg%t&dlSSFHRhi_%|J+BnIDMpksT@b;xi>WOuN$U$O*prvWX0l;$2zHh+n2Pv9M zcTx_y>C*oA1+W~Dsd1R+!lQ2|?oPB>hD6EPT8YvI`kH0|7g3PG!Cg8Mvnex_MKO^GNx;6Yk^Qx;d(y1+tzWGd;*?FNLaaC_#HuI(wP;*nz6K!3-f&B z%XXPZx)UMR`@P<>JDnl(M$eQ@o`!ubZWU4a8BX2D&f}i@9>00cR6DPbW^xWU(aACN$~a=xb=Ls*}9+JwWU>96m>M* z-;DNQxcZK|rG9G%Q!La=&^QAC=j5X48YXhcdMZD5Ck;@_YOy1hRbPdcy5r;#1kx1o zkX7QbjDxgnEY+>4{rW%oA%5yq5J_29Sgv{Gbe$G;ef83X{+gl44RP;VM?^ZjQ=1_|S*R}@t6}Nmk6wPssO zmo>g1{v$1#V!$0q9Fds8=z0kmQWi}mU>uFBqXxAO$&V7@+)&|WXlggas$6ril!W*p3)AxTzCnY?>GixRod1Nmt@EpC>2hU7Kp z6#3s@Gm8#P=jzP+?;wt{C9M@puf=nF)Cw|_HyG#UTB0&l#@k}+nD@1_nC)r7eEt?f z+XJdiu$lK1z-9x?tCO zhTCk4V2_}iPZ+k!W`_TO@<|SsXZCtf>NGV?zW@GZEWcVR`7t(@OXsaLj<-m6UrMIa zJx(o|h;!-TlVSoZs9y&|xRso$&<$HNCp`+^0=qkt?ys#Z>X2a2DvP(Dp_o*Qe6hY} zeHZ46%T(F-yP<*36y0yK?%j$^LK2)x=bSFmSb?9@@QvKC?^(sfz&#}5pJR}Hw9S2I zC+Y)Uy&g~6ImV}?`+Y<`e=Xo!s#6X~?CH)nfIIF!{ddhh>H_DAe%^a1#{MuN4Ai`Sh|$@(n{j{_4%YG(@5 zDnqT%Pa;TSFd^TY*oB92zlS|fk%*J%eZw|=UDE_K0X?-;QDSlmhLU~bju4DBWJMLD zG8uFm_s@(YPy0o^^ezvehnl>$8bp}qVsa3#%7rcx4|}u|rrX^~tR%TgiXk7qTz+Z1 z1Vv#p6(QE4VAFgQDpjWgS*YnT;tJTs$mV?dO9WLq;ec9+lQNs6&+>kN49n%qmF0|^ zk@+aySl5QtIvk+sg0liT&DFyKL zO9TGUl1MW3NlX3^Y0^Fa(~%A%M_%Z8OA*s;hp+0IkXNrVy-e~Z_Yh@~w1C?XK#VHl zM(Nrh^n4A9cTLC$b0oiJ+KPW!Eo7%A3+S%aFgi_O)qMpdi=bTwB4@(+cSFbhacDk? zw7@E<#n;qx1x>Ems$Lc;>2lTnlDR{>Pwt-_cX({~@PnT-$`DT|=0K>;kX)f`l{=Yz zpVcwA;F}NQn+fyekwDTHt@EN0sk;w?d;yE+M=|IwZ0!a1vI8aWH#=U&d``rvdvjl= zhI@GIb6s=aah8tJgQo)@Y-ukdXcT)hZ?@WYdj&JBB0e#0O_!Fh0rb0Q@`|}J%22}d zh}9Z%Nv^0}>?oB3KAa`lXjtQjsQnCSEq|-&Enw15m<@e7OIY#krd5;Kv`7NzEr8jL zJ#?YXeU`Q$xSqFeVk4Ce>IUiIRvX5JZ9kV|>4iV+xbk;hVe&zBHlr zNaD8GAL^3dh%gZnLXSPv=S9Yi8#Mpmp^v3a9Le@1aLGu;AiF?KC1W!d+)3C<{Dqm~ z7!k}3O}h*`JoSC zd+(z7YNI|Dl`b+`Yi`nAYlPrBlFu(-L>E6G>LU z=y^#*Mq=f3WQEZFFow_mwP%qR)-J=~CT_AytZOrKB1>acYpBAi!06=+>{f "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_300_500" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/condor.sub b/test/ntuple_qcd_300_500/condor.sub deleted file mode 100644 index 11623b0127a..00000000000 --- a/test/ntuple_qcd_300_500/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT300to500TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_300_500/output/ntuple_qcd_300_500_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 500 - \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/helper b/test/ntuple_qcd_300_500/helper deleted file mode 120000 index 56900fd2962..00000000000 --- a/test/ntuple_qcd_300_500/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_300_500/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/output b/test/ntuple_qcd_300_500/output deleted file mode 120000 index bf8293fa9cf..00000000000 --- a/test/ntuple_qcd_300_500/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_300_500/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_300_500/sge_sub.sh b/test/ntuple_qcd_300_500/sge_sub.sh deleted file mode 100755 index d010e1c3ba2..00000000000 --- a/test/ntuple_qcd_300_500/sge_sub.sh +++ /dev/null @@ -1,500 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_182.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_183.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_184.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_185.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_186.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_187.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_188.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_189.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_190.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_191.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_192.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_193.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_194.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_195.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_196.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_197.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_198.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_199.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_200.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_201.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_202.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_203.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_204.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_205.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_206.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_207.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_208.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_209.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_210.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_211.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_212.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_213.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_214.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_215.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_216.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_217.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_218.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_219.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_220.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_221.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_222.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_223.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_224.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_225.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_226.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_227.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_228.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_229.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_230.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_231.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_232.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_233.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_234.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_235.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_236.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_237.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_238.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_239.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_240.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_241.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_242.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_243.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_244.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_245.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_246.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_247.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_248.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_249.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_250.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_251.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_252.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_253.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_254.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_255.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_256.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_257.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_258.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_259.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_260.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_261.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_262.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_263.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_264.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_265.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_266.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_267.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_268.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_269.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_270.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_271.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_272.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_273.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_274.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_275.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_276.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_277.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_278.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_279.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_280.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_281.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_282.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_283.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_284.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_285.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_286.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_287.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_288.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_289.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_290.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_291.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_292.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_293.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_294.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_295.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_296.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_297.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_298.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_299.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_300.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_301.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_302.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_303.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_304.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_305.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_306.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_307.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_308.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_309.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_310.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_311.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_312.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_313.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_314.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_315.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_316.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_317.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_318.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_319.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_320.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_321.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_322.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_323.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_324.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_325.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_326.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_327.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_328.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_329.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_330.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_331.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_332.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_333.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_334.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_335.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_336.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_337.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_338.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_339.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_340.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_341.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_342.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_343.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_344.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_345.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_346.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_347.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_348.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_349.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_350.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_351.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_352.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_353.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_354.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_355.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_356.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_357.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_358.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_359.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_360.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_361.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_362.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_363.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_364.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_365.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_366.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_367.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_368.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_369.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_370.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_371.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_372.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_373.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_374.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_375.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_376.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_377.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_378.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_379.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_380.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_381.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_382.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_383.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_384.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_385.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_386.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_387.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_388.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_389.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_390.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_391.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_392.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_393.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_394.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_395.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_396.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_397.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_398.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_399.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_400.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_401.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_402.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_403.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_404.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_405.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_406.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_407.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_408.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_409.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_410.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_411.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_412.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_413.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_414.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_415.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_416.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_417.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_418.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_419.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_420.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_421.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_422.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_423.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_424.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_425.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_426.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_427.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_428.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_429.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_430.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_431.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_432.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_433.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_434.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_435.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_436.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_437.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_438.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_439.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_440.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_441.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_442.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_443.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_444.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_445.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_446.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_447.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_448.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_449.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_450.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_451.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_452.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_453.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_454.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_455.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_456.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_457.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_458.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_459.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_460.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_461.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_462.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_463.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_464.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_465.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_466.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_467.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_468.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_469.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_470.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_471.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_472.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_473.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_474.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_475.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_476.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_477.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_478.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_479.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_480.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_481.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_482.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_483.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_484.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_485.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_486.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_487.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_488.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_489.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_490.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_491.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_492.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_493.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_494.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_495.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_496.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_497.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_498.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_300_500/batch/sge_499.sh diff --git a/test/ntuple_qcd_500_700/ademoor.cc b/test/ntuple_qcd_500_700/ademoor.cc deleted file mode 100644 index ec83192d3aecaa9406fceed4944eb1ffc139e0e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai$Ra6|>l7_pXaVNpu-KB8}Zb{ID;7)L9G`KsB1a~JuAkaW?cMa~rC82@ffhJ5c zbMBct_pX_#we~~(Rkdrc{l9!DAi$ph{&mpg6ttdm%PId((abEZ9G#ur{@*In?~Xs` zpJq|*-OM32kbf3Qekb@}iR(;(%9{psd#Rb8(|CF27JEVF7DvM7R?36scK!gs%dOvS ze+P!USqO$RZwQ8c0WuO0r4WPSA3KUDdCC81NQF;$2`K(r_jk281Vi-ql+d3J!ookJ zMIjh0pb!j(U2mtV#ra1H$dF7`ze1znT=H6{42@=Q+rHYJRHaFo+0$1ah8uG4oMM!R z^lPBhf_}|UV^dCFW;eFQzq^1kW5Qc_0(V9cNsQXw5hX*n_@-rSN&@iX6*_E_2n7;T~%ZnPie_m)+MP|@L8(^76@xLH%e1$NW&+k9U%kt zndKjuO6D{P8l`~&gV$(u2&-Y(!uy8q>>TJx8t4gWgoidXd?O<5C)YXPOdkPyuV)Vny^m&oby#kmJn1YRX7rkEJ_RQO~|)z|nYk zF5I4Zmb`WlX+*{gA#O;t*&_&*>@e0C5SLP@dhl1{4L?>=n~a;Xh$!SH`y}l~@pj=D z92~8^{&7-rvM0}rF1UV`ke{$s5ni-L?qtPW?fP#I_A$!7px#J}3k6eFLu|$&1H4AspB%DWYit54lVADFE*IGaSbBZ}yEHk? zr|bJWFgH^3YOYRe<}rtdWNP^DgshrC8FMPmtroNL2Q6Lb&n1UEJl2H}>J)~jEim0A zet&NLrm#b4FktyTgQ?Sns(&F2BdGce*||2?<{Ag%@p(%daM#Gr9v5<6+y6fKT%0;A zptVG)l1LaMN@%M93k7>>j=tQ6!cPfuusIwweJvYb61Biyoj==isDNL{RA^hqijP`z zDR@dBSTmAg+F*q6i6raur*vL&GH$rjgT*wpa7(G8I3b<* z+C%$+>VqTt7o#kBg39x9$_oa^?gIm6#HJ%J$lEr50S>0QVS#otYMJ5&sfTrS7#O3-ONm#~h?2AjILXDSTvMSw&U@H3eyiZ${a zB{KWCrjU?T;~sY`vD%y#f0fId-14uIdP4TN6MSd1?U5OTvq_Wf!p`6JtGVq+2Ke+7 zCN5m^p~MfWuEJDWWcI7P6|x%TL`N*~M189sx7Bv+(pYrGd%DCLwJd-Dys=iL=6n`Y z+9KQ;tTk3V*=-`u)Sg)or|am7lgtpCDlL=aU_X<~S*OK3R9gHkHy$BL7#>c_lAmhC zENrNOT-CFiB6}awfiyS~Cbjj_oL3mLT>$gLY2XPBHa_LH@Aye0`)yr!p5OHCeX;8G z<0MXuWX@#Jk#Kg^xtbz1oEtWCL$W0Qd*JC|$IU zblY2_5RZkRWBz@Q!_EeH{K@X~XcRWrvb=y9N4(fY`r#HO_La|5M`KO7_JyP6mF^9g zKa(PKI(aCkphHOC3LGdSox{C)%+1^59dsMN<869u6?e>f5`8hL??F^`X(hUn`95#6 z33gaU&{Qb+()RE@alV~Lb)OH4e|Iiluo1Xyy&Je85vS_H>cW*ozG6RG#aOkZ6+G!P zeVlEK;eY|r+@?TJ^0yz$8va&V~evVx zj;CJ=2gq+DetaViXqi@S=w%rgtC-MW(Od`{cW--Ye9ewh?q|8?Vj!>9W~}nox;K=# zKW%(bb4Gs^y%9b=$~E|m94l?>&h!NWEpu7(hqc3`++5YIm zxp8&dj^>OVYWWblQWq>^l*q7)sw0}DsU#-TN3Z3UhvT-d)SeAI&z&~%88$lb$43Ju z#wXn-$SEz38_!1Q6w|n@QT&wzP->m7ixw-+mVNwsTuaMumZ0c9ioh8f;v-0M*3oO} zmmiqE5FScpMEGxTb1tS|flKG&0`^$(D2isp4OU*OMRk#uy@|5C)w`Q|ez#2IIF~z= zQ2mT*H!Yr8(>aTRxwwwm^lA>(r4e zZJfIRnC=w~H%!@haC8&ryMrJ!>4a6y5kNpgM?`A}IGz(6@Xks?Lg$U6A$~$-40hGZ0IC8lS=yoD zyKmsZE8d+ufbi435n~^4mb`R{QuAE=s!iz&8?;XG)Gm7v@Dt|#)oJKvsEwc&)Gk*d zSI@9jYia)aBhFBJR(X!UVMZKC+K<+`R6T%kk)LH zd2uQJ?56m~=HlQz-r()O*$=HKcpely6A^B%-GpR0<$3OFYQ)n*wd25%N3nwaTubkX z$N@yOBxgI~yU&%{V)6pU<D{;#*g_6zJ)?>_gchn3*K6C(y4IS+G!IJ#`Br#uHO=9xCecO^csx<*)9Z`QDOZ%? zu&-#oP#RnRF5M-8D)DCC#aqT%3TW8^GxPcDlm2g`{#5_PC{%AZXJ?4z?*gusv%7_( zJNN&vj9SOj6>a(5Bu(V4$D^Ft(6%g8JJZ;&8umzfz@Fet{a=@fMAB$JO2arkPde z)%#slW*PZ9Ybf6RYbD;ktS;-|jc}(-Kkb*22tC#?D2&m#u?7&N_2p?9`XKXgx$3TU z;wPa)SYHDTcI;b94b)&7SZ)UCx6xNb4B}~$ZKqa^vLO89)ThGDHQWBX^P@4W6jmdN z!J>;{dmUt8x6R`;!3mp)@~(g+>DH-dZFOfUSBgs=Plb2t`eTvjME2ROsAK6YPJ4@| zk6xAW3@C&a5IJq@D`dXa#!#^)GF@o`gGjW@?P~o)-;v12c@IljhM|mtJ+;qz2`VzD{*tv+|FC{49aD~7_c|wr}dCsDEMFNvTR=SiZDNg$xghhBlDANFJ=EID6L`nm7?h;jXN-`Er@EC?Rr z(U#Y4ydKd&PRxc3(bgnuW1raPEcN&iEMy&xqWY3YmGh2|q;GB`tG;_^nFTOpjiu3w zvi_B?;^x725~g@$KkEiw?_`&=tGIj4t49r*=cA2}kyRwxT0ptW5+G$$GUwbBnb1Mv zmPo|0>FgjF+5EY`={#QBt5a8g#e2Y!Tghf$HMn0nyyoxIDZ)FJ_klB^PLv+~+h@jCzibT66rw+XTRm)u1P|^R#feHhQhRW3 zex#7NG>`IlVRxL#j=Y+g`dSR}vIt%yo6aDP(6dS!o8Aflg`6?v3UR%9O(O%Jr(|2I zqoyJx6yRZi#SP3vK{~>Lqab6RHm*$^wNyaC!Al zKh?u?)95|DastPX#12&wf4RJtCDMApF1I*@6Fy#&-e^913yL0WL%c-yZ!hyY*ZQU- z#6w_6m&)`Jn2g_fr8JKb7#N}KPo7O!wuNOGD_u%VzSUp+#h2b$4nZ5rdo_L!5_Qv= z@o5*;2cIAzjw9<`CE7asnv1T-E+=3^GTcQbTnSb?ecmAXWp?oy9IONtRT+6`{1G}1 zdV5<|T~&CCxB!6t-07Ql0~W$~JbHgEPF1B*p~^p&)vR6W9DFs%yZ)1T*Ei?gMwV@c z>S&MZ%{w}oF@s?S2P#7=1ezwljOvzkw@U2K@wjCdYnl?P!1My5QTC1UO?G{}?HlZS z`p%Cg3#i|LekeZohHZzuX3t9033pZ8 zlv|KVnl@r{i?An*LP%^2&8XYpo z!>OJ#YpcD&Df-|E5C5KjjmFo)EUiF|sNdsHN5;sAYzx55H@t38sm3zwVtm~=Cyo3| zcj%;}EszOWBRhB<@hp^zmOs2gI392xTNnq z!K_4qwA24aw~3aLxNp~ssB3jD`KNGV{Gv7w)Q&T1yVWsX+&Tf#=~T6yo5dJ1k-tB* zpN@?BX&FT%7+y8>o|#e&lq|ub04G<9^?;u~dv0+MbsQ**2PDZ<>Zb~m>wEYyrHei zbXkbz%~oJ3>kC&eq>-igqDvLav=toJ5bW>z>O!-aTGj3VHGZ)~SYbV6*`jj~z6aAZ zc>w7?X}U&dmXsCtqL~mp`S5M!=K9E+xnd)CNiI-F*8sKoL&t>~s|u@L4Y1THmZLB6 z3oD^0XF|ewubxo8vtCr_wGs>b`Sv;uJjJ4!xwyXSUgP7&^5t;lo9?T`&}`7? zS($HUrUAYrvI-sdCVs`EURlsuXL-~;`$cw)1?ZF0HS@_-jl7OU`%~_*~U0xv7|;Q$DQxLCCK_(q4LA%p{ndOTXykm$^<@svr=7q^$)c zD%DGGp&ZC_p#FN5)uVQg8Z0~Y5jnGE>t4OUTI~KFnJ#a`Qn>Se3rD!z$^a>;Sw2Ez zHUt-wBn=1YsLW&NZNa8UQ2$&;B5oA^gw-(Fz=J6>V`(PFxS>=g{u}1Y`SdgtpW-B= zVzSER?V?XNw<7zaG=30Ye5_NrA&|CD+6xn@+c6M2#$8E8VKl&1Cf@u_F6^5>RPG_< zD=LIjG~oPapCPFJJk32LB|PNE{5~Jf6i;^BYLaQ3g^63wB>fY5r=|QFJ6YRgS*Q@P z!_9F*OsCMywR$rXH%iho;OCZPyl-S0dORXC>=!Qpy`U;;dd9MxlA)LRy@3U1N!|RQ zz;yL)33~+!XfUj<6Eyhp=?X4H!j{-Nqr>Dl6ng3YLNKdfsQ+*YjmyW~$DdHAA+G-( zU9a^y!UteT8A^Kw)k!7aHNUp;Rj4UcB;#MOTW;%Kdz4AS0J)IFUeGq-`yH3kFi;j@ SQBFj$iY}A87D@jh#s2^^zCNY^ diff --git a/test/ntuple_qcd_500_700/batch/condor_0.sub b/test/ntuple_qcd_500_700/batch/condor_0.sub deleted file mode 100644 index 7d0060bca0b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_1.sub b/test/ntuple_qcd_500_700/batch/condor_1.sub deleted file mode 100644 index 4bdee91d617..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_10.sub b/test/ntuple_qcd_500_700/batch/condor_10.sub deleted file mode 100644 index 82ccdc44ed7..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_100.sub b/test/ntuple_qcd_500_700/batch/condor_100.sub deleted file mode 100644 index c42a635c01e..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_101.sub b/test/ntuple_qcd_500_700/batch/condor_101.sub deleted file mode 100644 index a58b0af9989..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_102.sub b/test/ntuple_qcd_500_700/batch/condor_102.sub deleted file mode 100644 index c9833572ad0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_103.sub b/test/ntuple_qcd_500_700/batch/condor_103.sub deleted file mode 100644 index 7877ca81eba..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_104.sub b/test/ntuple_qcd_500_700/batch/condor_104.sub deleted file mode 100644 index e477eed7dcd..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_105.sub b/test/ntuple_qcd_500_700/batch/condor_105.sub deleted file mode 100644 index 3cfc23a512b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_106.sub b/test/ntuple_qcd_500_700/batch/condor_106.sub deleted file mode 100644 index fe21822d90f..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_107.sub b/test/ntuple_qcd_500_700/batch/condor_107.sub deleted file mode 100644 index a9aa3d0d9bb..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_108.sub b/test/ntuple_qcd_500_700/batch/condor_108.sub deleted file mode 100644 index db6516cd566..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_109.sub b/test/ntuple_qcd_500_700/batch/condor_109.sub deleted file mode 100644 index 02dd19faad0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_11.sub b/test/ntuple_qcd_500_700/batch/condor_11.sub deleted file mode 100644 index f9216a93eaa..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_110.sub b/test/ntuple_qcd_500_700/batch/condor_110.sub deleted file mode 100644 index 862fce92c6e..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_111.sub b/test/ntuple_qcd_500_700/batch/condor_111.sub deleted file mode 100644 index 3fe2c28bc4f..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_112.sub b/test/ntuple_qcd_500_700/batch/condor_112.sub deleted file mode 100644 index 54c028c17e6..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_113.sub b/test/ntuple_qcd_500_700/batch/condor_113.sub deleted file mode 100644 index aeecbf11b5e..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_114.sub b/test/ntuple_qcd_500_700/batch/condor_114.sub deleted file mode 100644 index 5c4cc91e640..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_115.sub b/test/ntuple_qcd_500_700/batch/condor_115.sub deleted file mode 100644 index 6426d84452d..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_116.sub b/test/ntuple_qcd_500_700/batch/condor_116.sub deleted file mode 100644 index 0cd5fd4c7f0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_117.sub b/test/ntuple_qcd_500_700/batch/condor_117.sub deleted file mode 100644 index 5da1d1371af..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_12.sub b/test/ntuple_qcd_500_700/batch/condor_12.sub deleted file mode 100644 index 71001630255..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_13.sub b/test/ntuple_qcd_500_700/batch/condor_13.sub deleted file mode 100644 index 6e7f3937b4c..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_14.sub b/test/ntuple_qcd_500_700/batch/condor_14.sub deleted file mode 100644 index fcf98ce2d66..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_15.sub b/test/ntuple_qcd_500_700/batch/condor_15.sub deleted file mode 100644 index 2b98c40721d..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_16.sub b/test/ntuple_qcd_500_700/batch/condor_16.sub deleted file mode 100644 index 39690b386ae..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_17.sub b/test/ntuple_qcd_500_700/batch/condor_17.sub deleted file mode 100644 index 8e50d6a05ec..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_18.sub b/test/ntuple_qcd_500_700/batch/condor_18.sub deleted file mode 100644 index 83e75cdecaf..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_19.sub b/test/ntuple_qcd_500_700/batch/condor_19.sub deleted file mode 100644 index f92739b1993..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_2.sub b/test/ntuple_qcd_500_700/batch/condor_2.sub deleted file mode 100644 index 79ce4ba7359..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_20.sub b/test/ntuple_qcd_500_700/batch/condor_20.sub deleted file mode 100644 index b8779e73860..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_21.sub b/test/ntuple_qcd_500_700/batch/condor_21.sub deleted file mode 100644 index 57b5105de8f..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_22.sub b/test/ntuple_qcd_500_700/batch/condor_22.sub deleted file mode 100644 index e9c9a3f7cbf..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_23.sub b/test/ntuple_qcd_500_700/batch/condor_23.sub deleted file mode 100644 index 6924bcfff2a..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_24.sub b/test/ntuple_qcd_500_700/batch/condor_24.sub deleted file mode 100644 index dd63c1f571b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_25.sub b/test/ntuple_qcd_500_700/batch/condor_25.sub deleted file mode 100644 index 04cbbee8cd0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_26.sub b/test/ntuple_qcd_500_700/batch/condor_26.sub deleted file mode 100644 index 0f81fb290f2..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_27.sub b/test/ntuple_qcd_500_700/batch/condor_27.sub deleted file mode 100644 index 688ccdcbaf6..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_28.sub b/test/ntuple_qcd_500_700/batch/condor_28.sub deleted file mode 100644 index 8f50dbdcf52..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_29.sub b/test/ntuple_qcd_500_700/batch/condor_29.sub deleted file mode 100644 index 821b37a663b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_3.sub b/test/ntuple_qcd_500_700/batch/condor_3.sub deleted file mode 100644 index 5c380313957..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_30.sub b/test/ntuple_qcd_500_700/batch/condor_30.sub deleted file mode 100644 index 47eba72a64e..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_31.sub b/test/ntuple_qcd_500_700/batch/condor_31.sub deleted file mode 100644 index 323b0a60822..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_32.sub b/test/ntuple_qcd_500_700/batch/condor_32.sub deleted file mode 100644 index c747076a3b3..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_33.sub b/test/ntuple_qcd_500_700/batch/condor_33.sub deleted file mode 100644 index 6ce1d55795a..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_34.sub b/test/ntuple_qcd_500_700/batch/condor_34.sub deleted file mode 100644 index f94a9781fa7..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_35.sub b/test/ntuple_qcd_500_700/batch/condor_35.sub deleted file mode 100644 index 077e171647b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_36.sub b/test/ntuple_qcd_500_700/batch/condor_36.sub deleted file mode 100644 index 807e5bc2e80..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_37.sub b/test/ntuple_qcd_500_700/batch/condor_37.sub deleted file mode 100644 index 8cc4d07cd80..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_38.sub b/test/ntuple_qcd_500_700/batch/condor_38.sub deleted file mode 100644 index 17e5f391524..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_39.sub b/test/ntuple_qcd_500_700/batch/condor_39.sub deleted file mode 100644 index 9abb717215d..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_4.sub b/test/ntuple_qcd_500_700/batch/condor_4.sub deleted file mode 100644 index 1158c94a707..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_40.sub b/test/ntuple_qcd_500_700/batch/condor_40.sub deleted file mode 100644 index 3418b12071d..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_41.sub b/test/ntuple_qcd_500_700/batch/condor_41.sub deleted file mode 100644 index a57e4e85f79..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_42.sub b/test/ntuple_qcd_500_700/batch/condor_42.sub deleted file mode 100644 index 5e3598ed746..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_43.sub b/test/ntuple_qcd_500_700/batch/condor_43.sub deleted file mode 100644 index 6d9d16392f7..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_44.sub b/test/ntuple_qcd_500_700/batch/condor_44.sub deleted file mode 100644 index 9be64681540..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_45.sub b/test/ntuple_qcd_500_700/batch/condor_45.sub deleted file mode 100644 index deccb364a2a..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_46.sub b/test/ntuple_qcd_500_700/batch/condor_46.sub deleted file mode 100644 index dec9401ba63..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_47.sub b/test/ntuple_qcd_500_700/batch/condor_47.sub deleted file mode 100644 index 91f600019e9..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_48.sub b/test/ntuple_qcd_500_700/batch/condor_48.sub deleted file mode 100644 index 1c674c0e114..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_49.sub b/test/ntuple_qcd_500_700/batch/condor_49.sub deleted file mode 100644 index cd58efd5418..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_5.sub b/test/ntuple_qcd_500_700/batch/condor_5.sub deleted file mode 100644 index 6fc34c1e8ce..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_50.sub b/test/ntuple_qcd_500_700/batch/condor_50.sub deleted file mode 100644 index 122f182fad2..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_51.sub b/test/ntuple_qcd_500_700/batch/condor_51.sub deleted file mode 100644 index 2a1ff395e95..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_52.sub b/test/ntuple_qcd_500_700/batch/condor_52.sub deleted file mode 100644 index 0121acebd66..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_53.sub b/test/ntuple_qcd_500_700/batch/condor_53.sub deleted file mode 100644 index 7628a895665..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_54.sub b/test/ntuple_qcd_500_700/batch/condor_54.sub deleted file mode 100644 index cc78b0c236e..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_55.sub b/test/ntuple_qcd_500_700/batch/condor_55.sub deleted file mode 100644 index abd897ea6e0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_56.sub b/test/ntuple_qcd_500_700/batch/condor_56.sub deleted file mode 100644 index bf6a38b6782..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_57.sub b/test/ntuple_qcd_500_700/batch/condor_57.sub deleted file mode 100644 index 86d2f6e2853..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_58.sub b/test/ntuple_qcd_500_700/batch/condor_58.sub deleted file mode 100644 index 6511611623b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_59.sub b/test/ntuple_qcd_500_700/batch/condor_59.sub deleted file mode 100644 index b7dadd38956..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_6.sub b/test/ntuple_qcd_500_700/batch/condor_6.sub deleted file mode 100644 index 624038cf5a9..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_60.sub b/test/ntuple_qcd_500_700/batch/condor_60.sub deleted file mode 100644 index c5495819c3b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_61.sub b/test/ntuple_qcd_500_700/batch/condor_61.sub deleted file mode 100644 index 55019d54fcb..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_62.sub b/test/ntuple_qcd_500_700/batch/condor_62.sub deleted file mode 100644 index e330758ad92..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_63.sub b/test/ntuple_qcd_500_700/batch/condor_63.sub deleted file mode 100644 index 948639b5b66..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_64.sub b/test/ntuple_qcd_500_700/batch/condor_64.sub deleted file mode 100644 index 776c7d15690..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_65.sub b/test/ntuple_qcd_500_700/batch/condor_65.sub deleted file mode 100644 index c9bf35e89bf..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_66.sub b/test/ntuple_qcd_500_700/batch/condor_66.sub deleted file mode 100644 index 2642e6d6818..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_67.sub b/test/ntuple_qcd_500_700/batch/condor_67.sub deleted file mode 100644 index a3219c8e488..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_68.sub b/test/ntuple_qcd_500_700/batch/condor_68.sub deleted file mode 100644 index a096a3991fd..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_69.sub b/test/ntuple_qcd_500_700/batch/condor_69.sub deleted file mode 100644 index ea4ad2da756..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_7.sub b/test/ntuple_qcd_500_700/batch/condor_7.sub deleted file mode 100644 index 68582a33573..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_70.sub b/test/ntuple_qcd_500_700/batch/condor_70.sub deleted file mode 100644 index 9532d3bff72..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_71.sub b/test/ntuple_qcd_500_700/batch/condor_71.sub deleted file mode 100644 index b77731b8d0c..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_72.sub b/test/ntuple_qcd_500_700/batch/condor_72.sub deleted file mode 100644 index 7a559a42943..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_73.sub b/test/ntuple_qcd_500_700/batch/condor_73.sub deleted file mode 100644 index b08f5a55586..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_74.sub b/test/ntuple_qcd_500_700/batch/condor_74.sub deleted file mode 100644 index 7cf0e7d2efb..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_75.sub b/test/ntuple_qcd_500_700/batch/condor_75.sub deleted file mode 100644 index 9bf9e5481b9..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_76.sub b/test/ntuple_qcd_500_700/batch/condor_76.sub deleted file mode 100644 index affa4a974b7..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_77.sub b/test/ntuple_qcd_500_700/batch/condor_77.sub deleted file mode 100644 index 5116796686b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_78.sub b/test/ntuple_qcd_500_700/batch/condor_78.sub deleted file mode 100644 index f99597ce841..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_79.sub b/test/ntuple_qcd_500_700/batch/condor_79.sub deleted file mode 100644 index a72224ec7af..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_8.sub b/test/ntuple_qcd_500_700/batch/condor_8.sub deleted file mode 100644 index 557fb0de8d0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_80.sub b/test/ntuple_qcd_500_700/batch/condor_80.sub deleted file mode 100644 index 253e8051412..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_81.sub b/test/ntuple_qcd_500_700/batch/condor_81.sub deleted file mode 100644 index 2a9b657a41a..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_82.sub b/test/ntuple_qcd_500_700/batch/condor_82.sub deleted file mode 100644 index 99bf3180936..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_83.sub b/test/ntuple_qcd_500_700/batch/condor_83.sub deleted file mode 100644 index 78a20d53d40..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_84.sub b/test/ntuple_qcd_500_700/batch/condor_84.sub deleted file mode 100644 index 8a4cf8ddf2b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_85.sub b/test/ntuple_qcd_500_700/batch/condor_85.sub deleted file mode 100644 index a8e49bdbbee..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_86.sub b/test/ntuple_qcd_500_700/batch/condor_86.sub deleted file mode 100644 index b9ba7bc60b4..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_87.sub b/test/ntuple_qcd_500_700/batch/condor_87.sub deleted file mode 100644 index e11590231f3..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_88.sub b/test/ntuple_qcd_500_700/batch/condor_88.sub deleted file mode 100644 index d671dcf09d0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_89.sub b/test/ntuple_qcd_500_700/batch/condor_89.sub deleted file mode 100644 index 9b9ac0520d0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_9.sub b/test/ntuple_qcd_500_700/batch/condor_9.sub deleted file mode 100644 index 99af758c2ce..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_90.sub b/test/ntuple_qcd_500_700/batch/condor_90.sub deleted file mode 100644 index 70e3ffb3da0..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_91.sub b/test/ntuple_qcd_500_700/batch/condor_91.sub deleted file mode 100644 index 1e952cfe040..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_92.sub b/test/ntuple_qcd_500_700/batch/condor_92.sub deleted file mode 100644 index d4c5e59e19b..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_93.sub b/test/ntuple_qcd_500_700/batch/condor_93.sub deleted file mode 100644 index a8472cee870..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_94.sub b/test/ntuple_qcd_500_700/batch/condor_94.sub deleted file mode 100644 index 69628921ecc..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_95.sub b/test/ntuple_qcd_500_700/batch/condor_95.sub deleted file mode 100644 index d7d5baa1322..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_96.sub b/test/ntuple_qcd_500_700/batch/condor_96.sub deleted file mode 100644 index 61324a586db..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_97.sub b/test/ntuple_qcd_500_700/batch/condor_97.sub deleted file mode 100644 index 9ee1d4877ef..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_98.sub b/test/ntuple_qcd_500_700/batch/condor_98.sub deleted file mode 100644 index 6454e45bd31..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/condor_99.sub b/test/ntuple_qcd_500_700/batch/condor_99.sub deleted file mode 100644 index 746804b0771..00000000000 --- a/test/ntuple_qcd_500_700/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/nJobs.118 b/test/ntuple_qcd_500_700/batch/nJobs.118 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_500_700/batch/sge_0.sh b/test/ntuple_qcd_500_700/batch/sge_0.sh deleted file mode 100755 index 90cbb8899c9..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_1.sh b/test/ntuple_qcd_500_700/batch/sge_1.sh deleted file mode 100755 index 052d8f9c33c..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_10.sh b/test/ntuple_qcd_500_700/batch/sge_10.sh deleted file mode 100755 index bbd904814e5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_100.sh b/test/ntuple_qcd_500_700/batch/sge_100.sh deleted file mode 100755 index 600fe43017d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=100 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_101.sh b/test/ntuple_qcd_500_700/batch/sge_101.sh deleted file mode 100755 index 7c4b90c97f0..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=101 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_102.sh b/test/ntuple_qcd_500_700/batch/sge_102.sh deleted file mode 100755 index 6736180a3c5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=102 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_103.sh b/test/ntuple_qcd_500_700/batch/sge_103.sh deleted file mode 100755 index 319d8373677..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=103 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_104.sh b/test/ntuple_qcd_500_700/batch/sge_104.sh deleted file mode 100755 index 1b1531edebd..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=104 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_105.sh b/test/ntuple_qcd_500_700/batch/sge_105.sh deleted file mode 100755 index 7530af73e6b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=105 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_106.sh b/test/ntuple_qcd_500_700/batch/sge_106.sh deleted file mode 100755 index 1b0d7d2a57d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=106 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_107.sh b/test/ntuple_qcd_500_700/batch/sge_107.sh deleted file mode 100755 index 4960c388c48..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=107 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_108.sh b/test/ntuple_qcd_500_700/batch/sge_108.sh deleted file mode 100755 index 98bf021241b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=108 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_109.sh b/test/ntuple_qcd_500_700/batch/sge_109.sh deleted file mode 100755 index 2256a7568b5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=109 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_11.sh b/test/ntuple_qcd_500_700/batch/sge_11.sh deleted file mode 100755 index 368ea4cdeb4..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_110.sh b/test/ntuple_qcd_500_700/batch/sge_110.sh deleted file mode 100755 index 43a06d91ec5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=110 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_111.sh b/test/ntuple_qcd_500_700/batch/sge_111.sh deleted file mode 100755 index a47df9fdfe1..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=111 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_112.sh b/test/ntuple_qcd_500_700/batch/sge_112.sh deleted file mode 100755 index ca30d5ef224..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=112 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_113.sh b/test/ntuple_qcd_500_700/batch/sge_113.sh deleted file mode 100755 index 1ace2b696d3..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=113 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_114.sh b/test/ntuple_qcd_500_700/batch/sge_114.sh deleted file mode 100755 index 5971c00f55d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=114 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_115.sh b/test/ntuple_qcd_500_700/batch/sge_115.sh deleted file mode 100755 index 20a5fb9f583..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=115 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_116.sh b/test/ntuple_qcd_500_700/batch/sge_116.sh deleted file mode 100755 index 092d7b3995e..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=116 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_117.sh b/test/ntuple_qcd_500_700/batch/sge_117.sh deleted file mode 100755 index 87f1d0376be..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=117 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_12.sh b/test/ntuple_qcd_500_700/batch/sge_12.sh deleted file mode 100755 index 479ef607dbe..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_13.sh b/test/ntuple_qcd_500_700/batch/sge_13.sh deleted file mode 100755 index 5d3a6e8ae30..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_14.sh b/test/ntuple_qcd_500_700/batch/sge_14.sh deleted file mode 100755 index 2d3aa33cbd8..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_15.sh b/test/ntuple_qcd_500_700/batch/sge_15.sh deleted file mode 100755 index 5399507bbbe..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_16.sh b/test/ntuple_qcd_500_700/batch/sge_16.sh deleted file mode 100755 index 3bdda37b66b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_17.sh b/test/ntuple_qcd_500_700/batch/sge_17.sh deleted file mode 100755 index a7d76894f39..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_18.sh b/test/ntuple_qcd_500_700/batch/sge_18.sh deleted file mode 100755 index 1cce18a61b5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_19.sh b/test/ntuple_qcd_500_700/batch/sge_19.sh deleted file mode 100755 index 9c7813e9243..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_2.sh b/test/ntuple_qcd_500_700/batch/sge_2.sh deleted file mode 100755 index 06195351a36..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_20.sh b/test/ntuple_qcd_500_700/batch/sge_20.sh deleted file mode 100755 index 947cfce5c08..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_21.sh b/test/ntuple_qcd_500_700/batch/sge_21.sh deleted file mode 100755 index 46799fbd6bf..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_22.sh b/test/ntuple_qcd_500_700/batch/sge_22.sh deleted file mode 100755 index 5a97f156c66..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_23.sh b/test/ntuple_qcd_500_700/batch/sge_23.sh deleted file mode 100755 index 6196e87f475..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_24.sh b/test/ntuple_qcd_500_700/batch/sge_24.sh deleted file mode 100755 index 6b7bfcc7ed9..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_25.sh b/test/ntuple_qcd_500_700/batch/sge_25.sh deleted file mode 100755 index 89a0498869f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_26.sh b/test/ntuple_qcd_500_700/batch/sge_26.sh deleted file mode 100755 index 7f088f435f5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_27.sh b/test/ntuple_qcd_500_700/batch/sge_27.sh deleted file mode 100755 index 7ba156fcacb..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_28.sh b/test/ntuple_qcd_500_700/batch/sge_28.sh deleted file mode 100755 index b941afaa0b8..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_29.sh b/test/ntuple_qcd_500_700/batch/sge_29.sh deleted file mode 100755 index 884dc7cb7a5..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_3.sh b/test/ntuple_qcd_500_700/batch/sge_3.sh deleted file mode 100755 index 4b99a6dd460..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_30.sh b/test/ntuple_qcd_500_700/batch/sge_30.sh deleted file mode 100755 index 908bbf691c1..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_31.sh b/test/ntuple_qcd_500_700/batch/sge_31.sh deleted file mode 100755 index 8d31c6c25dc..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_32.sh b/test/ntuple_qcd_500_700/batch/sge_32.sh deleted file mode 100755 index 4c40f7edc99..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_33.sh b/test/ntuple_qcd_500_700/batch/sge_33.sh deleted file mode 100755 index bcd5fc5323f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_34.sh b/test/ntuple_qcd_500_700/batch/sge_34.sh deleted file mode 100755 index 2f6303cabac..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_35.sh b/test/ntuple_qcd_500_700/batch/sge_35.sh deleted file mode 100755 index 27323597575..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_36.sh b/test/ntuple_qcd_500_700/batch/sge_36.sh deleted file mode 100755 index fb4e0c62884..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_37.sh b/test/ntuple_qcd_500_700/batch/sge_37.sh deleted file mode 100755 index 3114924108b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_38.sh b/test/ntuple_qcd_500_700/batch/sge_38.sh deleted file mode 100755 index 7a58ce1ce8d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_39.sh b/test/ntuple_qcd_500_700/batch/sge_39.sh deleted file mode 100755 index ffe7ddfb13c..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_4.sh b/test/ntuple_qcd_500_700/batch/sge_4.sh deleted file mode 100755 index 1c97d89028f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_40.sh b/test/ntuple_qcd_500_700/batch/sge_40.sh deleted file mode 100755 index 72dae60733d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_41.sh b/test/ntuple_qcd_500_700/batch/sge_41.sh deleted file mode 100755 index 43dbed40e7a..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_42.sh b/test/ntuple_qcd_500_700/batch/sge_42.sh deleted file mode 100755 index cb08eef73aa..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_43.sh b/test/ntuple_qcd_500_700/batch/sge_43.sh deleted file mode 100755 index 014961f892e..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_44.sh b/test/ntuple_qcd_500_700/batch/sge_44.sh deleted file mode 100755 index c98014b88e9..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_45.sh b/test/ntuple_qcd_500_700/batch/sge_45.sh deleted file mode 100755 index 853fd2197ef..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_46.sh b/test/ntuple_qcd_500_700/batch/sge_46.sh deleted file mode 100755 index 48c78ce3cfc..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_47.sh b/test/ntuple_qcd_500_700/batch/sge_47.sh deleted file mode 100755 index 74b3298f034..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_48.sh b/test/ntuple_qcd_500_700/batch/sge_48.sh deleted file mode 100755 index 1b1d0d9ed4b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_49.sh b/test/ntuple_qcd_500_700/batch/sge_49.sh deleted file mode 100755 index 2fe854c9a7f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_5.sh b/test/ntuple_qcd_500_700/batch/sge_5.sh deleted file mode 100755 index 5a2fd2d0f7e..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_50.sh b/test/ntuple_qcd_500_700/batch/sge_50.sh deleted file mode 100755 index fd91493ceb1..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_51.sh b/test/ntuple_qcd_500_700/batch/sge_51.sh deleted file mode 100755 index 95ed1b698a6..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_52.sh b/test/ntuple_qcd_500_700/batch/sge_52.sh deleted file mode 100755 index c350bd0912d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_53.sh b/test/ntuple_qcd_500_700/batch/sge_53.sh deleted file mode 100755 index bbbc55654fb..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_54.sh b/test/ntuple_qcd_500_700/batch/sge_54.sh deleted file mode 100755 index 49d63f491c3..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_55.sh b/test/ntuple_qcd_500_700/batch/sge_55.sh deleted file mode 100755 index e575ecc3a8c..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_56.sh b/test/ntuple_qcd_500_700/batch/sge_56.sh deleted file mode 100755 index 0284ba80aba..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_57.sh b/test/ntuple_qcd_500_700/batch/sge_57.sh deleted file mode 100755 index 1ea50997425..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_58.sh b/test/ntuple_qcd_500_700/batch/sge_58.sh deleted file mode 100755 index 021895aa421..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_59.sh b/test/ntuple_qcd_500_700/batch/sge_59.sh deleted file mode 100755 index 4757b90c3a1..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_6.sh b/test/ntuple_qcd_500_700/batch/sge_6.sh deleted file mode 100755 index b599543ff6f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_60.sh b/test/ntuple_qcd_500_700/batch/sge_60.sh deleted file mode 100755 index 9b17ee4b284..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_61.sh b/test/ntuple_qcd_500_700/batch/sge_61.sh deleted file mode 100755 index caa2d349136..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_62.sh b/test/ntuple_qcd_500_700/batch/sge_62.sh deleted file mode 100755 index 335c4c99b81..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_63.sh b/test/ntuple_qcd_500_700/batch/sge_63.sh deleted file mode 100755 index 57933f06ceb..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_64.sh b/test/ntuple_qcd_500_700/batch/sge_64.sh deleted file mode 100755 index e156ee668cf..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_65.sh b/test/ntuple_qcd_500_700/batch/sge_65.sh deleted file mode 100755 index b902eb2fdec..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_66.sh b/test/ntuple_qcd_500_700/batch/sge_66.sh deleted file mode 100755 index 73c488eaa0a..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_67.sh b/test/ntuple_qcd_500_700/batch/sge_67.sh deleted file mode 100755 index 7161e58f754..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_68.sh b/test/ntuple_qcd_500_700/batch/sge_68.sh deleted file mode 100755 index c5b68dd0651..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_69.sh b/test/ntuple_qcd_500_700/batch/sge_69.sh deleted file mode 100755 index 0a73d58d0a9..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_7.sh b/test/ntuple_qcd_500_700/batch/sge_7.sh deleted file mode 100755 index 2a2ebba4cb8..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_70.sh b/test/ntuple_qcd_500_700/batch/sge_70.sh deleted file mode 100755 index f2584c34667..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_71.sh b/test/ntuple_qcd_500_700/batch/sge_71.sh deleted file mode 100755 index 9ea12558630..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_72.sh b/test/ntuple_qcd_500_700/batch/sge_72.sh deleted file mode 100755 index e16ebc3f93e..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_73.sh b/test/ntuple_qcd_500_700/batch/sge_73.sh deleted file mode 100755 index dd7f56dd1fa..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_74.sh b/test/ntuple_qcd_500_700/batch/sge_74.sh deleted file mode 100755 index fa816c8e8a2..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_75.sh b/test/ntuple_qcd_500_700/batch/sge_75.sh deleted file mode 100755 index bc83399c54b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_76.sh b/test/ntuple_qcd_500_700/batch/sge_76.sh deleted file mode 100755 index 319d3b0693a..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_77.sh b/test/ntuple_qcd_500_700/batch/sge_77.sh deleted file mode 100755 index 564399a49ee..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=77 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_78.sh b/test/ntuple_qcd_500_700/batch/sge_78.sh deleted file mode 100755 index ac8972b7583..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=78 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_79.sh b/test/ntuple_qcd_500_700/batch/sge_79.sh deleted file mode 100755 index 8a07dace6c0..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=79 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_8.sh b/test/ntuple_qcd_500_700/batch/sge_8.sh deleted file mode 100755 index 8c12568c4ed..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_80.sh b/test/ntuple_qcd_500_700/batch/sge_80.sh deleted file mode 100755 index a5700bbf84d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=80 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_81.sh b/test/ntuple_qcd_500_700/batch/sge_81.sh deleted file mode 100755 index 8895393e848..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=81 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_82.sh b/test/ntuple_qcd_500_700/batch/sge_82.sh deleted file mode 100755 index 4c384b1865d..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=82 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_83.sh b/test/ntuple_qcd_500_700/batch/sge_83.sh deleted file mode 100755 index dc022d011f6..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=83 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_84.sh b/test/ntuple_qcd_500_700/batch/sge_84.sh deleted file mode 100755 index 09922bdfa92..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=84 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_85.sh b/test/ntuple_qcd_500_700/batch/sge_85.sh deleted file mode 100755 index 78a51b45cd4..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=85 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_86.sh b/test/ntuple_qcd_500_700/batch/sge_86.sh deleted file mode 100755 index f32302385d6..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=86 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_87.sh b/test/ntuple_qcd_500_700/batch/sge_87.sh deleted file mode 100755 index 52c26d72c79..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=87 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_88.sh b/test/ntuple_qcd_500_700/batch/sge_88.sh deleted file mode 100755 index eca8a36af6f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=88 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_89.sh b/test/ntuple_qcd_500_700/batch/sge_89.sh deleted file mode 100755 index 5f370a4e135..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=89 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_9.sh b/test/ntuple_qcd_500_700/batch/sge_9.sh deleted file mode 100755 index f7d73af913f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_90.sh b/test/ntuple_qcd_500_700/batch/sge_90.sh deleted file mode 100755 index 3b99eb18a8b..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=90 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_91.sh b/test/ntuple_qcd_500_700/batch/sge_91.sh deleted file mode 100755 index 7ca5dffde72..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=91 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_92.sh b/test/ntuple_qcd_500_700/batch/sge_92.sh deleted file mode 100755 index 4100f691b24..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=92 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_93.sh b/test/ntuple_qcd_500_700/batch/sge_93.sh deleted file mode 100755 index 69eb876b427..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=93 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_94.sh b/test/ntuple_qcd_500_700/batch/sge_94.sh deleted file mode 100755 index 728dbee4d4f..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=94 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_95.sh b/test/ntuple_qcd_500_700/batch/sge_95.sh deleted file mode 100755 index 7021c710422..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=95 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_96.sh b/test/ntuple_qcd_500_700/batch/sge_96.sh deleted file mode 100755 index fc236a87ec3..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=96 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_97.sh b/test/ntuple_qcd_500_700/batch/sge_97.sh deleted file mode 100755 index d04604328bd..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=97 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_98.sh b/test/ntuple_qcd_500_700/batch/sge_98.sh deleted file mode 100755 index d26b204bd2a..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=98 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batch/sge_99.sh b/test/ntuple_qcd_500_700/batch/sge_99.sh deleted file mode 100755 index 9df2b5b4286..00000000000 --- a/test/ntuple_qcd_500_700/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=99 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/batchscript.sh b/test/ntuple_qcd_500_700/batchscript.sh deleted file mode 100755 index 3397b90cc70..00000000000 --- a/test/ntuple_qcd_500_700/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_500_700" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/condor.sub b/test/ntuple_qcd_500_700/condor.sub deleted file mode 100644 index 91af0726742..00000000000 --- a/test/ntuple_qcd_500_700/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT500to700TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=118 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ntuple_qcd_500_700_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 118 - \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/helper b/test/ntuple_qcd_500_700/helper deleted file mode 120000 index 34c977d69f7..00000000000 --- a/test/ntuple_qcd_500_700/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_500_700/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/output b/test/ntuple_qcd_500_700/output deleted file mode 120000 index 3443004fd6a..00000000000 --- a/test/ntuple_qcd_500_700/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_500_700/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_500_700/sge_sub.sh b/test/ntuple_qcd_500_700/sge_sub.sh deleted file mode 100755 index 87ecbff8186..00000000000 --- a/test/ntuple_qcd_500_700/sge_sub.sh +++ /dev/null @@ -1,118 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_500_700/batch/sge_117.sh diff --git a/test/ntuple_qcd_700_1000/ademoor.cc b/test/ntuple_qcd_700_1000/ademoor.cc deleted file mode 100644 index 5b2883e9d9d366a9b39932d77f1f2b64524e3ddb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5609 zcmai%WmKHol7<_H;O=fgI=BT75Zoa+1ZljH#@$_l2ZzQTf)gwxxVyVM94s8tz>rzz zp1E`Hnme`D{!wpLeYMy3{&_YMBH(wx{dG{JWHeOXNXfmVD5e%5u%jd7|EdEpF>|$Y{b!N*CBfMss{05hw`oATmy+Q=iJfa^z87d_e#CDElIu6K^#cIZwqDx) z4m20jU^GY0U^KgY1b8?kC>r@cb`(%>lKs};q4=D* z7>yY*7>$0{)1h)L(YRkwA_GR zbpjQyZwo<8@`YMfQ+u4xbpq3?vo?-^oncragQh20C}*ql)$Ae6n4IqD+(T&jR%)Hh zXgl>H{*B^r@KqmNW_1o)n=$uxL`X+XJ3`h?T6rWby<#j-cVy>CnV5QOVE(#i%YZB8FIC#B+Ypv zYG4ndNp+lOXNK@SBJLF) z4kzN5@mk^x>b*q2?FoU7>U5+8?x$b%Q6^Mq7ab8#X&*N2Zt{10NlZ1_ngI)XT zGfHb1i)Phvo5bP#`|nU_VW7dr`P7DQSp&Y2G-hg81t*6xF;h+j*VK6MEj-O{6%%!y zQ|4$K@NTpKC68LtFaua+U6aa8S+~%5Q9yR(bG6Q$xItxcN9Q+aJ{uzH&{FQ{GGVM> zh9K?n&yivUEbe=_XIgz+2EWFyMo(QixCC7F`DU)WCTYpg7Ib#d?RWl5>Nz%_9I%qK zBB<>$;b*y|2dP~c7KOnH$m+<0H#pB1cYnxuy6-` zeh4MSe7M)X`N1HmO0}LA8zMka z+-E&Md!{BTPW6>Z^<1W~;0$HIo!}Ld1cvOgE6_q_UcZGC-IeHoo7);6Oo`m^qODOo zk=yT$UUTT7xBy@&mHwl{wSphC5iPLl62Y-H$LbCf?OCO*9d6gi)(*?{s%rz=;N+cTTv6maYgOJ%&!G$slo4uO@)`%Z z`iA#{E}(iS{bPd>%$tkpEC^$n$#@U}Bo!HNcn21&B|-DdsOI_8Tmxdc`QeV2p_(54 zHD*cCYW_3sLOi_TD+1nr?Cu@}gwIy-Vn#3%wlo`MZH%~sE3U6aS5>lRQIELK2lbIQKyVDrE$xzN-3`C!QT!Hm|&Y=PDD@Zbo+o4UnE@er|VCpre7}AY-0I6 zb-U~!Vi9hQFj&Rx(ey9;tZWauO}jyjYq*J5A4AIZEoZ=9p?wB#`Gc=VKqS6f$;HUG zO0M2#=h~5Rv!A;W=nGFwI6LJHjht>qY>QB7+!xW0O8T3--%OVo;0VGIlAm2lOpvdV zWy_M<#Wn{AuNe2ZpuernZu67B`I%F?A^L&O4r`3-lBOdf9d9Oayo2BIc)#k6EpZ>0 zUi{d#Q(gkmqk=O(r3R_p3TK(5aw*{va~$E16}S5;TUK#&+QL0;BIR0UfIs%gSJ{?4 z=8rT5SkvgMudyY!3E5M6W)Rt(hnF2B23Qnm7{UF$j82zb=5q<+!ZvTP@rXmQF_Ra4 z6~bp42O7u}+`o}$?Ynlu_m72&ZK;`Y^1tffc~x-{a88YZL$U2Wdfvo(U-vE7ck=#M zp~BtsIA*kZZ=+c#P;*{N4_vpj}oiRJKt4_LSk_)$@QNGW5+De4YtX$F1Jn`jWp-jL5EAr zT^e5fnHa9s#X&KVFaUp?Z%+~780OJqX4VmBuibQlz3H}9*g4})IAv1b1FP)T_~cCL ztEXh6yq`mMnG1~bxsuLb4_LC?4Okb6Rd9Ok1WY7bwi~Wws9e+t z8uyw!%`!%_M{`x*CPz*5vm43fD0`+F25X6o66$!$>SmhDR=8t+pRYBNg5z zSxekF$_YtWW3E?KYD7-Uk3g`9q1m5)$<^W9S{VpFO!G#3c^5(UWueyrma_e*7dh~U z>46d(!4$NQ>^}UDV%t6t-J>xnC^}Zx*z3=Kja-T)B-8fe?i{pX+gtw5 z-U^!?RkH4EN#CK84yG-3LN`W=2)(X6qE4JhWc>K-vDEf>+P*>M-oT;au%1W1-ib3h z>_0X-4jCh(Fh6a&9HM=n2DC)-ljT9Gb+{{7D7#$p^6hahF8#Tffa>)gZkn3t$TcbR zNLO5~f^iD(P%J&%Z~YDX!slCo;@MdLz1P^}1=GR?%esn@-6SRYkrwwK9wt;CmI%SK zIRo)k?=Y!IV=ip%pB7T+W(2Wme7; zN6s{{E<6IXI@E6(<&2k~y6aefhU0(ZBOrZL+CK*bIOMZoG30q+_bomYy8Fo;S&Nrc z6y?T}ieaCjnm9fj1fqz?uc!|J{2MyMzjg}5u?zV7fJ8*J^udNW@#WDNmCJp|GBl)V zhlW1K0{yp~I}ZSUg1sSQFM&*H@gmul*|-&}VpS`YF5#4JJ4CoIul8>*LN-IJcr_Ai zb3}4J7=G1QoV%;R9O%d_O;qX--YJf~@R8}(&~Z+nbhFvObtt?k>=(E?V;G4J+fI9{ zdJ&xiIGU+Dd&ZL!;wJ3oP*=WA*;SOE#=*AzrR=C4bN0Q_2xFYHz+Bph31NW7uz5R% z3~!Vy>w6Phft1;JqX?GTo-lphF=uQD2cO z#uEz5RQy8BKW%9eN4C z#~go8H)X=0EVsS#U{2&cV96yO7 z=*=T;c;ZNfke;-Z59GJeMI$yK!5knSqY!9{;9o!KKO6PC`Y%QydqNx?T`gV;SRh9i zbFj;s|7Dqv8cI$zLkC(^^}eY%75F3_=4`@FX%3;`K5)M_w8u2H=iU)UVJl1$$b&>gQnXVd!BrvVVc)@-PW89a<8u8+N*H(ty63?e$+R|E~B zVMq>}M{-1muRQFhCl;wv-R&d-wOSnxY8~_r!CuaCG z3nL3MTv-(wd_~Qn4F%fPR{FJKDK3$_PqX)k>1|1Z&f_Um&UC~dNf*jyulISmuyjTc zQnWk6zm<4{L-hgr9Cd`Mb{4@(8U-@7`s$uP7A?pWxh)WS7S@2t5qhM-QKro9(Y|$3 zX7p!5Hh{6oxa)M>BLm-nN_iRp{`W>nN)%wj{s*08FnlT6(mQ8DokcuPh*+!evB6y` zDj*B$@u!2yrQRd*cVpm~wM~@z+-s^o#qFly(l9Ju9t}RxraJ8Nj;tSl^5t1bN$9m7 zrN0{0L9{>0!j~7(d`g*l4>-}( z9ZsYs!dM1}aITM716?czF5uYOqW=*8c025~fM(lBB7kI%&P?nm>^ynpTMD{}k9`Nu znxd5Ddn1gKY^qW)3Wj&W6Sasih!Rvq;E|65HDwiaLOC0_fD>(mxn|A%jKxrE)WF;#Q1@J(zBqVY+`j;6L&|N}su9`{cK8MBhZ7jN;bUjuK+Amb4De zu9OAZLj_0l?fAw#CkSwgZ7Ob-zcRve1}WB>GkmOfvq046?f+0qcH`yn-l;wk$U%`e zLvEzsCY?17sc+p)TK}aH(j;-T7XlFTMU7O4SGQ%DW)g~o8vAnZe;OQ1Q--YR-^wH- zBH;)17T`X+r{IJQjTx6Mn>7_S(T1lAcN}WAbiiOHJDB&x=zT`N=1Zyy01ZhsxaF-u z6s<5etf!R6m851v&=OJzS89Zpxkv;rvz8O)lleB$J>5r$7m6Q6Iy0ZTAW-=-I9FHh z3@*i8_Cp=eocf-1NFaP(1-HRK%A}4);ujq|i|EyY3=0uRD3x`m^z>sY?nV5nfslyQ z`UFENw_Q~)>WDw|X(6PFv_biNM!-WcZ5@N2x}xu=%y_4>c?o}^7~~Zn?h|8d?3q$k z?eKo^BKKTp6CRG24MRrgQiT0v)o3kj7d`jKb!gplHw)~Bo!TbtZT^zH&p?KB@t|fe zoz&2Crp71&PJ$-R50stQX|~OF6j=nqY>`vFtB12g+y-rMwNK2(&m28~hb0`Hoc4+lNNu%bVM{)%{ZNzfRV=CjC^(7YI&WDvFlb6O^xmNX z%7+xFYu8m=87*$lL?;tc`sY(bZGVMn_NzQHRGE~mi@y`59!Y>F-24JEG8IJ|a>cOH zvF>L)#{D?R)DuO?%7N%==+bhpo&TpD>Q1x_|m*Y3FIWlWMXc4y8L`=j0CCfVHr7 zB8O5sg$5w+WM;ZSv!*E@bBp)^d3Jy|_fr*r)!f1gkHaBHTeAoECCTgAZx=34Hu5w9 zSwW?k^WO%f4cuDQ0YTrxg}S9`3xj9}P{P1VGg~P3T7p9eUf7;R+C1Ko3+6%)%=)fI zSQ)yOsj?JCsvemq*BY33mDkWJPt`fJ%_5{}f@wQ%gxu4U;n;$>>mh+V2;a-p$^W|E zQc)Q@j^)17?{Wh~$YLF)j>t<`I=G|Rqj&9}QqAmeZM8ccpaUf{=NVO-8R3EYY5HjL z(UK!-L_LD?Eqj*Z$A`QXU+pl&$6$jo~{_wh8l&H1RGo4i?aB?B+ zxIvFB>0#zbgb%2;LS}leRP8?Hs!+#H%*jp>O4H35$PdSyzMZSDT8QzIp@2>a4C!$$ zs)_L1>?@C$D35|71&}-64oGL9!P21 zPo&SxvcTt_b>*v;C_&()Ar&$~9hJy=gf{^%>-qe~2_Ag(rI)|f`yRWk+WlBn`1^K) zrln>BYxqNigYu6jCwuI#lm@U#B5CT)p3#!ja#=-t4$6$@kJV{9{DkUsx=gLfs7@dK zD#Go3X9&}Yfe3enHYCH?R$XO}Yt^s^J$QZIqGmEg4;Wl;KIju4B7L&Fpx>{`a-C0- T$q89V^ZHL+-tQ-Wlj45?iW4ak diff --git a/test/ntuple_qcd_700_1000/batch/condor_0.sub b/test/ntuple_qcd_700_1000/batch/condor_0.sub deleted file mode 100644 index 7433db65fad..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_1.sub b/test/ntuple_qcd_700_1000/batch/condor_1.sub deleted file mode 100644 index e919c7d1f43..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_10.sub b/test/ntuple_qcd_700_1000/batch/condor_10.sub deleted file mode 100644 index 0c22df20285..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_100.sub b/test/ntuple_qcd_700_1000/batch/condor_100.sub deleted file mode 100644 index 744f8502cc0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_100.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.100.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_100.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.100.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_101.sub b/test/ntuple_qcd_700_1000/batch/condor_101.sub deleted file mode 100644 index 1159c56c376..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_101.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.101.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_101.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.101.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_102.sub b/test/ntuple_qcd_700_1000/batch/condor_102.sub deleted file mode 100644 index 5773ba1db00..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_102.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.102.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_102.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.102.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_103.sub b/test/ntuple_qcd_700_1000/batch/condor_103.sub deleted file mode 100644 index 1ce087bf7ba..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_103.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.103.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_103.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.103.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_104.sub b/test/ntuple_qcd_700_1000/batch/condor_104.sub deleted file mode 100644 index c9be92bfdd4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_104.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.104.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_104.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.104.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_105.sub b/test/ntuple_qcd_700_1000/batch/condor_105.sub deleted file mode 100644 index 00001735d48..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_105.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.105.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_105.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.105.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_106.sub b/test/ntuple_qcd_700_1000/batch/condor_106.sub deleted file mode 100644 index 02c90995739..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_106.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.106.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_106.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.106.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_107.sub b/test/ntuple_qcd_700_1000/batch/condor_107.sub deleted file mode 100644 index fa3383ec24d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_107.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.107.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_107.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.107.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_108.sub b/test/ntuple_qcd_700_1000/batch/condor_108.sub deleted file mode 100644 index 02e5e140c4b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_108.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.108.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_108.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.108.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_109.sub b/test/ntuple_qcd_700_1000/batch/condor_109.sub deleted file mode 100644 index 481158478dd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_109.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.109.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_109.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.109.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_11.sub b/test/ntuple_qcd_700_1000/batch/condor_11.sub deleted file mode 100644 index 4c5bd2857eb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_110.sub b/test/ntuple_qcd_700_1000/batch/condor_110.sub deleted file mode 100644 index aba69097e5d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_110.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.110.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_110.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.110.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_111.sub b/test/ntuple_qcd_700_1000/batch/condor_111.sub deleted file mode 100644 index 6282a7d3b50..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_111.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.111.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_111.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.111.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_112.sub b/test/ntuple_qcd_700_1000/batch/condor_112.sub deleted file mode 100644 index 106bdf6be67..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_112.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.112.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_112.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.112.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_113.sub b/test/ntuple_qcd_700_1000/batch/condor_113.sub deleted file mode 100644 index 2489d88d7b4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_113.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.113.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_113.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.113.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_114.sub b/test/ntuple_qcd_700_1000/batch/condor_114.sub deleted file mode 100644 index d83c213a566..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_114.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.114.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_114.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.114.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_115.sub b/test/ntuple_qcd_700_1000/batch/condor_115.sub deleted file mode 100644 index 6fc92eecedb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_115.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.115.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_115.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.115.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_116.sub b/test/ntuple_qcd_700_1000/batch/condor_116.sub deleted file mode 100644 index ef4304b6e78..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_116.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.116.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_116.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.116.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_117.sub b/test/ntuple_qcd_700_1000/batch/condor_117.sub deleted file mode 100644 index da1da78a065..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_117.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.117.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_117.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.117.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_118.sub b/test/ntuple_qcd_700_1000/batch/condor_118.sub deleted file mode 100644 index 1cd5fe87bb7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_118.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.118.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_118.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.118.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_119.sub b/test/ntuple_qcd_700_1000/batch/condor_119.sub deleted file mode 100644 index 83a68d1bf05..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_119.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.119.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_119.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.119.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_12.sub b/test/ntuple_qcd_700_1000/batch/condor_12.sub deleted file mode 100644 index 36be9c4ae27..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_120.sub b/test/ntuple_qcd_700_1000/batch/condor_120.sub deleted file mode 100644 index 95162243b03..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_120.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.120.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_120.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.120.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_121.sub b/test/ntuple_qcd_700_1000/batch/condor_121.sub deleted file mode 100644 index ded1058e361..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_121.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.121.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_121.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.121.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_122.sub b/test/ntuple_qcd_700_1000/batch/condor_122.sub deleted file mode 100644 index 6b6b8382fd0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_122.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.122.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_122.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.122.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_123.sub b/test/ntuple_qcd_700_1000/batch/condor_123.sub deleted file mode 100644 index 50d4a591a8c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_123.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.123.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_123.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.123.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_124.sub b/test/ntuple_qcd_700_1000/batch/condor_124.sub deleted file mode 100644 index 1958be02da8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_124.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.124.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_124.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.124.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_125.sub b/test/ntuple_qcd_700_1000/batch/condor_125.sub deleted file mode 100644 index 5169e76f7bc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_125.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.125.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_125.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.125.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_126.sub b/test/ntuple_qcd_700_1000/batch/condor_126.sub deleted file mode 100644 index 78bc2127797..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_126.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.126.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_126.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.126.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_127.sub b/test/ntuple_qcd_700_1000/batch/condor_127.sub deleted file mode 100644 index ea267cd90ea..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_127.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.127.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_127.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.127.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_128.sub b/test/ntuple_qcd_700_1000/batch/condor_128.sub deleted file mode 100644 index d8755190752..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_128.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.128.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_128.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.128.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_129.sub b/test/ntuple_qcd_700_1000/batch/condor_129.sub deleted file mode 100644 index 37029abe14f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_129.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.129.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_129.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.129.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_13.sub b/test/ntuple_qcd_700_1000/batch/condor_13.sub deleted file mode 100644 index 81ba4441c88..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_130.sub b/test/ntuple_qcd_700_1000/batch/condor_130.sub deleted file mode 100644 index 808b97a3c74..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_130.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.130.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_130.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.130.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_131.sub b/test/ntuple_qcd_700_1000/batch/condor_131.sub deleted file mode 100644 index abdcfcbaba3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_131.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.131.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_131.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.131.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_132.sub b/test/ntuple_qcd_700_1000/batch/condor_132.sub deleted file mode 100644 index 16ad04400b5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_132.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.132.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_132.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.132.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_133.sub b/test/ntuple_qcd_700_1000/batch/condor_133.sub deleted file mode 100644 index 5b209f85975..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_133.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.133.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_133.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.133.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_134.sub b/test/ntuple_qcd_700_1000/batch/condor_134.sub deleted file mode 100644 index 92de3b24da6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_134.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.134.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_134.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.134.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_135.sub b/test/ntuple_qcd_700_1000/batch/condor_135.sub deleted file mode 100644 index f6dc82ca9a3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_135.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.135.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_135.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.135.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_136.sub b/test/ntuple_qcd_700_1000/batch/condor_136.sub deleted file mode 100644 index b15a8e38a14..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_136.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.136.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_136.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.136.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_137.sub b/test/ntuple_qcd_700_1000/batch/condor_137.sub deleted file mode 100644 index cf3bdd661ee..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_137.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.137.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_137.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.137.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_138.sub b/test/ntuple_qcd_700_1000/batch/condor_138.sub deleted file mode 100644 index f7c2fa118b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_138.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.138.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_138.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.138.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_139.sub b/test/ntuple_qcd_700_1000/batch/condor_139.sub deleted file mode 100644 index da5dc058c91..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_139.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.139.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_139.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.139.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_14.sub b/test/ntuple_qcd_700_1000/batch/condor_14.sub deleted file mode 100644 index a94947e2c1b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_140.sub b/test/ntuple_qcd_700_1000/batch/condor_140.sub deleted file mode 100644 index 910380afb67..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_140.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.140.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_140.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.140.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_141.sub b/test/ntuple_qcd_700_1000/batch/condor_141.sub deleted file mode 100644 index 7f2cfaa5b54..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_141.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.141.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_141.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.141.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_142.sub b/test/ntuple_qcd_700_1000/batch/condor_142.sub deleted file mode 100644 index d35d6e4cb9d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_142.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.142.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_142.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.142.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_143.sub b/test/ntuple_qcd_700_1000/batch/condor_143.sub deleted file mode 100644 index a4d02317068..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_143.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.143.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_143.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.143.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_144.sub b/test/ntuple_qcd_700_1000/batch/condor_144.sub deleted file mode 100644 index ecc931d01d2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_144.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.144.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_144.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.144.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_145.sub b/test/ntuple_qcd_700_1000/batch/condor_145.sub deleted file mode 100644 index 5f41698c40a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_145.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.145.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_145.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.145.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_146.sub b/test/ntuple_qcd_700_1000/batch/condor_146.sub deleted file mode 100644 index 58a100fdbc1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_146.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.146.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_146.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.146.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_147.sub b/test/ntuple_qcd_700_1000/batch/condor_147.sub deleted file mode 100644 index 2de91ada761..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_147.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.147.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_147.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.147.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_148.sub b/test/ntuple_qcd_700_1000/batch/condor_148.sub deleted file mode 100644 index 840df3d3759..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_148.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.148.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_148.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.148.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_149.sub b/test/ntuple_qcd_700_1000/batch/condor_149.sub deleted file mode 100644 index 6a281c8b4a6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_149.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.149.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_149.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.149.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_15.sub b/test/ntuple_qcd_700_1000/batch/condor_15.sub deleted file mode 100644 index 201957f0c4f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_15.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.15.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_15.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.15.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_150.sub b/test/ntuple_qcd_700_1000/batch/condor_150.sub deleted file mode 100644 index 2e653deb29b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_150.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.150.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_150.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.150.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_151.sub b/test/ntuple_qcd_700_1000/batch/condor_151.sub deleted file mode 100644 index ac459218292..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_151.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.151.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_151.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.151.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_152.sub b/test/ntuple_qcd_700_1000/batch/condor_152.sub deleted file mode 100644 index 20eadc7a260..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_152.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.152.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_152.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.152.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_153.sub b/test/ntuple_qcd_700_1000/batch/condor_153.sub deleted file mode 100644 index 3c0e680d590..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_153.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.153.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_153.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.153.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_154.sub b/test/ntuple_qcd_700_1000/batch/condor_154.sub deleted file mode 100644 index d794f2cfc3f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_154.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.154.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_154.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.154.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_155.sub b/test/ntuple_qcd_700_1000/batch/condor_155.sub deleted file mode 100644 index 3baf9c65aa0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_155.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.155.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_155.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.155.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_156.sub b/test/ntuple_qcd_700_1000/batch/condor_156.sub deleted file mode 100644 index e4235406b22..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_156.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.156.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_156.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.156.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_157.sub b/test/ntuple_qcd_700_1000/batch/condor_157.sub deleted file mode 100644 index 9097ac10a02..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_157.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.157.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_157.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.157.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_158.sub b/test/ntuple_qcd_700_1000/batch/condor_158.sub deleted file mode 100644 index 2a1b1379ffd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_158.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.158.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_158.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.158.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_159.sub b/test/ntuple_qcd_700_1000/batch/condor_159.sub deleted file mode 100644 index 522aa2c91ab..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_159.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.159.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_159.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.159.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_16.sub b/test/ntuple_qcd_700_1000/batch/condor_16.sub deleted file mode 100644 index 5c090ff58d8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_16.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.16.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_16.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.16.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_160.sub b/test/ntuple_qcd_700_1000/batch/condor_160.sub deleted file mode 100644 index 0e70b85f862..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_160.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.160.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_160.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.160.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_161.sub b/test/ntuple_qcd_700_1000/batch/condor_161.sub deleted file mode 100644 index 083385631f2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_161.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.161.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_161.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.161.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_162.sub b/test/ntuple_qcd_700_1000/batch/condor_162.sub deleted file mode 100644 index 1e13be59e1a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_162.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.162.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_162.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.162.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_163.sub b/test/ntuple_qcd_700_1000/batch/condor_163.sub deleted file mode 100644 index 5f2eb6139a0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_163.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.163.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_163.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.163.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_164.sub b/test/ntuple_qcd_700_1000/batch/condor_164.sub deleted file mode 100644 index 4da163fcd00..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_164.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.164.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_164.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.164.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_165.sub b/test/ntuple_qcd_700_1000/batch/condor_165.sub deleted file mode 100644 index 9c26518c163..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_165.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.165.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_165.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.165.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_166.sub b/test/ntuple_qcd_700_1000/batch/condor_166.sub deleted file mode 100644 index 4583aa0d159..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_166.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.166.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_166.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.166.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_167.sub b/test/ntuple_qcd_700_1000/batch/condor_167.sub deleted file mode 100644 index d106b6fe4bb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_167.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.167.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_167.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.167.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_168.sub b/test/ntuple_qcd_700_1000/batch/condor_168.sub deleted file mode 100644 index 99b28c78d44..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_168.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.168.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_168.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.168.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_169.sub b/test/ntuple_qcd_700_1000/batch/condor_169.sub deleted file mode 100644 index b352ba25bb4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_169.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.169.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_169.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.169.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_17.sub b/test/ntuple_qcd_700_1000/batch/condor_17.sub deleted file mode 100644 index 17d7650f8a6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_17.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.17.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_17.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.17.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_170.sub b/test/ntuple_qcd_700_1000/batch/condor_170.sub deleted file mode 100644 index 6c2e30f6708..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_170.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.170.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_170.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.170.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_171.sub b/test/ntuple_qcd_700_1000/batch/condor_171.sub deleted file mode 100644 index 5eb21c952ba..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_171.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.171.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_171.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.171.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_172.sub b/test/ntuple_qcd_700_1000/batch/condor_172.sub deleted file mode 100644 index d4e2bb410e2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_172.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.172.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_172.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.172.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_173.sub b/test/ntuple_qcd_700_1000/batch/condor_173.sub deleted file mode 100644 index 1bad6018659..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_173.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.173.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_173.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.173.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_174.sub b/test/ntuple_qcd_700_1000/batch/condor_174.sub deleted file mode 100644 index 2a88ca5cd82..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_174.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.174.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_174.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.174.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_175.sub b/test/ntuple_qcd_700_1000/batch/condor_175.sub deleted file mode 100644 index 747be1b720a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_175.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.175.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_175.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.175.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_176.sub b/test/ntuple_qcd_700_1000/batch/condor_176.sub deleted file mode 100644 index 79c98feff87..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_176.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.176.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_176.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.176.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_177.sub b/test/ntuple_qcd_700_1000/batch/condor_177.sub deleted file mode 100644 index 94721fa74d4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_177.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.177.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_177.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.177.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_178.sub b/test/ntuple_qcd_700_1000/batch/condor_178.sub deleted file mode 100644 index aa34505a9e3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_178.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.178.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_178.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.178.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_179.sub b/test/ntuple_qcd_700_1000/batch/condor_179.sub deleted file mode 100644 index 54ae63bfa7a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_179.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.179.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_179.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.179.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_18.sub b/test/ntuple_qcd_700_1000/batch/condor_18.sub deleted file mode 100644 index d9c80cd694d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_18.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.18.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_18.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.18.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_180.sub b/test/ntuple_qcd_700_1000/batch/condor_180.sub deleted file mode 100644 index 65003907c40..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_180.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.180.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_180.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.180.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_181.sub b/test/ntuple_qcd_700_1000/batch/condor_181.sub deleted file mode 100644 index 909e1bd75e7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_181.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.181.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_181.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.181.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_182.sub b/test/ntuple_qcd_700_1000/batch/condor_182.sub deleted file mode 100644 index e259b539eea..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_182.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.182.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_182.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.182.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_183.sub b/test/ntuple_qcd_700_1000/batch/condor_183.sub deleted file mode 100644 index be18407b815..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_183.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.183.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_183.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.183.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_184.sub b/test/ntuple_qcd_700_1000/batch/condor_184.sub deleted file mode 100644 index 1dbaf765fcf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_184.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.184.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_184.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.184.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_185.sub b/test/ntuple_qcd_700_1000/batch/condor_185.sub deleted file mode 100644 index 836c1d7fb31..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_185.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.185.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_185.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.185.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_186.sub b/test/ntuple_qcd_700_1000/batch/condor_186.sub deleted file mode 100644 index 995ade1d5fe..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_186.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.186.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_186.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.186.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_187.sub b/test/ntuple_qcd_700_1000/batch/condor_187.sub deleted file mode 100644 index 0f4272c48c6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_187.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.187.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_187.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.187.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_188.sub b/test/ntuple_qcd_700_1000/batch/condor_188.sub deleted file mode 100644 index a76229bebde..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_188.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.188.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_188.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.188.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_189.sub b/test/ntuple_qcd_700_1000/batch/condor_189.sub deleted file mode 100644 index 73365f91da6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_189.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.189.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_189.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.189.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_19.sub b/test/ntuple_qcd_700_1000/batch/condor_19.sub deleted file mode 100644 index b02e3b74496..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_19.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.19.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_19.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.19.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_190.sub b/test/ntuple_qcd_700_1000/batch/condor_190.sub deleted file mode 100644 index e13b401f16b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_190.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.190.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_190.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.190.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_191.sub b/test/ntuple_qcd_700_1000/batch/condor_191.sub deleted file mode 100644 index 3fbbb821be0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_191.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.191.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_191.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.191.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_192.sub b/test/ntuple_qcd_700_1000/batch/condor_192.sub deleted file mode 100644 index 25394bc1a1a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_192.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.192.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_192.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.192.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_193.sub b/test/ntuple_qcd_700_1000/batch/condor_193.sub deleted file mode 100644 index 1c00e0515a8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_193.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.193.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_193.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.193.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_194.sub b/test/ntuple_qcd_700_1000/batch/condor_194.sub deleted file mode 100644 index f2a792bb346..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_194.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.194.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_194.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.194.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_195.sub b/test/ntuple_qcd_700_1000/batch/condor_195.sub deleted file mode 100644 index 3760d294b4b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_195.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.195.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_195.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.195.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_196.sub b/test/ntuple_qcd_700_1000/batch/condor_196.sub deleted file mode 100644 index 7a105255cbe..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_196.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.196.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_196.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.196.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_197.sub b/test/ntuple_qcd_700_1000/batch/condor_197.sub deleted file mode 100644 index a4d8c7b9dcf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_197.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.197.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_197.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.197.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_198.sub b/test/ntuple_qcd_700_1000/batch/condor_198.sub deleted file mode 100644 index 88d3e8d3ae9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_198.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.198.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_198.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.198.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_199.sub b/test/ntuple_qcd_700_1000/batch/condor_199.sub deleted file mode 100644 index 2bd23911af7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_199.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.199.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_199.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.199.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_2.sub b/test/ntuple_qcd_700_1000/batch/condor_2.sub deleted file mode 100644 index fbb19a584b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_20.sub b/test/ntuple_qcd_700_1000/batch/condor_20.sub deleted file mode 100644 index f9dc7fec837..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_20.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.20.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_20.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.20.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_200.sub b/test/ntuple_qcd_700_1000/batch/condor_200.sub deleted file mode 100644 index 26ecad79c4a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_200.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.200.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_200.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.200.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_201.sub b/test/ntuple_qcd_700_1000/batch/condor_201.sub deleted file mode 100644 index 10a156cf89f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_201.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.201.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_201.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.201.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_202.sub b/test/ntuple_qcd_700_1000/batch/condor_202.sub deleted file mode 100644 index b9dec82e016..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_202.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.202.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_202.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.202.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_203.sub b/test/ntuple_qcd_700_1000/batch/condor_203.sub deleted file mode 100644 index 4dcae4b31d9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_203.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.203.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_203.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.203.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_204.sub b/test/ntuple_qcd_700_1000/batch/condor_204.sub deleted file mode 100644 index d9e4dabdce0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_204.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.204.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_204.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.204.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_205.sub b/test/ntuple_qcd_700_1000/batch/condor_205.sub deleted file mode 100644 index 2879ac066f0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_205.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.205.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_205.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.205.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_206.sub b/test/ntuple_qcd_700_1000/batch/condor_206.sub deleted file mode 100644 index e0c1d1c526f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_206.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.206.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_206.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.206.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_207.sub b/test/ntuple_qcd_700_1000/batch/condor_207.sub deleted file mode 100644 index 08421052bd0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_207.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.207.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_207.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.207.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_208.sub b/test/ntuple_qcd_700_1000/batch/condor_208.sub deleted file mode 100644 index 474b9966704..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_208.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.208.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_208.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.208.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_209.sub b/test/ntuple_qcd_700_1000/batch/condor_209.sub deleted file mode 100644 index 8cec7c4ef23..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_209.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.209.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_209.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.209.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_21.sub b/test/ntuple_qcd_700_1000/batch/condor_21.sub deleted file mode 100644 index fbaf57c9bf4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_21.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.21.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_21.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.21.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_210.sub b/test/ntuple_qcd_700_1000/batch/condor_210.sub deleted file mode 100644 index e9cd7719a06..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_210.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.210.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_210.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.210.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_211.sub b/test/ntuple_qcd_700_1000/batch/condor_211.sub deleted file mode 100644 index 6edacdc1e69..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_211.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.211.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_211.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.211.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_212.sub b/test/ntuple_qcd_700_1000/batch/condor_212.sub deleted file mode 100644 index 04304c549bb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_212.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.212.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_212.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.212.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_213.sub b/test/ntuple_qcd_700_1000/batch/condor_213.sub deleted file mode 100644 index a61f9fe562f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_213.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.213.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_213.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.213.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_214.sub b/test/ntuple_qcd_700_1000/batch/condor_214.sub deleted file mode 100644 index c4df2cdec65..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_214.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.214.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_214.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.214.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_215.sub b/test/ntuple_qcd_700_1000/batch/condor_215.sub deleted file mode 100644 index 7231fad7d0e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_215.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.215.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_215.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.215.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_216.sub b/test/ntuple_qcd_700_1000/batch/condor_216.sub deleted file mode 100644 index c5e580ae21e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_216.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.216.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_216.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.216.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_217.sub b/test/ntuple_qcd_700_1000/batch/condor_217.sub deleted file mode 100644 index 71b7841daf3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_217.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.217.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_217.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.217.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_218.sub b/test/ntuple_qcd_700_1000/batch/condor_218.sub deleted file mode 100644 index b1442bcaf5b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_218.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.218.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_218.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.218.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_219.sub b/test/ntuple_qcd_700_1000/batch/condor_219.sub deleted file mode 100644 index d1618bed329..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_219.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.219.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_219.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.219.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_22.sub b/test/ntuple_qcd_700_1000/batch/condor_22.sub deleted file mode 100644 index 21144a4ec60..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_22.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.22.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_22.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.22.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_220.sub b/test/ntuple_qcd_700_1000/batch/condor_220.sub deleted file mode 100644 index 954f1a256a6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_220.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.220.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_220.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.220.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_221.sub b/test/ntuple_qcd_700_1000/batch/condor_221.sub deleted file mode 100644 index adb8dffe698..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_221.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.221.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_221.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.221.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_222.sub b/test/ntuple_qcd_700_1000/batch/condor_222.sub deleted file mode 100644 index acbcea6b807..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_222.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.222.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_222.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.222.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_223.sub b/test/ntuple_qcd_700_1000/batch/condor_223.sub deleted file mode 100644 index 8b8eacd9da5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_223.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.223.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_223.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.223.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_224.sub b/test/ntuple_qcd_700_1000/batch/condor_224.sub deleted file mode 100644 index d962f7cb272..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_224.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.224.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_224.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.224.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_225.sub b/test/ntuple_qcd_700_1000/batch/condor_225.sub deleted file mode 100644 index 3a95453b3c9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_225.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.225.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_225.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.225.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_226.sub b/test/ntuple_qcd_700_1000/batch/condor_226.sub deleted file mode 100644 index 19d3ff9047c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_226.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.226.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_226.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.226.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_227.sub b/test/ntuple_qcd_700_1000/batch/condor_227.sub deleted file mode 100644 index 7155473bfba..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_227.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.227.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_227.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.227.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_228.sub b/test/ntuple_qcd_700_1000/batch/condor_228.sub deleted file mode 100644 index 1e047d704f2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_228.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.228.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_228.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.228.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_229.sub b/test/ntuple_qcd_700_1000/batch/condor_229.sub deleted file mode 100644 index 821f9d0be20..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_229.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.229.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_229.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.229.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_23.sub b/test/ntuple_qcd_700_1000/batch/condor_23.sub deleted file mode 100644 index 32ff998fb6a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_23.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.23.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_23.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.23.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_230.sub b/test/ntuple_qcd_700_1000/batch/condor_230.sub deleted file mode 100644 index 55901df5353..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_230.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.230.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_230.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.230.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_231.sub b/test/ntuple_qcd_700_1000/batch/condor_231.sub deleted file mode 100644 index 42bc22db820..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_231.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.231.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_231.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.231.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_232.sub b/test/ntuple_qcd_700_1000/batch/condor_232.sub deleted file mode 100644 index b1c80c4ca12..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_232.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.232.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_232.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.232.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_233.sub b/test/ntuple_qcd_700_1000/batch/condor_233.sub deleted file mode 100644 index 4bfaeb2740a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_233.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.233.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_233.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.233.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_234.sub b/test/ntuple_qcd_700_1000/batch/condor_234.sub deleted file mode 100644 index 11be7279473..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_234.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.234.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_234.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.234.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_235.sub b/test/ntuple_qcd_700_1000/batch/condor_235.sub deleted file mode 100644 index 8d4b52ae3f1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_235.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.235.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_235.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.235.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_236.sub b/test/ntuple_qcd_700_1000/batch/condor_236.sub deleted file mode 100644 index 7ac1b13f799..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_236.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.236.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_236.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.236.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_237.sub b/test/ntuple_qcd_700_1000/batch/condor_237.sub deleted file mode 100644 index 6a996a9e8bb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_237.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.237.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_237.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.237.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_238.sub b/test/ntuple_qcd_700_1000/batch/condor_238.sub deleted file mode 100644 index c468d33af25..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_238.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.238.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_238.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.238.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_239.sub b/test/ntuple_qcd_700_1000/batch/condor_239.sub deleted file mode 100644 index 3dbc56bf3dc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_239.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.239.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_239.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.239.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_24.sub b/test/ntuple_qcd_700_1000/batch/condor_24.sub deleted file mode 100644 index 64c0058c720..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_24.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.24.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_24.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.24.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_240.sub b/test/ntuple_qcd_700_1000/batch/condor_240.sub deleted file mode 100644 index 8105a15b458..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_240.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.240.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_240.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.240.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_241.sub b/test/ntuple_qcd_700_1000/batch/condor_241.sub deleted file mode 100644 index 3271e1ad2c0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_241.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.241.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_241.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.241.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_242.sub b/test/ntuple_qcd_700_1000/batch/condor_242.sub deleted file mode 100644 index af86d3d7d12..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_242.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.242.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_242.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.242.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_243.sub b/test/ntuple_qcd_700_1000/batch/condor_243.sub deleted file mode 100644 index 55201e28f31..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_243.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.243.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_243.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.243.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_244.sub b/test/ntuple_qcd_700_1000/batch/condor_244.sub deleted file mode 100644 index a99640585b0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_244.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.244.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_244.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.244.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_245.sub b/test/ntuple_qcd_700_1000/batch/condor_245.sub deleted file mode 100644 index 2afbb7bf564..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_245.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.245.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_245.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.245.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_246.sub b/test/ntuple_qcd_700_1000/batch/condor_246.sub deleted file mode 100644 index 45107f7c963..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_246.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.246.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_246.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.246.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_247.sub b/test/ntuple_qcd_700_1000/batch/condor_247.sub deleted file mode 100644 index 8af2df399c9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_247.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.247.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_247.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.247.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_248.sub b/test/ntuple_qcd_700_1000/batch/condor_248.sub deleted file mode 100644 index 8e72e8cc0ea..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_248.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.248.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_248.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.248.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_249.sub b/test/ntuple_qcd_700_1000/batch/condor_249.sub deleted file mode 100644 index 12d0dc322ee..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_249.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.249.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_249.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.249.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_25.sub b/test/ntuple_qcd_700_1000/batch/condor_25.sub deleted file mode 100644 index c0300249bf2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_25.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.25.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_25.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.25.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_250.sub b/test/ntuple_qcd_700_1000/batch/condor_250.sub deleted file mode 100644 index cb12c8365a5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_250.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.250.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_250.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.250.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_251.sub b/test/ntuple_qcd_700_1000/batch/condor_251.sub deleted file mode 100644 index 9326d2a72fc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_251.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.251.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_251.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.251.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_252.sub b/test/ntuple_qcd_700_1000/batch/condor_252.sub deleted file mode 100644 index 08a04dd6b86..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_252.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.252.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_252.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.252.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_253.sub b/test/ntuple_qcd_700_1000/batch/condor_253.sub deleted file mode 100644 index 2987fe36389..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_253.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.253.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_253.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.253.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_254.sub b/test/ntuple_qcd_700_1000/batch/condor_254.sub deleted file mode 100644 index db784f48a69..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_254.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.254.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_254.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.254.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_255.sub b/test/ntuple_qcd_700_1000/batch/condor_255.sub deleted file mode 100644 index 128bec165c6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_255.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.255.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_255.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.255.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_256.sub b/test/ntuple_qcd_700_1000/batch/condor_256.sub deleted file mode 100644 index 1e02dce7a89..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_256.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.256.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_256.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.256.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_257.sub b/test/ntuple_qcd_700_1000/batch/condor_257.sub deleted file mode 100644 index f06c2afb1b2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_257.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.257.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_257.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.257.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_258.sub b/test/ntuple_qcd_700_1000/batch/condor_258.sub deleted file mode 100644 index 9d3b253e3e5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_258.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.258.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_258.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.258.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_259.sub b/test/ntuple_qcd_700_1000/batch/condor_259.sub deleted file mode 100644 index 6800c65492e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_259.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.259.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_259.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.259.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_26.sub b/test/ntuple_qcd_700_1000/batch/condor_26.sub deleted file mode 100644 index 348a7212ba6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_26.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.26.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_26.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.26.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_260.sub b/test/ntuple_qcd_700_1000/batch/condor_260.sub deleted file mode 100644 index bb8db9c9edd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_260.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.260.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_260.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.260.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_261.sub b/test/ntuple_qcd_700_1000/batch/condor_261.sub deleted file mode 100644 index aac4208e72b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_261.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.261.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_261.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.261.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_262.sub b/test/ntuple_qcd_700_1000/batch/condor_262.sub deleted file mode 100644 index a8ee19e780b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_262.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.262.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_262.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.262.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_263.sub b/test/ntuple_qcd_700_1000/batch/condor_263.sub deleted file mode 100644 index 25e3124d2c2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_263.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.263.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_263.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.263.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_264.sub b/test/ntuple_qcd_700_1000/batch/condor_264.sub deleted file mode 100644 index 6ab10a12039..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_264.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.264.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_264.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.264.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_265.sub b/test/ntuple_qcd_700_1000/batch/condor_265.sub deleted file mode 100644 index 67aac4c49b0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_265.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.265.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_265.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.265.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_266.sub b/test/ntuple_qcd_700_1000/batch/condor_266.sub deleted file mode 100644 index 4863830e874..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_266.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.266.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_266.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.266.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_267.sub b/test/ntuple_qcd_700_1000/batch/condor_267.sub deleted file mode 100644 index 2170c09c927..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_267.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.267.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_267.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.267.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_268.sub b/test/ntuple_qcd_700_1000/batch/condor_268.sub deleted file mode 100644 index 5c37b8121a4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_268.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.268.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_268.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.268.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_269.sub b/test/ntuple_qcd_700_1000/batch/condor_269.sub deleted file mode 100644 index 253c61e4ca5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_269.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.269.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_269.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.269.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_27.sub b/test/ntuple_qcd_700_1000/batch/condor_27.sub deleted file mode 100644 index fdaac1fca0a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_27.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.27.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_27.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.27.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_270.sub b/test/ntuple_qcd_700_1000/batch/condor_270.sub deleted file mode 100644 index 2d65dd44b4d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_270.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.270.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_270.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.270.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_271.sub b/test/ntuple_qcd_700_1000/batch/condor_271.sub deleted file mode 100644 index 6c558c7283d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_271.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.271.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_271.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.271.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_272.sub b/test/ntuple_qcd_700_1000/batch/condor_272.sub deleted file mode 100644 index 37853f859d1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_272.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.272.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_272.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.272.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_273.sub b/test/ntuple_qcd_700_1000/batch/condor_273.sub deleted file mode 100644 index 5853e7f5267..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_273.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.273.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_273.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.273.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_274.sub b/test/ntuple_qcd_700_1000/batch/condor_274.sub deleted file mode 100644 index ef11e5100a6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_274.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.274.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_274.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.274.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_275.sub b/test/ntuple_qcd_700_1000/batch/condor_275.sub deleted file mode 100644 index 754505470b4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_275.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.275.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_275.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.275.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_276.sub b/test/ntuple_qcd_700_1000/batch/condor_276.sub deleted file mode 100644 index 3047bfda7c3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_276.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.276.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_276.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.276.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_277.sub b/test/ntuple_qcd_700_1000/batch/condor_277.sub deleted file mode 100644 index b6b760c7847..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_277.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.277.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_277.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.277.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_278.sub b/test/ntuple_qcd_700_1000/batch/condor_278.sub deleted file mode 100644 index bcf52815706..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_278.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.278.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_278.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.278.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_279.sub b/test/ntuple_qcd_700_1000/batch/condor_279.sub deleted file mode 100644 index c7151c9fd22..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_279.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.279.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_279.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.279.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_28.sub b/test/ntuple_qcd_700_1000/batch/condor_28.sub deleted file mode 100644 index 4bc31fc0d7a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_28.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.28.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_28.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.28.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_280.sub b/test/ntuple_qcd_700_1000/batch/condor_280.sub deleted file mode 100644 index 4a7de48760d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_280.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.280.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_280.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.280.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_281.sub b/test/ntuple_qcd_700_1000/batch/condor_281.sub deleted file mode 100644 index e5edf641823..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_281.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.281.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_281.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.281.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_282.sub b/test/ntuple_qcd_700_1000/batch/condor_282.sub deleted file mode 100644 index 73a61345738..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_282.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.282.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_282.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.282.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_283.sub b/test/ntuple_qcd_700_1000/batch/condor_283.sub deleted file mode 100644 index 3d576719967..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_283.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.283.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_283.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.283.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_284.sub b/test/ntuple_qcd_700_1000/batch/condor_284.sub deleted file mode 100644 index 01ce2c1928c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_284.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.284.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_284.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.284.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_285.sub b/test/ntuple_qcd_700_1000/batch/condor_285.sub deleted file mode 100644 index 83dc2971046..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_285.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.285.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_285.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.285.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_286.sub b/test/ntuple_qcd_700_1000/batch/condor_286.sub deleted file mode 100644 index aa8b95f3d57..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_286.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.286.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_286.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.286.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_287.sub b/test/ntuple_qcd_700_1000/batch/condor_287.sub deleted file mode 100644 index 8c36c59395d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_287.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.287.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_287.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.287.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_288.sub b/test/ntuple_qcd_700_1000/batch/condor_288.sub deleted file mode 100644 index b460d8bebf9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_288.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.288.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_288.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.288.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_289.sub b/test/ntuple_qcd_700_1000/batch/condor_289.sub deleted file mode 100644 index 1530d4cded2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_289.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.289.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_289.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.289.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_29.sub b/test/ntuple_qcd_700_1000/batch/condor_29.sub deleted file mode 100644 index 3c560d7784a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_29.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.29.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_29.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.29.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_290.sub b/test/ntuple_qcd_700_1000/batch/condor_290.sub deleted file mode 100644 index 016f0fb915f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_290.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.290.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_290.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.290.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_291.sub b/test/ntuple_qcd_700_1000/batch/condor_291.sub deleted file mode 100644 index 5adbd28f862..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_291.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.291.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_291.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.291.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_292.sub b/test/ntuple_qcd_700_1000/batch/condor_292.sub deleted file mode 100644 index c8735afb2b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_292.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.292.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_292.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.292.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_293.sub b/test/ntuple_qcd_700_1000/batch/condor_293.sub deleted file mode 100644 index 8808217f24a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_293.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.293.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_293.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.293.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_294.sub b/test/ntuple_qcd_700_1000/batch/condor_294.sub deleted file mode 100644 index c0e8d280a8d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_294.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.294.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_294.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.294.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_295.sub b/test/ntuple_qcd_700_1000/batch/condor_295.sub deleted file mode 100644 index e02d6ba279a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_295.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.295.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_295.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.295.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_296.sub b/test/ntuple_qcd_700_1000/batch/condor_296.sub deleted file mode 100644 index 29d784ea845..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_296.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.296.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_296.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.296.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_297.sub b/test/ntuple_qcd_700_1000/batch/condor_297.sub deleted file mode 100644 index e68ca66050b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_297.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.297.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_297.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.297.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_298.sub b/test/ntuple_qcd_700_1000/batch/condor_298.sub deleted file mode 100644 index 46ac5411618..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_298.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.298.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_298.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.298.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_299.sub b/test/ntuple_qcd_700_1000/batch/condor_299.sub deleted file mode 100644 index 4f04b9feee6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_299.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.299.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_299.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.299.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_3.sub b/test/ntuple_qcd_700_1000/batch/condor_3.sub deleted file mode 100644 index 1258ae03af5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_30.sub b/test/ntuple_qcd_700_1000/batch/condor_30.sub deleted file mode 100644 index f81bd972adc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_30.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.30.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_30.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.30.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_300.sub b/test/ntuple_qcd_700_1000/batch/condor_300.sub deleted file mode 100644 index 4c066edcb2d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_300.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.300.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_300.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.300.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_301.sub b/test/ntuple_qcd_700_1000/batch/condor_301.sub deleted file mode 100644 index fc007b3d1be..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_301.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.301.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_301.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.301.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_302.sub b/test/ntuple_qcd_700_1000/batch/condor_302.sub deleted file mode 100644 index 6898e063e63..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_302.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.302.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_302.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.302.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_303.sub b/test/ntuple_qcd_700_1000/batch/condor_303.sub deleted file mode 100644 index 986e9bf31b3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_303.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.303.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_303.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.303.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_304.sub b/test/ntuple_qcd_700_1000/batch/condor_304.sub deleted file mode 100644 index a9c162df559..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_304.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.304.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_304.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.304.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_305.sub b/test/ntuple_qcd_700_1000/batch/condor_305.sub deleted file mode 100644 index 25ae3e23405..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_305.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.305.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_305.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.305.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_306.sub b/test/ntuple_qcd_700_1000/batch/condor_306.sub deleted file mode 100644 index 2eb34e98019..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_306.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.306.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_306.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.306.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_307.sub b/test/ntuple_qcd_700_1000/batch/condor_307.sub deleted file mode 100644 index 023417d2aab..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_307.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.307.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_307.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.307.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_308.sub b/test/ntuple_qcd_700_1000/batch/condor_308.sub deleted file mode 100644 index 28e73e7d6d8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_308.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.308.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_308.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.308.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_309.sub b/test/ntuple_qcd_700_1000/batch/condor_309.sub deleted file mode 100644 index ffc94559b16..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_309.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.309.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_309.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.309.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_31.sub b/test/ntuple_qcd_700_1000/batch/condor_31.sub deleted file mode 100644 index ca0bf50ee44..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_31.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.31.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_31.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.31.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_310.sub b/test/ntuple_qcd_700_1000/batch/condor_310.sub deleted file mode 100644 index 5b770a75c8b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_310.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.310.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_310.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.310.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_311.sub b/test/ntuple_qcd_700_1000/batch/condor_311.sub deleted file mode 100644 index 63e808be2b3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_311.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.311.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_311.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.311.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_312.sub b/test/ntuple_qcd_700_1000/batch/condor_312.sub deleted file mode 100644 index a061ad01d1b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_312.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.312.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_312.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.312.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_313.sub b/test/ntuple_qcd_700_1000/batch/condor_313.sub deleted file mode 100644 index e1fa3f9aded..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_313.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.313.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_313.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.313.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_314.sub b/test/ntuple_qcd_700_1000/batch/condor_314.sub deleted file mode 100644 index 35c5a0ab2b1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_314.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.314.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_314.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.314.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_315.sub b/test/ntuple_qcd_700_1000/batch/condor_315.sub deleted file mode 100644 index 7edb79217d3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_315.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.315.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_315.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.315.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_316.sub b/test/ntuple_qcd_700_1000/batch/condor_316.sub deleted file mode 100644 index ddfccb8e68b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_316.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.316.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_316.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.316.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_317.sub b/test/ntuple_qcd_700_1000/batch/condor_317.sub deleted file mode 100644 index ee4f4e1a449..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_317.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.317.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_317.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.317.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_318.sub b/test/ntuple_qcd_700_1000/batch/condor_318.sub deleted file mode 100644 index 04b943a2a0f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_318.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.318.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_318.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.318.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_319.sub b/test/ntuple_qcd_700_1000/batch/condor_319.sub deleted file mode 100644 index b8f342fda2d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_319.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.319.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_319.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.319.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_32.sub b/test/ntuple_qcd_700_1000/batch/condor_32.sub deleted file mode 100644 index 14c7256a8d0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_32.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.32.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_32.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.32.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_320.sub b/test/ntuple_qcd_700_1000/batch/condor_320.sub deleted file mode 100644 index f97ebb28a5b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_320.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.320.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_320.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.320.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_321.sub b/test/ntuple_qcd_700_1000/batch/condor_321.sub deleted file mode 100644 index a7cf0aecff8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_321.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.321.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_321.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.321.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_322.sub b/test/ntuple_qcd_700_1000/batch/condor_322.sub deleted file mode 100644 index bdde3c9c35f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_322.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.322.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_322.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.322.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_323.sub b/test/ntuple_qcd_700_1000/batch/condor_323.sub deleted file mode 100644 index acef5ebc9ae..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_323.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.323.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_323.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.323.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_324.sub b/test/ntuple_qcd_700_1000/batch/condor_324.sub deleted file mode 100644 index 91b27540dcd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_324.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.324.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_324.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.324.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_325.sub b/test/ntuple_qcd_700_1000/batch/condor_325.sub deleted file mode 100644 index 1a640a604ad..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_325.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.325.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_325.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.325.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_326.sub b/test/ntuple_qcd_700_1000/batch/condor_326.sub deleted file mode 100644 index 58329f857ae..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_326.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.326.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_326.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.326.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_327.sub b/test/ntuple_qcd_700_1000/batch/condor_327.sub deleted file mode 100644 index 1e00cd6898a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_327.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.327.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_327.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.327.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_328.sub b/test/ntuple_qcd_700_1000/batch/condor_328.sub deleted file mode 100644 index ec9a57661fc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_328.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.328.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_328.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.328.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_329.sub b/test/ntuple_qcd_700_1000/batch/condor_329.sub deleted file mode 100644 index feaf022f4a8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_329.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.329.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_329.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.329.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_33.sub b/test/ntuple_qcd_700_1000/batch/condor_33.sub deleted file mode 100644 index 3648086ce8c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_33.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.33.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_33.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.33.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_330.sub b/test/ntuple_qcd_700_1000/batch/condor_330.sub deleted file mode 100644 index 093426f52c8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_330.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.330.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_330.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.330.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_331.sub b/test/ntuple_qcd_700_1000/batch/condor_331.sub deleted file mode 100644 index 52080b5fbe7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_331.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.331.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_331.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.331.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_332.sub b/test/ntuple_qcd_700_1000/batch/condor_332.sub deleted file mode 100644 index a832bbb9b58..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_332.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.332.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_332.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.332.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_333.sub b/test/ntuple_qcd_700_1000/batch/condor_333.sub deleted file mode 100644 index 03f093387c5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_333.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.333.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_333.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.333.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_334.sub b/test/ntuple_qcd_700_1000/batch/condor_334.sub deleted file mode 100644 index a28a5497543..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_334.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.334.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_334.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.334.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_335.sub b/test/ntuple_qcd_700_1000/batch/condor_335.sub deleted file mode 100644 index eb47b805081..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_335.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.335.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_335.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.335.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_336.sub b/test/ntuple_qcd_700_1000/batch/condor_336.sub deleted file mode 100644 index 4d19213ee8e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_336.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.336.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_336.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.336.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_337.sub b/test/ntuple_qcd_700_1000/batch/condor_337.sub deleted file mode 100644 index 5594eb66779..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_337.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.337.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_337.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.337.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_338.sub b/test/ntuple_qcd_700_1000/batch/condor_338.sub deleted file mode 100644 index a3e2ef8fce1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_338.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.338.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_338.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.338.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_339.sub b/test/ntuple_qcd_700_1000/batch/condor_339.sub deleted file mode 100644 index e058f91cd63..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_339.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.339.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_339.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.339.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_34.sub b/test/ntuple_qcd_700_1000/batch/condor_34.sub deleted file mode 100644 index 79ac76a93d9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_34.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.34.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_34.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.34.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_340.sub b/test/ntuple_qcd_700_1000/batch/condor_340.sub deleted file mode 100644 index ceec396895d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_340.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.340.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_340.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.340.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_341.sub b/test/ntuple_qcd_700_1000/batch/condor_341.sub deleted file mode 100644 index 52a253d1bb4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_341.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.341.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_341.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.341.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_342.sub b/test/ntuple_qcd_700_1000/batch/condor_342.sub deleted file mode 100644 index fa9956e7a94..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_342.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.342.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_342.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.342.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_343.sub b/test/ntuple_qcd_700_1000/batch/condor_343.sub deleted file mode 100644 index 5c83cb95d7a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_343.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.343.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_343.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.343.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_344.sub b/test/ntuple_qcd_700_1000/batch/condor_344.sub deleted file mode 100644 index 522560f93a0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_344.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.344.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_344.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.344.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_345.sub b/test/ntuple_qcd_700_1000/batch/condor_345.sub deleted file mode 100644 index 6eca66f6636..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_345.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.345.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_345.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.345.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_346.sub b/test/ntuple_qcd_700_1000/batch/condor_346.sub deleted file mode 100644 index bcb2c611410..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_346.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.346.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_346.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.346.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_347.sub b/test/ntuple_qcd_700_1000/batch/condor_347.sub deleted file mode 100644 index 7b8e28f2898..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_347.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.347.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_347.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.347.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_348.sub b/test/ntuple_qcd_700_1000/batch/condor_348.sub deleted file mode 100644 index 64f45ed3aed..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_348.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.348.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_348.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.348.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_349.sub b/test/ntuple_qcd_700_1000/batch/condor_349.sub deleted file mode 100644 index 5159f92dd0f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_349.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.349.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_349.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.349.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_35.sub b/test/ntuple_qcd_700_1000/batch/condor_35.sub deleted file mode 100644 index 00c2e0c1784..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_35.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.35.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_35.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.35.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_350.sub b/test/ntuple_qcd_700_1000/batch/condor_350.sub deleted file mode 100644 index a49acd35ca8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_350.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.350.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_350.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.350.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_351.sub b/test/ntuple_qcd_700_1000/batch/condor_351.sub deleted file mode 100644 index 364e6dd2dfd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_351.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.351.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_351.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.351.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_352.sub b/test/ntuple_qcd_700_1000/batch/condor_352.sub deleted file mode 100644 index 06a63e63eef..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_352.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.352.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_352.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.352.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_353.sub b/test/ntuple_qcd_700_1000/batch/condor_353.sub deleted file mode 100644 index 3eba322c77f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_353.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.353.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_353.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.353.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_354.sub b/test/ntuple_qcd_700_1000/batch/condor_354.sub deleted file mode 100644 index a6025f22e0d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_354.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.354.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_354.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.354.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_355.sub b/test/ntuple_qcd_700_1000/batch/condor_355.sub deleted file mode 100644 index b8b5797ae5a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_355.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.355.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_355.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.355.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_356.sub b/test/ntuple_qcd_700_1000/batch/condor_356.sub deleted file mode 100644 index ef749e56ece..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_356.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.356.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_356.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.356.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_357.sub b/test/ntuple_qcd_700_1000/batch/condor_357.sub deleted file mode 100644 index 0630f90c148..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_357.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.357.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_357.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.357.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_358.sub b/test/ntuple_qcd_700_1000/batch/condor_358.sub deleted file mode 100644 index cdfaf1eebf5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_358.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.358.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_358.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.358.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_359.sub b/test/ntuple_qcd_700_1000/batch/condor_359.sub deleted file mode 100644 index 462404be6ad..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_359.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.359.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_359.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.359.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_36.sub b/test/ntuple_qcd_700_1000/batch/condor_36.sub deleted file mode 100644 index 2737182b805..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_36.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.36.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_36.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.36.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_360.sub b/test/ntuple_qcd_700_1000/batch/condor_360.sub deleted file mode 100644 index 997d4cf6571..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_360.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.360.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_360.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.360.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_361.sub b/test/ntuple_qcd_700_1000/batch/condor_361.sub deleted file mode 100644 index 3de257a5b04..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_361.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.361.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_361.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.361.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_362.sub b/test/ntuple_qcd_700_1000/batch/condor_362.sub deleted file mode 100644 index 9fa4ce4d9de..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_362.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.362.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_362.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.362.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_363.sub b/test/ntuple_qcd_700_1000/batch/condor_363.sub deleted file mode 100644 index db348ea366a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_363.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.363.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_363.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.363.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_364.sub b/test/ntuple_qcd_700_1000/batch/condor_364.sub deleted file mode 100644 index 766cb35fbba..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_364.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.364.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_364.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.364.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_365.sub b/test/ntuple_qcd_700_1000/batch/condor_365.sub deleted file mode 100644 index 4b657b00e34..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_365.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.365.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_365.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.365.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_366.sub b/test/ntuple_qcd_700_1000/batch/condor_366.sub deleted file mode 100644 index b255a82653b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_366.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.366.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_366.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.366.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_367.sub b/test/ntuple_qcd_700_1000/batch/condor_367.sub deleted file mode 100644 index 2324840b100..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_367.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.367.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_367.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.367.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_368.sub b/test/ntuple_qcd_700_1000/batch/condor_368.sub deleted file mode 100644 index f412127e4c4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_368.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.368.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_368.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.368.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_369.sub b/test/ntuple_qcd_700_1000/batch/condor_369.sub deleted file mode 100644 index 294fcac440b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_369.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.369.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_369.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.369.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_37.sub b/test/ntuple_qcd_700_1000/batch/condor_37.sub deleted file mode 100644 index 9dae144907d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_37.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.37.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_37.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.37.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_370.sub b/test/ntuple_qcd_700_1000/batch/condor_370.sub deleted file mode 100644 index 4fc7b6999fc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_370.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.370.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_370.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.370.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_371.sub b/test/ntuple_qcd_700_1000/batch/condor_371.sub deleted file mode 100644 index ff62fb79044..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_371.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.371.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_371.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.371.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_372.sub b/test/ntuple_qcd_700_1000/batch/condor_372.sub deleted file mode 100644 index c912f903553..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_372.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.372.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_372.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.372.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_373.sub b/test/ntuple_qcd_700_1000/batch/condor_373.sub deleted file mode 100644 index d81f300d504..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_373.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.373.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_373.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.373.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_374.sub b/test/ntuple_qcd_700_1000/batch/condor_374.sub deleted file mode 100644 index 5512a492043..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_374.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.374.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_374.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.374.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_375.sub b/test/ntuple_qcd_700_1000/batch/condor_375.sub deleted file mode 100644 index 653711a25a0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_375.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.375.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_375.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.375.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_376.sub b/test/ntuple_qcd_700_1000/batch/condor_376.sub deleted file mode 100644 index 8732295160e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_376.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.376.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_376.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.376.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_377.sub b/test/ntuple_qcd_700_1000/batch/condor_377.sub deleted file mode 100644 index a7baffaf9f3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_377.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.377.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_377.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.377.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_378.sub b/test/ntuple_qcd_700_1000/batch/condor_378.sub deleted file mode 100644 index 5a9c160c043..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_378.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.378.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_378.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.378.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_379.sub b/test/ntuple_qcd_700_1000/batch/condor_379.sub deleted file mode 100644 index 4a69779158f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_379.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.379.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_379.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.379.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_38.sub b/test/ntuple_qcd_700_1000/batch/condor_38.sub deleted file mode 100644 index 231d9f1824b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_38.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.38.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_38.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.38.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_380.sub b/test/ntuple_qcd_700_1000/batch/condor_380.sub deleted file mode 100644 index 18b093f8aca..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_380.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.380.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_380.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.380.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_381.sub b/test/ntuple_qcd_700_1000/batch/condor_381.sub deleted file mode 100644 index 39b0281b321..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_381.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.381.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_381.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.381.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_382.sub b/test/ntuple_qcd_700_1000/batch/condor_382.sub deleted file mode 100644 index db90ca38049..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_382.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.382.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_382.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.382.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_383.sub b/test/ntuple_qcd_700_1000/batch/condor_383.sub deleted file mode 100644 index 75dcfe7b6bf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_383.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.383.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_383.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.383.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_384.sub b/test/ntuple_qcd_700_1000/batch/condor_384.sub deleted file mode 100644 index 975269e3915..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_384.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.384.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_384.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.384.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_385.sub b/test/ntuple_qcd_700_1000/batch/condor_385.sub deleted file mode 100644 index 7fbff66756b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_385.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.385.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_385.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.385.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_386.sub b/test/ntuple_qcd_700_1000/batch/condor_386.sub deleted file mode 100644 index b3421105d2f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_386.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.386.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_386.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.386.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_387.sub b/test/ntuple_qcd_700_1000/batch/condor_387.sub deleted file mode 100644 index de725f562a9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_387.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.387.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_387.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.387.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_388.sub b/test/ntuple_qcd_700_1000/batch/condor_388.sub deleted file mode 100644 index e8f26cd621f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_388.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.388.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_388.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.388.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_389.sub b/test/ntuple_qcd_700_1000/batch/condor_389.sub deleted file mode 100644 index 6fa2d3ce5a8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_389.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.389.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_389.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.389.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_39.sub b/test/ntuple_qcd_700_1000/batch/condor_39.sub deleted file mode 100644 index e899e17d836..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_39.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.39.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_39.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.39.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_390.sub b/test/ntuple_qcd_700_1000/batch/condor_390.sub deleted file mode 100644 index 76c97aad319..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_390.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.390.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_390.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.390.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_391.sub b/test/ntuple_qcd_700_1000/batch/condor_391.sub deleted file mode 100644 index fe1f4edaae1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_391.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.391.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_391.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.391.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_392.sub b/test/ntuple_qcd_700_1000/batch/condor_392.sub deleted file mode 100644 index d76fd77a57c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_392.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.392.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_392.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.392.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_393.sub b/test/ntuple_qcd_700_1000/batch/condor_393.sub deleted file mode 100644 index d589bc297d8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_393.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.393.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_393.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.393.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_394.sub b/test/ntuple_qcd_700_1000/batch/condor_394.sub deleted file mode 100644 index acc9bd8be9d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_394.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.394.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_394.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.394.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_395.sub b/test/ntuple_qcd_700_1000/batch/condor_395.sub deleted file mode 100644 index d1919d4b24e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_395.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.395.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_395.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.395.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_396.sub b/test/ntuple_qcd_700_1000/batch/condor_396.sub deleted file mode 100644 index c28932c9e4d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_396.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.396.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_396.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.396.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_397.sub b/test/ntuple_qcd_700_1000/batch/condor_397.sub deleted file mode 100644 index bbdddc1a8fb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_397.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.397.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_397.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.397.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_398.sub b/test/ntuple_qcd_700_1000/batch/condor_398.sub deleted file mode 100644 index cccdfae4f46..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_398.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.398.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_398.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.398.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_399.sub b/test/ntuple_qcd_700_1000/batch/condor_399.sub deleted file mode 100644 index 94a125730dc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_399.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.399.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_399.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.399.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_4.sub b/test/ntuple_qcd_700_1000/batch/condor_4.sub deleted file mode 100644 index d6b198226a7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_40.sub b/test/ntuple_qcd_700_1000/batch/condor_40.sub deleted file mode 100644 index 7637dd0565a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_40.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.40.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_40.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.40.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_400.sub b/test/ntuple_qcd_700_1000/batch/condor_400.sub deleted file mode 100644 index 19d58e33438..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_400.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.400.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_400.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.400.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_401.sub b/test/ntuple_qcd_700_1000/batch/condor_401.sub deleted file mode 100644 index 218444a6c00..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_401.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.401.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_401.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.401.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_402.sub b/test/ntuple_qcd_700_1000/batch/condor_402.sub deleted file mode 100644 index b72567ce994..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_402.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.402.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_402.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.402.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_403.sub b/test/ntuple_qcd_700_1000/batch/condor_403.sub deleted file mode 100644 index 4a0bf1afefc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_403.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.403.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_403.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.403.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_404.sub b/test/ntuple_qcd_700_1000/batch/condor_404.sub deleted file mode 100644 index 42d1962fc78..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_404.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.404.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_404.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.404.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_405.sub b/test/ntuple_qcd_700_1000/batch/condor_405.sub deleted file mode 100644 index 6386b61c475..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_405.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.405.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_405.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.405.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_406.sub b/test/ntuple_qcd_700_1000/batch/condor_406.sub deleted file mode 100644 index 1d10ffa9f42..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_406.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.406.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_406.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.406.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_407.sub b/test/ntuple_qcd_700_1000/batch/condor_407.sub deleted file mode 100644 index f9a281674e9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_407.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.407.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_407.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.407.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_408.sub b/test/ntuple_qcd_700_1000/batch/condor_408.sub deleted file mode 100644 index 54309264752..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_408.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.408.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_408.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.408.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_409.sub b/test/ntuple_qcd_700_1000/batch/condor_409.sub deleted file mode 100644 index b7a6ee3346e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_409.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.409.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_409.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.409.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_41.sub b/test/ntuple_qcd_700_1000/batch/condor_41.sub deleted file mode 100644 index d45c9e55e79..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_41.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.41.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_41.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.41.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_410.sub b/test/ntuple_qcd_700_1000/batch/condor_410.sub deleted file mode 100644 index 82ce1eb2769..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_410.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.410.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_410.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.410.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_411.sub b/test/ntuple_qcd_700_1000/batch/condor_411.sub deleted file mode 100644 index 807bea373f3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_411.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.411.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_411.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.411.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_412.sub b/test/ntuple_qcd_700_1000/batch/condor_412.sub deleted file mode 100644 index 09b058f5943..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_412.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.412.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_412.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.412.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_413.sub b/test/ntuple_qcd_700_1000/batch/condor_413.sub deleted file mode 100644 index fd2e97250c1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_413.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.413.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_413.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.413.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_414.sub b/test/ntuple_qcd_700_1000/batch/condor_414.sub deleted file mode 100644 index a7c66731abe..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_414.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.414.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_414.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.414.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_415.sub b/test/ntuple_qcd_700_1000/batch/condor_415.sub deleted file mode 100644 index 22518a32109..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_415.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.415.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_415.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.415.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_416.sub b/test/ntuple_qcd_700_1000/batch/condor_416.sub deleted file mode 100644 index cd4c8be82d2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_416.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.416.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_416.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.416.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_417.sub b/test/ntuple_qcd_700_1000/batch/condor_417.sub deleted file mode 100644 index e7374e60b30..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_417.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.417.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_417.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.417.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_418.sub b/test/ntuple_qcd_700_1000/batch/condor_418.sub deleted file mode 100644 index 4c22d0e2cd1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_418.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.418.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_418.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.418.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_419.sub b/test/ntuple_qcd_700_1000/batch/condor_419.sub deleted file mode 100644 index f861a9db6e5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_419.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.419.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_419.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.419.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_42.sub b/test/ntuple_qcd_700_1000/batch/condor_42.sub deleted file mode 100644 index 75d67e4a08a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_42.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.42.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_42.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.42.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_420.sub b/test/ntuple_qcd_700_1000/batch/condor_420.sub deleted file mode 100644 index becc76d0345..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_420.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.420.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_420.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.420.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_421.sub b/test/ntuple_qcd_700_1000/batch/condor_421.sub deleted file mode 100644 index 27cbe9a95f1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_421.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.421.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_421.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.421.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_422.sub b/test/ntuple_qcd_700_1000/batch/condor_422.sub deleted file mode 100644 index e85aea36723..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_422.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.422.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_422.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.422.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_423.sub b/test/ntuple_qcd_700_1000/batch/condor_423.sub deleted file mode 100644 index 4b16009ef22..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_423.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.423.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_423.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.423.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_424.sub b/test/ntuple_qcd_700_1000/batch/condor_424.sub deleted file mode 100644 index 60c1e87aa5a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_424.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.424.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_424.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.424.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_425.sub b/test/ntuple_qcd_700_1000/batch/condor_425.sub deleted file mode 100644 index cf1a29e095a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_425.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.425.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_425.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.425.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_426.sub b/test/ntuple_qcd_700_1000/batch/condor_426.sub deleted file mode 100644 index 64a9c559a54..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_426.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.426.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_426.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.426.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_427.sub b/test/ntuple_qcd_700_1000/batch/condor_427.sub deleted file mode 100644 index 6305360aa88..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_427.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.427.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_427.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.427.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_428.sub b/test/ntuple_qcd_700_1000/batch/condor_428.sub deleted file mode 100644 index 15967b3706f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_428.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.428.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_428.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.428.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_429.sub b/test/ntuple_qcd_700_1000/batch/condor_429.sub deleted file mode 100644 index c5d354c305b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_429.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.429.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_429.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.429.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_43.sub b/test/ntuple_qcd_700_1000/batch/condor_43.sub deleted file mode 100644 index 333562cd4b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_43.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.43.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_43.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.43.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_430.sub b/test/ntuple_qcd_700_1000/batch/condor_430.sub deleted file mode 100644 index d4f0ebf9b76..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_430.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.430.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_430.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.430.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_431.sub b/test/ntuple_qcd_700_1000/batch/condor_431.sub deleted file mode 100644 index 70e3584d4df..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_431.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.431.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_431.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.431.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_432.sub b/test/ntuple_qcd_700_1000/batch/condor_432.sub deleted file mode 100644 index 5240aeaacdf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_432.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.432.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_432.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.432.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_433.sub b/test/ntuple_qcd_700_1000/batch/condor_433.sub deleted file mode 100644 index 6bd4a022678..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_433.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.433.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_433.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.433.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_434.sub b/test/ntuple_qcd_700_1000/batch/condor_434.sub deleted file mode 100644 index e978ad5c9c3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_434.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.434.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_434.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.434.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_435.sub b/test/ntuple_qcd_700_1000/batch/condor_435.sub deleted file mode 100644 index 1caa259d324..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_435.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.435.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_435.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.435.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_436.sub b/test/ntuple_qcd_700_1000/batch/condor_436.sub deleted file mode 100644 index 76f5bcc7b09..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_436.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.436.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_436.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.436.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_437.sub b/test/ntuple_qcd_700_1000/batch/condor_437.sub deleted file mode 100644 index b040170e88f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_437.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.437.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_437.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.437.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_438.sub b/test/ntuple_qcd_700_1000/batch/condor_438.sub deleted file mode 100644 index c31cde9784c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_438.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.438.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_438.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.438.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_439.sub b/test/ntuple_qcd_700_1000/batch/condor_439.sub deleted file mode 100644 index 92772eec934..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_439.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.439.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_439.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.439.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_44.sub b/test/ntuple_qcd_700_1000/batch/condor_44.sub deleted file mode 100644 index cd5c4e9849f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_44.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.44.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_44.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.44.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_440.sub b/test/ntuple_qcd_700_1000/batch/condor_440.sub deleted file mode 100644 index f5becf749e2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_440.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.440.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_440.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.440.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_441.sub b/test/ntuple_qcd_700_1000/batch/condor_441.sub deleted file mode 100644 index b135487fef9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_441.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.441.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_441.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.441.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_442.sub b/test/ntuple_qcd_700_1000/batch/condor_442.sub deleted file mode 100644 index 05087ae60ad..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_442.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.442.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_442.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.442.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_443.sub b/test/ntuple_qcd_700_1000/batch/condor_443.sub deleted file mode 100644 index 543cea2a05a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_443.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.443.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_443.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.443.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_444.sub b/test/ntuple_qcd_700_1000/batch/condor_444.sub deleted file mode 100644 index 55372a29529..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_444.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.444.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_444.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.444.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_445.sub b/test/ntuple_qcd_700_1000/batch/condor_445.sub deleted file mode 100644 index f23daacdc23..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_445.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.445.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_445.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.445.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_446.sub b/test/ntuple_qcd_700_1000/batch/condor_446.sub deleted file mode 100644 index 7340625ab9d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_446.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.446.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_446.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.446.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_447.sub b/test/ntuple_qcd_700_1000/batch/condor_447.sub deleted file mode 100644 index 2d03bf95464..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_447.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.447.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_447.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.447.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_448.sub b/test/ntuple_qcd_700_1000/batch/condor_448.sub deleted file mode 100644 index 88f14fc53e4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_448.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.448.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_448.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.448.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_449.sub b/test/ntuple_qcd_700_1000/batch/condor_449.sub deleted file mode 100644 index d816b07334b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_449.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.449.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_449.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.449.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_45.sub b/test/ntuple_qcd_700_1000/batch/condor_45.sub deleted file mode 100644 index 8d3fd338e49..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_45.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.45.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_45.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.45.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_450.sub b/test/ntuple_qcd_700_1000/batch/condor_450.sub deleted file mode 100644 index f93ceeb5ac1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_450.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.450.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_450.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.450.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_451.sub b/test/ntuple_qcd_700_1000/batch/condor_451.sub deleted file mode 100644 index 68d0c6d450b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_451.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.451.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_451.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.451.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_452.sub b/test/ntuple_qcd_700_1000/batch/condor_452.sub deleted file mode 100644 index 1c35b6fdf50..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_452.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.452.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_452.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.452.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_453.sub b/test/ntuple_qcd_700_1000/batch/condor_453.sub deleted file mode 100644 index 75da051b3d4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_453.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.453.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_453.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.453.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_454.sub b/test/ntuple_qcd_700_1000/batch/condor_454.sub deleted file mode 100644 index db2a64add73..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_454.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.454.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_454.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.454.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_455.sub b/test/ntuple_qcd_700_1000/batch/condor_455.sub deleted file mode 100644 index 439a6f5ed15..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_455.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.455.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_455.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.455.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_456.sub b/test/ntuple_qcd_700_1000/batch/condor_456.sub deleted file mode 100644 index e8f78850ddc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_456.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.456.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_456.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.456.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_457.sub b/test/ntuple_qcd_700_1000/batch/condor_457.sub deleted file mode 100644 index 325aa3910b2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_457.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.457.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_457.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.457.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_458.sub b/test/ntuple_qcd_700_1000/batch/condor_458.sub deleted file mode 100644 index 468a1c4f348..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_458.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.458.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_458.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.458.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_459.sub b/test/ntuple_qcd_700_1000/batch/condor_459.sub deleted file mode 100644 index 2fd14c3c35a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_459.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.459.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_459.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.459.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_46.sub b/test/ntuple_qcd_700_1000/batch/condor_46.sub deleted file mode 100644 index bcbeaea4321..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_46.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.46.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_46.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.46.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_460.sub b/test/ntuple_qcd_700_1000/batch/condor_460.sub deleted file mode 100644 index f6e06e24ff1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_460.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.460.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_460.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.460.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_461.sub b/test/ntuple_qcd_700_1000/batch/condor_461.sub deleted file mode 100644 index 17bc9537adb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_461.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.461.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_461.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.461.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_462.sub b/test/ntuple_qcd_700_1000/batch/condor_462.sub deleted file mode 100644 index da047cc391f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_462.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.462.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_462.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.462.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_463.sub b/test/ntuple_qcd_700_1000/batch/condor_463.sub deleted file mode 100644 index fb158565b87..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_463.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.463.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_463.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.463.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_464.sub b/test/ntuple_qcd_700_1000/batch/condor_464.sub deleted file mode 100644 index 8350e6707b2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_464.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.464.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_464.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.464.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_465.sub b/test/ntuple_qcd_700_1000/batch/condor_465.sub deleted file mode 100644 index 5ca90e80e44..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_465.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.465.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_465.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.465.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_466.sub b/test/ntuple_qcd_700_1000/batch/condor_466.sub deleted file mode 100644 index 158cb7d27d4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_466.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.466.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_466.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.466.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_467.sub b/test/ntuple_qcd_700_1000/batch/condor_467.sub deleted file mode 100644 index 3c54b493d98..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_467.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.467.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_467.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.467.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_468.sub b/test/ntuple_qcd_700_1000/batch/condor_468.sub deleted file mode 100644 index 2585aacc1d6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_468.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.468.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_468.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.468.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_469.sub b/test/ntuple_qcd_700_1000/batch/condor_469.sub deleted file mode 100644 index c4a500353fd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_469.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.469.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_469.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.469.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_47.sub b/test/ntuple_qcd_700_1000/batch/condor_47.sub deleted file mode 100644 index 70d94ef9db4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_47.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.47.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_47.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.47.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_470.sub b/test/ntuple_qcd_700_1000/batch/condor_470.sub deleted file mode 100644 index 2c677b020ca..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_470.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.470.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_470.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.470.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_471.sub b/test/ntuple_qcd_700_1000/batch/condor_471.sub deleted file mode 100644 index 000bc550179..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_471.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.471.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_471.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.471.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_472.sub b/test/ntuple_qcd_700_1000/batch/condor_472.sub deleted file mode 100644 index 73df716547a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_472.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.472.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_472.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.472.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_473.sub b/test/ntuple_qcd_700_1000/batch/condor_473.sub deleted file mode 100644 index fa9e8b227ec..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_473.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.473.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_473.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.473.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_474.sub b/test/ntuple_qcd_700_1000/batch/condor_474.sub deleted file mode 100644 index bac2fe32e7e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_474.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.474.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_474.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.474.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_475.sub b/test/ntuple_qcd_700_1000/batch/condor_475.sub deleted file mode 100644 index a1b2d4581b2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_475.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.475.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_475.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.475.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_476.sub b/test/ntuple_qcd_700_1000/batch/condor_476.sub deleted file mode 100644 index fb030dd49a7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_476.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.476.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_476.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.476.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_477.sub b/test/ntuple_qcd_700_1000/batch/condor_477.sub deleted file mode 100644 index 0184535334f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_477.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.477.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_477.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.477.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_478.sub b/test/ntuple_qcd_700_1000/batch/condor_478.sub deleted file mode 100644 index 088e43865cf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_478.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.478.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_478.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.478.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_479.sub b/test/ntuple_qcd_700_1000/batch/condor_479.sub deleted file mode 100644 index de774d793fd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_479.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.479.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_479.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.479.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_48.sub b/test/ntuple_qcd_700_1000/batch/condor_48.sub deleted file mode 100644 index c610e77aa33..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_48.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.48.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_48.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.48.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_480.sub b/test/ntuple_qcd_700_1000/batch/condor_480.sub deleted file mode 100644 index 0bfdcee3370..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_480.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.480.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_480.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.480.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_481.sub b/test/ntuple_qcd_700_1000/batch/condor_481.sub deleted file mode 100644 index 7d0ac177914..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_481.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.481.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_481.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.481.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_482.sub b/test/ntuple_qcd_700_1000/batch/condor_482.sub deleted file mode 100644 index efbce965b7d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_482.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.482.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_482.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.482.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_483.sub b/test/ntuple_qcd_700_1000/batch/condor_483.sub deleted file mode 100644 index 7bec0a6b12a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_483.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.483.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_483.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.483.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_484.sub b/test/ntuple_qcd_700_1000/batch/condor_484.sub deleted file mode 100644 index 8adcf03efa8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_484.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.484.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_484.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.484.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_485.sub b/test/ntuple_qcd_700_1000/batch/condor_485.sub deleted file mode 100644 index 54a69b4ddad..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_485.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.485.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_485.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.485.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_486.sub b/test/ntuple_qcd_700_1000/batch/condor_486.sub deleted file mode 100644 index a9f3cce9568..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_486.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.486.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_486.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.486.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_487.sub b/test/ntuple_qcd_700_1000/batch/condor_487.sub deleted file mode 100644 index aca756a69ff..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_487.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.487.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_487.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.487.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_488.sub b/test/ntuple_qcd_700_1000/batch/condor_488.sub deleted file mode 100644 index e920b8fd655..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_488.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.488.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_488.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.488.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_489.sub b/test/ntuple_qcd_700_1000/batch/condor_489.sub deleted file mode 100644 index ac2491c1716..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_489.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.489.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_489.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.489.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_49.sub b/test/ntuple_qcd_700_1000/batch/condor_49.sub deleted file mode 100644 index 35a753b2d04..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_49.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.49.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_49.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.49.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_490.sub b/test/ntuple_qcd_700_1000/batch/condor_490.sub deleted file mode 100644 index 67c240d06af..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_490.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.490.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_490.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.490.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_491.sub b/test/ntuple_qcd_700_1000/batch/condor_491.sub deleted file mode 100644 index bda8bca6f56..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_491.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.491.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_491.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.491.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_492.sub b/test/ntuple_qcd_700_1000/batch/condor_492.sub deleted file mode 100644 index d7338a11128..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_492.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.492.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_492.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.492.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_493.sub b/test/ntuple_qcd_700_1000/batch/condor_493.sub deleted file mode 100644 index afa16b8e044..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_493.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.493.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_493.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.493.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_494.sub b/test/ntuple_qcd_700_1000/batch/condor_494.sub deleted file mode 100644 index 7f9d6cd5c1c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_494.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.494.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_494.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.494.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_495.sub b/test/ntuple_qcd_700_1000/batch/condor_495.sub deleted file mode 100644 index 056a665c74a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_495.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.495.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_495.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.495.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_496.sub b/test/ntuple_qcd_700_1000/batch/condor_496.sub deleted file mode 100644 index c597a978869..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_496.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.496.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_496.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.496.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_497.sub b/test/ntuple_qcd_700_1000/batch/condor_497.sub deleted file mode 100644 index 7343d06b1c8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_497.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.497.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_497.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.497.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_498.sub b/test/ntuple_qcd_700_1000/batch/condor_498.sub deleted file mode 100644 index 32077ad1099..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_498.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.498.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_498.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.498.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_499.sub b/test/ntuple_qcd_700_1000/batch/condor_499.sub deleted file mode 100644 index bcdc1b7943d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_499.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.499.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_499.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.499.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_5.sub b/test/ntuple_qcd_700_1000/batch/condor_5.sub deleted file mode 100644 index 0c304aed47a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_50.sub b/test/ntuple_qcd_700_1000/batch/condor_50.sub deleted file mode 100644 index f24fc47b1d3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_50.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.50.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_50.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.50.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_51.sub b/test/ntuple_qcd_700_1000/batch/condor_51.sub deleted file mode 100644 index 873180408b0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_51.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.51.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_51.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.51.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_52.sub b/test/ntuple_qcd_700_1000/batch/condor_52.sub deleted file mode 100644 index 604f0b34a81..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_52.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.52.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_52.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.52.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_53.sub b/test/ntuple_qcd_700_1000/batch/condor_53.sub deleted file mode 100644 index 69cc45f4e6f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_53.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.53.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_53.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.53.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_54.sub b/test/ntuple_qcd_700_1000/batch/condor_54.sub deleted file mode 100644 index fb85263d405..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_54.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.54.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_54.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.54.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_55.sub b/test/ntuple_qcd_700_1000/batch/condor_55.sub deleted file mode 100644 index 297d2bab37c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_55.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.55.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_55.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.55.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_56.sub b/test/ntuple_qcd_700_1000/batch/condor_56.sub deleted file mode 100644 index 787ccf4b0dd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_56.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.56.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_56.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.56.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_57.sub b/test/ntuple_qcd_700_1000/batch/condor_57.sub deleted file mode 100644 index a3ce83a5fe4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_57.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.57.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_57.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.57.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_58.sub b/test/ntuple_qcd_700_1000/batch/condor_58.sub deleted file mode 100644 index 7e0b97140e1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_58.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.58.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_58.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.58.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_59.sub b/test/ntuple_qcd_700_1000/batch/condor_59.sub deleted file mode 100644 index 89a739c7fab..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_59.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.59.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_59.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.59.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_6.sub b/test/ntuple_qcd_700_1000/batch/condor_6.sub deleted file mode 100644 index 4bada401bdd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_60.sub b/test/ntuple_qcd_700_1000/batch/condor_60.sub deleted file mode 100644 index c2d8c1749cd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_60.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.60.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_60.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.60.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_61.sub b/test/ntuple_qcd_700_1000/batch/condor_61.sub deleted file mode 100644 index 85c4229dbac..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_61.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.61.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_61.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.61.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_62.sub b/test/ntuple_qcd_700_1000/batch/condor_62.sub deleted file mode 100644 index b05d179ac5b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_62.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.62.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_62.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.62.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_63.sub b/test/ntuple_qcd_700_1000/batch/condor_63.sub deleted file mode 100644 index 02d11d4c00e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_63.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.63.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_63.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.63.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_64.sub b/test/ntuple_qcd_700_1000/batch/condor_64.sub deleted file mode 100644 index cf7ad9e4725..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_64.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.64.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_64.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.64.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_65.sub b/test/ntuple_qcd_700_1000/batch/condor_65.sub deleted file mode 100644 index 975953c7da8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_65.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.65.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_65.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.65.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_66.sub b/test/ntuple_qcd_700_1000/batch/condor_66.sub deleted file mode 100644 index 4083e83313b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_66.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.66.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_66.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.66.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_67.sub b/test/ntuple_qcd_700_1000/batch/condor_67.sub deleted file mode 100644 index b3e1323857b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_67.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.67.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_67.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.67.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_68.sub b/test/ntuple_qcd_700_1000/batch/condor_68.sub deleted file mode 100644 index d67e66bdb4c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_68.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.68.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_68.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.68.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_69.sub b/test/ntuple_qcd_700_1000/batch/condor_69.sub deleted file mode 100644 index 488ccb7ac4c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_69.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.69.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_69.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.69.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_7.sub b/test/ntuple_qcd_700_1000/batch/condor_7.sub deleted file mode 100644 index e418c61bdef..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_70.sub b/test/ntuple_qcd_700_1000/batch/condor_70.sub deleted file mode 100644 index af7d60d78b0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_70.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.70.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_70.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.70.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_71.sub b/test/ntuple_qcd_700_1000/batch/condor_71.sub deleted file mode 100644 index 21fc634aad5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_71.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.71.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_71.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.71.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_72.sub b/test/ntuple_qcd_700_1000/batch/condor_72.sub deleted file mode 100644 index 2eaddc6419a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_72.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.72.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_72.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.72.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_73.sub b/test/ntuple_qcd_700_1000/batch/condor_73.sub deleted file mode 100644 index d05b0fc533a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_73.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.73.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_73.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.73.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_74.sub b/test/ntuple_qcd_700_1000/batch/condor_74.sub deleted file mode 100644 index 3d3794a8623..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_74.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.74.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_74.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.74.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_75.sub b/test/ntuple_qcd_700_1000/batch/condor_75.sub deleted file mode 100644 index 5c36dd00867..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_75.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.75.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_75.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.75.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_76.sub b/test/ntuple_qcd_700_1000/batch/condor_76.sub deleted file mode 100644 index 6e8d9ccd87b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_76.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.76.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_76.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.76.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_77.sub b/test/ntuple_qcd_700_1000/batch/condor_77.sub deleted file mode 100644 index 489a8f46f65..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_77.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.77.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_77.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.77.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_78.sub b/test/ntuple_qcd_700_1000/batch/condor_78.sub deleted file mode 100644 index 4a7ab075965..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_78.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.78.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_78.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.78.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_79.sub b/test/ntuple_qcd_700_1000/batch/condor_79.sub deleted file mode 100644 index fb1f4eddd7b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_79.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.79.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_79.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.79.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_8.sub b/test/ntuple_qcd_700_1000/batch/condor_8.sub deleted file mode 100644 index ef80d2adef6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_80.sub b/test/ntuple_qcd_700_1000/batch/condor_80.sub deleted file mode 100644 index b2cbd9185c7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_80.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.80.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_80.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.80.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_81.sub b/test/ntuple_qcd_700_1000/batch/condor_81.sub deleted file mode 100644 index 8ad618abaa2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_81.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.81.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_81.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.81.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_82.sub b/test/ntuple_qcd_700_1000/batch/condor_82.sub deleted file mode 100644 index 495841aa5be..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_82.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.82.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_82.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.82.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_83.sub b/test/ntuple_qcd_700_1000/batch/condor_83.sub deleted file mode 100644 index f54095dd926..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_83.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.83.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_83.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.83.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_84.sub b/test/ntuple_qcd_700_1000/batch/condor_84.sub deleted file mode 100644 index c9abbb7fece..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_84.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.84.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_84.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.84.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_85.sub b/test/ntuple_qcd_700_1000/batch/condor_85.sub deleted file mode 100644 index a74cd4a24a7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_85.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.85.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_85.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.85.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_86.sub b/test/ntuple_qcd_700_1000/batch/condor_86.sub deleted file mode 100644 index 54385d0f2aa..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_86.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.86.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_86.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.86.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_87.sub b/test/ntuple_qcd_700_1000/batch/condor_87.sub deleted file mode 100644 index 263bc1134df..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_87.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.87.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_87.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.87.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_88.sub b/test/ntuple_qcd_700_1000/batch/condor_88.sub deleted file mode 100644 index 28bb9039004..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_88.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.88.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_88.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.88.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_89.sub b/test/ntuple_qcd_700_1000/batch/condor_89.sub deleted file mode 100644 index c15472e927d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_89.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.89.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_89.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.89.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_9.sub b/test/ntuple_qcd_700_1000/batch/condor_9.sub deleted file mode 100644 index 147d6bdfec0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_90.sub b/test/ntuple_qcd_700_1000/batch/condor_90.sub deleted file mode 100644 index ed33b9c51cf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_90.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.90.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_90.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.90.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_91.sub b/test/ntuple_qcd_700_1000/batch/condor_91.sub deleted file mode 100644 index 425796ac896..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_91.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.91.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_91.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.91.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_92.sub b/test/ntuple_qcd_700_1000/batch/condor_92.sub deleted file mode 100644 index 6747dd3055e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_92.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.92.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_92.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.92.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_93.sub b/test/ntuple_qcd_700_1000/batch/condor_93.sub deleted file mode 100644 index 04fc592c766..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_93.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.93.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_93.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.93.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_94.sub b/test/ntuple_qcd_700_1000/batch/condor_94.sub deleted file mode 100644 index 24e71bd566d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_94.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.94.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_94.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.94.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_95.sub b/test/ntuple_qcd_700_1000/batch/condor_95.sub deleted file mode 100644 index c8db7f8332b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_95.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.95.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_95.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.95.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_96.sub b/test/ntuple_qcd_700_1000/batch/condor_96.sub deleted file mode 100644 index 9b5a4f6d103..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_96.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.96.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_96.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.96.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_97.sub b/test/ntuple_qcd_700_1000/batch/condor_97.sub deleted file mode 100644 index 280cf93b0d4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_97.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.97.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_97.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.97.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_98.sub b/test/ntuple_qcd_700_1000/batch/condor_98.sub deleted file mode 100644 index 6ed7da2f3f3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_98.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.98.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_98.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.98.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/condor_99.sub b/test/ntuple_qcd_700_1000/batch/condor_99.sub deleted file mode 100644 index 5f740863bff..00000000000 --- a/test/ntuple_qcd_700_1000/batch/condor_99.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.99.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_99.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 2000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.99.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/nJobs.500 b/test/ntuple_qcd_700_1000/batch/nJobs.500 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test/ntuple_qcd_700_1000/batch/sge_0.sh b/test/ntuple_qcd_700_1000/batch/sge_0.sh deleted file mode 100755 index ee43489f37b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_0.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=0 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_1.sh b/test/ntuple_qcd_700_1000/batch/sge_1.sh deleted file mode 100755 index 5fa5fa37b4b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_1.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=1 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_10.sh b/test/ntuple_qcd_700_1000/batch/sge_10.sh deleted file mode 100755 index c73ae609155..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_10.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=10 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_100.sh b/test/ntuple_qcd_700_1000/batch/sge_100.sh deleted file mode 100755 index 4c9b55e5f53..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_100.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=100 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_100.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=100 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_101.sh b/test/ntuple_qcd_700_1000/batch/sge_101.sh deleted file mode 100755 index 3dec96ef3de..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_101.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=101 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_101.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=101 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_102.sh b/test/ntuple_qcd_700_1000/batch/sge_102.sh deleted file mode 100755 index 34ad9dd3c74..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_102.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=102 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_102.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=102 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_103.sh b/test/ntuple_qcd_700_1000/batch/sge_103.sh deleted file mode 100755 index 2440d90b31e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_103.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=103 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_103.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=103 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_104.sh b/test/ntuple_qcd_700_1000/batch/sge_104.sh deleted file mode 100755 index 5bc31228d63..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_104.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=104 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_104.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=104 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_105.sh b/test/ntuple_qcd_700_1000/batch/sge_105.sh deleted file mode 100755 index 4b6220acc0b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_105.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=105 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_105.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=105 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_106.sh b/test/ntuple_qcd_700_1000/batch/sge_106.sh deleted file mode 100755 index 85f583de60f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_106.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=106 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_106.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=106 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_107.sh b/test/ntuple_qcd_700_1000/batch/sge_107.sh deleted file mode 100755 index 3c223276088..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_107.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=107 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_107.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=107 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_108.sh b/test/ntuple_qcd_700_1000/batch/sge_108.sh deleted file mode 100755 index 4d267010354..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_108.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=108 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_108.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=108 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_109.sh b/test/ntuple_qcd_700_1000/batch/sge_109.sh deleted file mode 100755 index 03239035dde..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_109.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=109 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_109.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=109 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_11.sh b/test/ntuple_qcd_700_1000/batch/sge_11.sh deleted file mode 100755 index b2e54bf7e0f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_11.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=11 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_110.sh b/test/ntuple_qcd_700_1000/batch/sge_110.sh deleted file mode 100755 index e54ef000972..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_110.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=110 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_110.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=110 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_111.sh b/test/ntuple_qcd_700_1000/batch/sge_111.sh deleted file mode 100755 index b4e4da08a10..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_111.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=111 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_111.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=111 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_112.sh b/test/ntuple_qcd_700_1000/batch/sge_112.sh deleted file mode 100755 index 3c380ff874d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_112.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=112 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_112.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=112 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_113.sh b/test/ntuple_qcd_700_1000/batch/sge_113.sh deleted file mode 100755 index e518df43380..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_113.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=113 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_113.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=113 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_114.sh b/test/ntuple_qcd_700_1000/batch/sge_114.sh deleted file mode 100755 index 3cccb404a42..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_114.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=114 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_114.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=114 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_115.sh b/test/ntuple_qcd_700_1000/batch/sge_115.sh deleted file mode 100755 index 8d0065504f0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_115.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=115 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_115.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=115 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_116.sh b/test/ntuple_qcd_700_1000/batch/sge_116.sh deleted file mode 100755 index d0d28b4ae95..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_116.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=116 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_116.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=116 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_117.sh b/test/ntuple_qcd_700_1000/batch/sge_117.sh deleted file mode 100755 index 982140eeda1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_117.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=117 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_117.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=117 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_118.sh b/test/ntuple_qcd_700_1000/batch/sge_118.sh deleted file mode 100755 index eba91e0b58f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_118.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=118 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_118.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=118 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_119.sh b/test/ntuple_qcd_700_1000/batch/sge_119.sh deleted file mode 100755 index f71e8c56316..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_119.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=119 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_119.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=119 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_12.sh b/test/ntuple_qcd_700_1000/batch/sge_12.sh deleted file mode 100755 index 62f596693b6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_12.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=12 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_120.sh b/test/ntuple_qcd_700_1000/batch/sge_120.sh deleted file mode 100755 index 23cb800b34d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_120.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=120 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_120.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=120 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_121.sh b/test/ntuple_qcd_700_1000/batch/sge_121.sh deleted file mode 100755 index 5b2bb44d316..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_121.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=121 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_121.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=121 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_122.sh b/test/ntuple_qcd_700_1000/batch/sge_122.sh deleted file mode 100755 index 71239f89fcb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_122.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=122 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_122.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=122 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_123.sh b/test/ntuple_qcd_700_1000/batch/sge_123.sh deleted file mode 100755 index 389651a5b13..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_123.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=123 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_123.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=123 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_124.sh b/test/ntuple_qcd_700_1000/batch/sge_124.sh deleted file mode 100755 index 81336d13715..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_124.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=124 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_124.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=124 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_125.sh b/test/ntuple_qcd_700_1000/batch/sge_125.sh deleted file mode 100755 index 737fcc13a8e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_125.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=125 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_125.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=125 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_126.sh b/test/ntuple_qcd_700_1000/batch/sge_126.sh deleted file mode 100755 index bf23c6a031b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_126.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=126 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_126.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=126 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_127.sh b/test/ntuple_qcd_700_1000/batch/sge_127.sh deleted file mode 100755 index 9eb0c0a3472..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_127.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=127 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_127.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=127 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_128.sh b/test/ntuple_qcd_700_1000/batch/sge_128.sh deleted file mode 100755 index f8cc5edadc2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_128.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=128 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_128.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=128 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_129.sh b/test/ntuple_qcd_700_1000/batch/sge_129.sh deleted file mode 100755 index 01ff08bb8ec..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_129.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=129 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_129.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=129 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_13.sh b/test/ntuple_qcd_700_1000/batch/sge_13.sh deleted file mode 100755 index eeedf6b6879..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_13.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=13 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_130.sh b/test/ntuple_qcd_700_1000/batch/sge_130.sh deleted file mode 100755 index 5d906a09387..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_130.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=130 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_130.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=130 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_131.sh b/test/ntuple_qcd_700_1000/batch/sge_131.sh deleted file mode 100755 index 59e1a277e9f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_131.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=131 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_131.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=131 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_132.sh b/test/ntuple_qcd_700_1000/batch/sge_132.sh deleted file mode 100755 index 00893be0e3f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_132.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=132 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_132.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=132 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_133.sh b/test/ntuple_qcd_700_1000/batch/sge_133.sh deleted file mode 100755 index 08d67e528d4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_133.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=133 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_133.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=133 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_134.sh b/test/ntuple_qcd_700_1000/batch/sge_134.sh deleted file mode 100755 index f3cee6d601c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_134.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=134 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_134.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=134 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_135.sh b/test/ntuple_qcd_700_1000/batch/sge_135.sh deleted file mode 100755 index 7849b08fa65..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_135.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=135 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_135.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=135 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_136.sh b/test/ntuple_qcd_700_1000/batch/sge_136.sh deleted file mode 100755 index 92c238a17fe..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_136.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=136 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_136.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=136 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_137.sh b/test/ntuple_qcd_700_1000/batch/sge_137.sh deleted file mode 100755 index 897b3cb9a15..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_137.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=137 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_137.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=137 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_138.sh b/test/ntuple_qcd_700_1000/batch/sge_138.sh deleted file mode 100755 index 938d9fcb62c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_138.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=138 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_138.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=138 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_139.sh b/test/ntuple_qcd_700_1000/batch/sge_139.sh deleted file mode 100755 index 2282ed0744d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_139.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=139 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_139.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=139 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_14.sh b/test/ntuple_qcd_700_1000/batch/sge_14.sh deleted file mode 100755 index e3a82417778..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_14.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=14 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_140.sh b/test/ntuple_qcd_700_1000/batch/sge_140.sh deleted file mode 100755 index 00f1e2878a4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_140.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=140 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_140.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=140 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_141.sh b/test/ntuple_qcd_700_1000/batch/sge_141.sh deleted file mode 100755 index d12026e679a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_141.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=141 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_141.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=141 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_142.sh b/test/ntuple_qcd_700_1000/batch/sge_142.sh deleted file mode 100755 index f77adf541ae..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_142.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=142 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_142.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=142 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_143.sh b/test/ntuple_qcd_700_1000/batch/sge_143.sh deleted file mode 100755 index 30b8d96b4dc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_143.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=143 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_143.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=143 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_144.sh b/test/ntuple_qcd_700_1000/batch/sge_144.sh deleted file mode 100755 index 043c72c627c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_144.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=144 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_144.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=144 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_145.sh b/test/ntuple_qcd_700_1000/batch/sge_145.sh deleted file mode 100755 index 61216e40f22..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_145.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=145 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_145.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=145 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_146.sh b/test/ntuple_qcd_700_1000/batch/sge_146.sh deleted file mode 100755 index e506267d98a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_146.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=146 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_146.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=146 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_147.sh b/test/ntuple_qcd_700_1000/batch/sge_147.sh deleted file mode 100755 index 180e53def50..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_147.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=147 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_147.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=147 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_148.sh b/test/ntuple_qcd_700_1000/batch/sge_148.sh deleted file mode 100755 index 061baf94432..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_148.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=148 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_148.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=148 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_149.sh b/test/ntuple_qcd_700_1000/batch/sge_149.sh deleted file mode 100755 index 44d56c7634f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_149.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=149 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_149.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=149 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_15.sh b/test/ntuple_qcd_700_1000/batch/sge_15.sh deleted file mode 100755 index c564fc2ba04..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_15.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=15 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_15.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=15 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_150.sh b/test/ntuple_qcd_700_1000/batch/sge_150.sh deleted file mode 100755 index 1d0c2118bd9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_150.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=150 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_150.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=150 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_151.sh b/test/ntuple_qcd_700_1000/batch/sge_151.sh deleted file mode 100755 index 16f77b239e8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_151.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=151 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_151.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=151 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_152.sh b/test/ntuple_qcd_700_1000/batch/sge_152.sh deleted file mode 100755 index 6e9fd327936..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_152.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=152 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_152.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=152 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_153.sh b/test/ntuple_qcd_700_1000/batch/sge_153.sh deleted file mode 100755 index eaebc9aaef5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_153.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=153 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_153.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=153 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_154.sh b/test/ntuple_qcd_700_1000/batch/sge_154.sh deleted file mode 100755 index 3f386961b42..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_154.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=154 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_154.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=154 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_155.sh b/test/ntuple_qcd_700_1000/batch/sge_155.sh deleted file mode 100755 index bdf4fd4e55e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_155.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=155 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_155.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=155 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_156.sh b/test/ntuple_qcd_700_1000/batch/sge_156.sh deleted file mode 100755 index 12ffc95a09c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_156.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=156 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_156.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=156 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_157.sh b/test/ntuple_qcd_700_1000/batch/sge_157.sh deleted file mode 100755 index d279c8dc426..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_157.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=157 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_157.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=157 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_158.sh b/test/ntuple_qcd_700_1000/batch/sge_158.sh deleted file mode 100755 index e0c7f0b9f32..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_158.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=158 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_158.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=158 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_159.sh b/test/ntuple_qcd_700_1000/batch/sge_159.sh deleted file mode 100755 index a57790af628..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_159.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=159 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_159.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=159 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_16.sh b/test/ntuple_qcd_700_1000/batch/sge_16.sh deleted file mode 100755 index 62049ac4e02..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_16.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=16 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_16.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=16 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_160.sh b/test/ntuple_qcd_700_1000/batch/sge_160.sh deleted file mode 100755 index 1201a5d076d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_160.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=160 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_160.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=160 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_161.sh b/test/ntuple_qcd_700_1000/batch/sge_161.sh deleted file mode 100755 index ee299a6c24e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_161.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=161 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_161.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=161 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_162.sh b/test/ntuple_qcd_700_1000/batch/sge_162.sh deleted file mode 100755 index 0e2a3b5809c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_162.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=162 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_162.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=162 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_163.sh b/test/ntuple_qcd_700_1000/batch/sge_163.sh deleted file mode 100755 index c121b74632e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_163.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=163 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_163.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=163 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_164.sh b/test/ntuple_qcd_700_1000/batch/sge_164.sh deleted file mode 100755 index 95d4b719c05..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_164.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=164 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_164.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=164 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_165.sh b/test/ntuple_qcd_700_1000/batch/sge_165.sh deleted file mode 100755 index 6ac3c1edf20..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_165.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=165 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_165.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=165 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_166.sh b/test/ntuple_qcd_700_1000/batch/sge_166.sh deleted file mode 100755 index 8db5c1440ac..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_166.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=166 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_166.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=166 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_167.sh b/test/ntuple_qcd_700_1000/batch/sge_167.sh deleted file mode 100755 index cc27654666c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_167.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=167 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_167.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=167 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_168.sh b/test/ntuple_qcd_700_1000/batch/sge_168.sh deleted file mode 100755 index bccdedce202..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_168.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=168 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_168.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=168 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_169.sh b/test/ntuple_qcd_700_1000/batch/sge_169.sh deleted file mode 100755 index 550fb77dc21..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_169.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=169 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_169.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=169 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_17.sh b/test/ntuple_qcd_700_1000/batch/sge_17.sh deleted file mode 100755 index c1205e136e8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_17.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=17 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_17.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=17 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_170.sh b/test/ntuple_qcd_700_1000/batch/sge_170.sh deleted file mode 100755 index 3414f7c24bc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_170.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=170 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_170.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=170 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_171.sh b/test/ntuple_qcd_700_1000/batch/sge_171.sh deleted file mode 100755 index 4f5e35168f2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_171.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=171 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_171.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=171 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_172.sh b/test/ntuple_qcd_700_1000/batch/sge_172.sh deleted file mode 100755 index dde1a497fe4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_172.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=172 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_172.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=172 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_173.sh b/test/ntuple_qcd_700_1000/batch/sge_173.sh deleted file mode 100755 index 046a8dc55b1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_173.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=173 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_173.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=173 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_174.sh b/test/ntuple_qcd_700_1000/batch/sge_174.sh deleted file mode 100755 index b231d3edd5e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_174.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=174 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_174.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=174 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_175.sh b/test/ntuple_qcd_700_1000/batch/sge_175.sh deleted file mode 100755 index b15c205654b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_175.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=175 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_175.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=175 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_176.sh b/test/ntuple_qcd_700_1000/batch/sge_176.sh deleted file mode 100755 index 8811b3dc685..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_176.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=176 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_176.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=176 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_177.sh b/test/ntuple_qcd_700_1000/batch/sge_177.sh deleted file mode 100755 index a3be438a468..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_177.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=177 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_177.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=177 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_178.sh b/test/ntuple_qcd_700_1000/batch/sge_178.sh deleted file mode 100755 index fc7a4c8c0b1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_178.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=178 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_178.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=178 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_179.sh b/test/ntuple_qcd_700_1000/batch/sge_179.sh deleted file mode 100755 index 6f8603e1487..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_179.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=179 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_179.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=179 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_18.sh b/test/ntuple_qcd_700_1000/batch/sge_18.sh deleted file mode 100755 index cb1f4443c7a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_18.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=18 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_18.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=18 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_180.sh b/test/ntuple_qcd_700_1000/batch/sge_180.sh deleted file mode 100755 index 2bd03f7769d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_180.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=180 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_180.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=180 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_181.sh b/test/ntuple_qcd_700_1000/batch/sge_181.sh deleted file mode 100755 index 01049ae2267..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_181.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=181 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_181.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=181 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_182.sh b/test/ntuple_qcd_700_1000/batch/sge_182.sh deleted file mode 100755 index d4aeadc634e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_182.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=182 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_182.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=182 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_183.sh b/test/ntuple_qcd_700_1000/batch/sge_183.sh deleted file mode 100755 index a2f5aa0a691..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_183.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=183 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_183.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=183 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_184.sh b/test/ntuple_qcd_700_1000/batch/sge_184.sh deleted file mode 100755 index 751b09ecef9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_184.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=184 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_184.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=184 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_185.sh b/test/ntuple_qcd_700_1000/batch/sge_185.sh deleted file mode 100755 index f3074600022..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_185.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=185 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_185.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=185 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_186.sh b/test/ntuple_qcd_700_1000/batch/sge_186.sh deleted file mode 100755 index 1070a2c62de..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_186.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=186 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_186.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=186 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_187.sh b/test/ntuple_qcd_700_1000/batch/sge_187.sh deleted file mode 100755 index 0d352ed0f01..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_187.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=187 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_187.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=187 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_188.sh b/test/ntuple_qcd_700_1000/batch/sge_188.sh deleted file mode 100755 index e46ed8de0bd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_188.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=188 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_188.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=188 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_189.sh b/test/ntuple_qcd_700_1000/batch/sge_189.sh deleted file mode 100755 index 482f4d3dd5a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_189.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=189 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_189.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=189 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_19.sh b/test/ntuple_qcd_700_1000/batch/sge_19.sh deleted file mode 100755 index 0e284f2ab4d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_19.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=19 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_19.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=19 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_190.sh b/test/ntuple_qcd_700_1000/batch/sge_190.sh deleted file mode 100755 index 33b67240352..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_190.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=190 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_190.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=190 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_191.sh b/test/ntuple_qcd_700_1000/batch/sge_191.sh deleted file mode 100755 index da9dd3621a5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_191.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=191 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_191.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=191 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_192.sh b/test/ntuple_qcd_700_1000/batch/sge_192.sh deleted file mode 100755 index 6714c76ac59..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_192.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=192 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_192.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=192 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_193.sh b/test/ntuple_qcd_700_1000/batch/sge_193.sh deleted file mode 100755 index dea26ab61c8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_193.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=193 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_193.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=193 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_194.sh b/test/ntuple_qcd_700_1000/batch/sge_194.sh deleted file mode 100755 index b07d0d2e924..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_194.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=194 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_194.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=194 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_195.sh b/test/ntuple_qcd_700_1000/batch/sge_195.sh deleted file mode 100755 index 12df3c85529..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_195.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=195 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_195.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=195 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_196.sh b/test/ntuple_qcd_700_1000/batch/sge_196.sh deleted file mode 100755 index d93e9a3d68e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_196.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=196 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_196.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=196 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_197.sh b/test/ntuple_qcd_700_1000/batch/sge_197.sh deleted file mode 100755 index 21247f6ddf6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_197.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=197 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_197.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=197 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_198.sh b/test/ntuple_qcd_700_1000/batch/sge_198.sh deleted file mode 100755 index 63bdf91ee5b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_198.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=198 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_198.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=198 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_199.sh b/test/ntuple_qcd_700_1000/batch/sge_199.sh deleted file mode 100755 index c85a2fe4805..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_199.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=199 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_199.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=199 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_2.sh b/test/ntuple_qcd_700_1000/batch/sge_2.sh deleted file mode 100755 index a64bda9aa4b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_2.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=2 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_20.sh b/test/ntuple_qcd_700_1000/batch/sge_20.sh deleted file mode 100755 index 9c1ca6651a8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_20.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=20 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_20.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=20 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_200.sh b/test/ntuple_qcd_700_1000/batch/sge_200.sh deleted file mode 100755 index f0dcdf01d15..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_200.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=200 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_200.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=200 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_201.sh b/test/ntuple_qcd_700_1000/batch/sge_201.sh deleted file mode 100755 index c393d0850eb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_201.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=201 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_201.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=201 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_202.sh b/test/ntuple_qcd_700_1000/batch/sge_202.sh deleted file mode 100755 index 6c976c5c9e1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_202.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=202 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_202.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=202 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_203.sh b/test/ntuple_qcd_700_1000/batch/sge_203.sh deleted file mode 100755 index f97bc21aa02..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_203.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=203 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_203.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=203 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_204.sh b/test/ntuple_qcd_700_1000/batch/sge_204.sh deleted file mode 100755 index d04ff65dcf5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_204.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=204 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_204.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=204 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_205.sh b/test/ntuple_qcd_700_1000/batch/sge_205.sh deleted file mode 100755 index c037a919037..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_205.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=205 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_205.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=205 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_206.sh b/test/ntuple_qcd_700_1000/batch/sge_206.sh deleted file mode 100755 index 49616605a1a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_206.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=206 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_206.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=206 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_207.sh b/test/ntuple_qcd_700_1000/batch/sge_207.sh deleted file mode 100755 index 7a6fbbad73b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_207.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=207 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_207.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=207 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_208.sh b/test/ntuple_qcd_700_1000/batch/sge_208.sh deleted file mode 100755 index aef0ca3d2e7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_208.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=208 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_208.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=208 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_209.sh b/test/ntuple_qcd_700_1000/batch/sge_209.sh deleted file mode 100755 index 958f9544790..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_209.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=209 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_209.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=209 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_21.sh b/test/ntuple_qcd_700_1000/batch/sge_21.sh deleted file mode 100755 index 52711c80d31..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_21.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=21 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_21.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=21 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_210.sh b/test/ntuple_qcd_700_1000/batch/sge_210.sh deleted file mode 100755 index fd538954d09..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_210.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=210 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_210.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=210 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_211.sh b/test/ntuple_qcd_700_1000/batch/sge_211.sh deleted file mode 100755 index 1cf08843df6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_211.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=211 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_211.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=211 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_212.sh b/test/ntuple_qcd_700_1000/batch/sge_212.sh deleted file mode 100755 index 770d2bc8e84..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_212.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=212 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_212.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=212 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_213.sh b/test/ntuple_qcd_700_1000/batch/sge_213.sh deleted file mode 100755 index 269a7e05b8d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_213.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=213 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_213.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=213 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_214.sh b/test/ntuple_qcd_700_1000/batch/sge_214.sh deleted file mode 100755 index a5f6c277f9e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_214.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=214 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_214.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=214 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_215.sh b/test/ntuple_qcd_700_1000/batch/sge_215.sh deleted file mode 100755 index 2c8cc9f0351..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_215.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=215 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_215.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=215 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_216.sh b/test/ntuple_qcd_700_1000/batch/sge_216.sh deleted file mode 100755 index 58c0a6ffa90..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_216.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=216 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_216.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=216 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_217.sh b/test/ntuple_qcd_700_1000/batch/sge_217.sh deleted file mode 100755 index 9c4a3074f4a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_217.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=217 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_217.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=217 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_218.sh b/test/ntuple_qcd_700_1000/batch/sge_218.sh deleted file mode 100755 index ac74b2abbfb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_218.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=218 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_218.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=218 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_219.sh b/test/ntuple_qcd_700_1000/batch/sge_219.sh deleted file mode 100755 index ef32a9489e8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_219.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=219 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_219.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=219 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_22.sh b/test/ntuple_qcd_700_1000/batch/sge_22.sh deleted file mode 100755 index dfa7a61382e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_22.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=22 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_22.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=22 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_220.sh b/test/ntuple_qcd_700_1000/batch/sge_220.sh deleted file mode 100755 index c592a5cedc2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_220.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=220 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_220.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=220 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_221.sh b/test/ntuple_qcd_700_1000/batch/sge_221.sh deleted file mode 100755 index d3befedaef2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_221.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=221 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_221.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=221 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_222.sh b/test/ntuple_qcd_700_1000/batch/sge_222.sh deleted file mode 100755 index 034edd92823..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_222.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=222 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_222.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=222 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_223.sh b/test/ntuple_qcd_700_1000/batch/sge_223.sh deleted file mode 100755 index 26a1ec783ef..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_223.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=223 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_223.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=223 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_224.sh b/test/ntuple_qcd_700_1000/batch/sge_224.sh deleted file mode 100755 index d3354bd2cbf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_224.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=224 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_224.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=224 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_225.sh b/test/ntuple_qcd_700_1000/batch/sge_225.sh deleted file mode 100755 index 9dbb09f7c87..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_225.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=225 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_225.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=225 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_226.sh b/test/ntuple_qcd_700_1000/batch/sge_226.sh deleted file mode 100755 index 22e09f04106..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_226.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=226 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_226.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=226 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_227.sh b/test/ntuple_qcd_700_1000/batch/sge_227.sh deleted file mode 100755 index 9997a0b5d9c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_227.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=227 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_227.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=227 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_228.sh b/test/ntuple_qcd_700_1000/batch/sge_228.sh deleted file mode 100755 index 92f1392f6b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_228.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=228 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_228.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=228 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_229.sh b/test/ntuple_qcd_700_1000/batch/sge_229.sh deleted file mode 100755 index 08ff630c046..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_229.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=229 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_229.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=229 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_23.sh b/test/ntuple_qcd_700_1000/batch/sge_23.sh deleted file mode 100755 index 5d5f0bf55d4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_23.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=23 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_23.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=23 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_230.sh b/test/ntuple_qcd_700_1000/batch/sge_230.sh deleted file mode 100755 index c3c1474a686..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_230.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=230 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_230.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=230 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_231.sh b/test/ntuple_qcd_700_1000/batch/sge_231.sh deleted file mode 100755 index be231786d6c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_231.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=231 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_231.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=231 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_232.sh b/test/ntuple_qcd_700_1000/batch/sge_232.sh deleted file mode 100755 index 4ff3709d835..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_232.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=232 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_232.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=232 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_233.sh b/test/ntuple_qcd_700_1000/batch/sge_233.sh deleted file mode 100755 index 0440cd9dfc6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_233.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=233 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_233.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=233 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_234.sh b/test/ntuple_qcd_700_1000/batch/sge_234.sh deleted file mode 100755 index ceed04459e8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_234.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=234 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_234.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=234 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_235.sh b/test/ntuple_qcd_700_1000/batch/sge_235.sh deleted file mode 100755 index 30b8d6b4fb8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_235.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=235 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_235.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=235 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_236.sh b/test/ntuple_qcd_700_1000/batch/sge_236.sh deleted file mode 100755 index 44d4e31fc58..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_236.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=236 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_236.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=236 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_237.sh b/test/ntuple_qcd_700_1000/batch/sge_237.sh deleted file mode 100755 index d525b32c121..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_237.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=237 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_237.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=237 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_238.sh b/test/ntuple_qcd_700_1000/batch/sge_238.sh deleted file mode 100755 index 9f650e97bed..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_238.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=238 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_238.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=238 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_239.sh b/test/ntuple_qcd_700_1000/batch/sge_239.sh deleted file mode 100755 index 6593f3d80b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_239.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=239 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_239.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=239 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_24.sh b/test/ntuple_qcd_700_1000/batch/sge_24.sh deleted file mode 100755 index 8f3ee59f9d8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_24.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=24 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_24.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=24 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_240.sh b/test/ntuple_qcd_700_1000/batch/sge_240.sh deleted file mode 100755 index 2d30d7045b1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_240.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=240 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_240.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=240 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_241.sh b/test/ntuple_qcd_700_1000/batch/sge_241.sh deleted file mode 100755 index d052483fd08..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_241.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=241 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_241.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=241 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_242.sh b/test/ntuple_qcd_700_1000/batch/sge_242.sh deleted file mode 100755 index 14bbc22506e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_242.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=242 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_242.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=242 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_243.sh b/test/ntuple_qcd_700_1000/batch/sge_243.sh deleted file mode 100755 index 8bf1a45f0fb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_243.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=243 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_243.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=243 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_244.sh b/test/ntuple_qcd_700_1000/batch/sge_244.sh deleted file mode 100755 index ca48a07af0d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_244.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=244 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_244.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=244 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_245.sh b/test/ntuple_qcd_700_1000/batch/sge_245.sh deleted file mode 100755 index ad92fa4a26b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_245.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=245 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_245.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=245 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_246.sh b/test/ntuple_qcd_700_1000/batch/sge_246.sh deleted file mode 100755 index 7108fe821f5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_246.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=246 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_246.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=246 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_247.sh b/test/ntuple_qcd_700_1000/batch/sge_247.sh deleted file mode 100755 index 669809c3f0f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_247.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=247 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_247.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=247 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_248.sh b/test/ntuple_qcd_700_1000/batch/sge_248.sh deleted file mode 100755 index af4b861ae1c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_248.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=248 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_248.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=248 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_249.sh b/test/ntuple_qcd_700_1000/batch/sge_249.sh deleted file mode 100755 index 057c80bfa29..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_249.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=249 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_249.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=249 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_25.sh b/test/ntuple_qcd_700_1000/batch/sge_25.sh deleted file mode 100755 index 745130c6508..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_25.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=25 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_25.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=25 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_250.sh b/test/ntuple_qcd_700_1000/batch/sge_250.sh deleted file mode 100755 index 2b9ecb017e9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_250.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=250 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_250.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=250 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_251.sh b/test/ntuple_qcd_700_1000/batch/sge_251.sh deleted file mode 100755 index 2da395c6abf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_251.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=251 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_251.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=251 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_252.sh b/test/ntuple_qcd_700_1000/batch/sge_252.sh deleted file mode 100755 index c2ca8ff3993..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_252.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=252 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_252.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=252 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_253.sh b/test/ntuple_qcd_700_1000/batch/sge_253.sh deleted file mode 100755 index 0a9a3a485cf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_253.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=253 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_253.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=253 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_254.sh b/test/ntuple_qcd_700_1000/batch/sge_254.sh deleted file mode 100755 index d1e6f3ece2b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_254.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=254 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_254.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=254 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_255.sh b/test/ntuple_qcd_700_1000/batch/sge_255.sh deleted file mode 100755 index 887274be499..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_255.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=255 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_255.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=255 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_256.sh b/test/ntuple_qcd_700_1000/batch/sge_256.sh deleted file mode 100755 index 508d5d5ed39..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_256.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=256 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_256.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=256 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_257.sh b/test/ntuple_qcd_700_1000/batch/sge_257.sh deleted file mode 100755 index be87a66167d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_257.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=257 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_257.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=257 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_258.sh b/test/ntuple_qcd_700_1000/batch/sge_258.sh deleted file mode 100755 index af2aa8e6929..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_258.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=258 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_258.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=258 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_259.sh b/test/ntuple_qcd_700_1000/batch/sge_259.sh deleted file mode 100755 index d3627463c03..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_259.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=259 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_259.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=259 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_26.sh b/test/ntuple_qcd_700_1000/batch/sge_26.sh deleted file mode 100755 index 79f49d43e58..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_26.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=26 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_26.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=26 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_260.sh b/test/ntuple_qcd_700_1000/batch/sge_260.sh deleted file mode 100755 index 0c15b57728b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_260.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=260 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_260.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=260 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_261.sh b/test/ntuple_qcd_700_1000/batch/sge_261.sh deleted file mode 100755 index 79b847f1b7e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_261.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=261 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_261.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=261 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_262.sh b/test/ntuple_qcd_700_1000/batch/sge_262.sh deleted file mode 100755 index 0de804947a4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_262.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=262 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_262.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=262 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_263.sh b/test/ntuple_qcd_700_1000/batch/sge_263.sh deleted file mode 100755 index 5e9cb70a562..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_263.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=263 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_263.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=263 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_264.sh b/test/ntuple_qcd_700_1000/batch/sge_264.sh deleted file mode 100755 index c0033ada293..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_264.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=264 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_264.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=264 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_265.sh b/test/ntuple_qcd_700_1000/batch/sge_265.sh deleted file mode 100755 index ee872007ed8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_265.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=265 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_265.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=265 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_266.sh b/test/ntuple_qcd_700_1000/batch/sge_266.sh deleted file mode 100755 index 8d45fb5afce..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_266.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=266 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_266.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=266 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_267.sh b/test/ntuple_qcd_700_1000/batch/sge_267.sh deleted file mode 100755 index e8c04499624..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_267.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=267 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_267.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=267 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_268.sh b/test/ntuple_qcd_700_1000/batch/sge_268.sh deleted file mode 100755 index fb039d891c4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_268.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=268 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_268.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=268 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_269.sh b/test/ntuple_qcd_700_1000/batch/sge_269.sh deleted file mode 100755 index d612cd5fdd8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_269.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=269 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_269.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=269 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_27.sh b/test/ntuple_qcd_700_1000/batch/sge_27.sh deleted file mode 100755 index 5ec2a7a6b3e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_27.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=27 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_27.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=27 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_270.sh b/test/ntuple_qcd_700_1000/batch/sge_270.sh deleted file mode 100755 index 7d59039acdf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_270.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=270 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_270.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=270 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_271.sh b/test/ntuple_qcd_700_1000/batch/sge_271.sh deleted file mode 100755 index 9f152b8bd2f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_271.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=271 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_271.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=271 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_272.sh b/test/ntuple_qcd_700_1000/batch/sge_272.sh deleted file mode 100755 index 92ac4772e98..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_272.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=272 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_272.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=272 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_273.sh b/test/ntuple_qcd_700_1000/batch/sge_273.sh deleted file mode 100755 index dc4b91d8d02..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_273.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=273 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_273.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=273 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_274.sh b/test/ntuple_qcd_700_1000/batch/sge_274.sh deleted file mode 100755 index 0dec39a3c39..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_274.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=274 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_274.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=274 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_275.sh b/test/ntuple_qcd_700_1000/batch/sge_275.sh deleted file mode 100755 index 62d00ea3e21..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_275.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=275 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_275.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=275 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_276.sh b/test/ntuple_qcd_700_1000/batch/sge_276.sh deleted file mode 100755 index 168db0f6f1b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_276.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=276 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_276.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=276 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_277.sh b/test/ntuple_qcd_700_1000/batch/sge_277.sh deleted file mode 100755 index 094c02e21cc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_277.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=277 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_277.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=277 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_278.sh b/test/ntuple_qcd_700_1000/batch/sge_278.sh deleted file mode 100755 index 104e66631b0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_278.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=278 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_278.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=278 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_279.sh b/test/ntuple_qcd_700_1000/batch/sge_279.sh deleted file mode 100755 index b83dad86fcc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_279.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=279 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_279.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=279 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_28.sh b/test/ntuple_qcd_700_1000/batch/sge_28.sh deleted file mode 100755 index 38d7b890d11..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_28.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=28 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_28.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=28 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_280.sh b/test/ntuple_qcd_700_1000/batch/sge_280.sh deleted file mode 100755 index 3270a73746a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_280.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=280 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_280.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=280 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_281.sh b/test/ntuple_qcd_700_1000/batch/sge_281.sh deleted file mode 100755 index de083b29f92..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_281.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=281 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_281.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=281 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_282.sh b/test/ntuple_qcd_700_1000/batch/sge_282.sh deleted file mode 100755 index 9a307f4834b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_282.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=282 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_282.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=282 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_283.sh b/test/ntuple_qcd_700_1000/batch/sge_283.sh deleted file mode 100755 index 343b7fa2c01..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_283.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=283 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_283.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=283 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_284.sh b/test/ntuple_qcd_700_1000/batch/sge_284.sh deleted file mode 100755 index 211d8271076..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_284.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=284 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_284.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=284 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_285.sh b/test/ntuple_qcd_700_1000/batch/sge_285.sh deleted file mode 100755 index a88da426f8d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_285.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=285 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_285.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=285 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_286.sh b/test/ntuple_qcd_700_1000/batch/sge_286.sh deleted file mode 100755 index 745afed5e38..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_286.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=286 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_286.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=286 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_287.sh b/test/ntuple_qcd_700_1000/batch/sge_287.sh deleted file mode 100755 index 5d33d12c865..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_287.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=287 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_287.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=287 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_288.sh b/test/ntuple_qcd_700_1000/batch/sge_288.sh deleted file mode 100755 index f8b66f41b66..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_288.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=288 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_288.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=288 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_289.sh b/test/ntuple_qcd_700_1000/batch/sge_289.sh deleted file mode 100755 index 9b16a1ac979..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_289.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=289 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_289.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=289 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_29.sh b/test/ntuple_qcd_700_1000/batch/sge_29.sh deleted file mode 100755 index 4440ac93f19..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_29.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=29 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_29.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=29 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_290.sh b/test/ntuple_qcd_700_1000/batch/sge_290.sh deleted file mode 100755 index 0a0d198684d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_290.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=290 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_290.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=290 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_291.sh b/test/ntuple_qcd_700_1000/batch/sge_291.sh deleted file mode 100755 index e1386df0c41..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_291.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=291 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_291.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=291 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_292.sh b/test/ntuple_qcd_700_1000/batch/sge_292.sh deleted file mode 100755 index b4bc5546707..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_292.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=292 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_292.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=292 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_293.sh b/test/ntuple_qcd_700_1000/batch/sge_293.sh deleted file mode 100755 index 21c4f451f50..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_293.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=293 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_293.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=293 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_294.sh b/test/ntuple_qcd_700_1000/batch/sge_294.sh deleted file mode 100755 index 0ad5d67a983..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_294.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=294 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_294.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=294 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_295.sh b/test/ntuple_qcd_700_1000/batch/sge_295.sh deleted file mode 100755 index 84dffd65628..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_295.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=295 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_295.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=295 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_296.sh b/test/ntuple_qcd_700_1000/batch/sge_296.sh deleted file mode 100755 index c0d7e634074..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_296.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=296 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_296.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=296 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_297.sh b/test/ntuple_qcd_700_1000/batch/sge_297.sh deleted file mode 100755 index 929e7292d6e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_297.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=297 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_297.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=297 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_298.sh b/test/ntuple_qcd_700_1000/batch/sge_298.sh deleted file mode 100755 index cd7765a15b1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_298.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=298 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_298.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=298 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_299.sh b/test/ntuple_qcd_700_1000/batch/sge_299.sh deleted file mode 100755 index 812fab7f582..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_299.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=299 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_299.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=299 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_3.sh b/test/ntuple_qcd_700_1000/batch/sge_3.sh deleted file mode 100755 index 571c6fa9482..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_3.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=3 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_30.sh b/test/ntuple_qcd_700_1000/batch/sge_30.sh deleted file mode 100755 index 882340f672d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_30.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=30 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_30.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=30 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_300.sh b/test/ntuple_qcd_700_1000/batch/sge_300.sh deleted file mode 100755 index bee5622d543..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_300.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=300 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_300.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=300 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_301.sh b/test/ntuple_qcd_700_1000/batch/sge_301.sh deleted file mode 100755 index b9ebca38d12..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_301.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=301 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_301.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=301 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_302.sh b/test/ntuple_qcd_700_1000/batch/sge_302.sh deleted file mode 100755 index 58de489b707..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_302.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=302 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_302.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=302 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_303.sh b/test/ntuple_qcd_700_1000/batch/sge_303.sh deleted file mode 100755 index 78783607e7d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_303.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=303 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_303.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=303 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_304.sh b/test/ntuple_qcd_700_1000/batch/sge_304.sh deleted file mode 100755 index baec4c492f7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_304.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=304 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_304.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=304 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_305.sh b/test/ntuple_qcd_700_1000/batch/sge_305.sh deleted file mode 100755 index ddd3274c2cd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_305.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=305 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_305.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=305 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_306.sh b/test/ntuple_qcd_700_1000/batch/sge_306.sh deleted file mode 100755 index ebed14d958b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_306.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=306 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_306.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=306 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_307.sh b/test/ntuple_qcd_700_1000/batch/sge_307.sh deleted file mode 100755 index f58e0b02ab6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_307.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=307 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_307.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=307 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_308.sh b/test/ntuple_qcd_700_1000/batch/sge_308.sh deleted file mode 100755 index 6a03f4a4235..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_308.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=308 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_308.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=308 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_309.sh b/test/ntuple_qcd_700_1000/batch/sge_309.sh deleted file mode 100755 index 00e588efebf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_309.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=309 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_309.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=309 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_31.sh b/test/ntuple_qcd_700_1000/batch/sge_31.sh deleted file mode 100755 index 01a4a88e1ca..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_31.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=31 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_31.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=31 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_310.sh b/test/ntuple_qcd_700_1000/batch/sge_310.sh deleted file mode 100755 index dd496d13fba..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_310.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=310 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_310.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=310 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_311.sh b/test/ntuple_qcd_700_1000/batch/sge_311.sh deleted file mode 100755 index 4600cfc04fb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_311.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=311 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_311.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=311 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_312.sh b/test/ntuple_qcd_700_1000/batch/sge_312.sh deleted file mode 100755 index af9cbfb73b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_312.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=312 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_312.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=312 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_313.sh b/test/ntuple_qcd_700_1000/batch/sge_313.sh deleted file mode 100755 index 775c77ed6b9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_313.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=313 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_313.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=313 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_314.sh b/test/ntuple_qcd_700_1000/batch/sge_314.sh deleted file mode 100755 index 5365f2a0dc3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_314.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=314 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_314.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=314 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_315.sh b/test/ntuple_qcd_700_1000/batch/sge_315.sh deleted file mode 100755 index a94197d41df..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_315.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=315 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_315.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=315 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_316.sh b/test/ntuple_qcd_700_1000/batch/sge_316.sh deleted file mode 100755 index c901f6f44e3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_316.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=316 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_316.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=316 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_317.sh b/test/ntuple_qcd_700_1000/batch/sge_317.sh deleted file mode 100755 index 431c8ff6f7c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_317.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=317 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_317.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=317 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_318.sh b/test/ntuple_qcd_700_1000/batch/sge_318.sh deleted file mode 100755 index b6bc043406b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_318.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=318 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_318.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=318 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_319.sh b/test/ntuple_qcd_700_1000/batch/sge_319.sh deleted file mode 100755 index 9bdcaa2d241..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_319.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=319 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_319.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=319 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_32.sh b/test/ntuple_qcd_700_1000/batch/sge_32.sh deleted file mode 100755 index e441ac23fc5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_32.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=32 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_32.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=32 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_320.sh b/test/ntuple_qcd_700_1000/batch/sge_320.sh deleted file mode 100755 index d7ad5a9bef7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_320.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=320 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_320.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=320 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_321.sh b/test/ntuple_qcd_700_1000/batch/sge_321.sh deleted file mode 100755 index e1374088de3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_321.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=321 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_321.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=321 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_322.sh b/test/ntuple_qcd_700_1000/batch/sge_322.sh deleted file mode 100755 index 50034766244..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_322.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=322 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_322.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=322 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_323.sh b/test/ntuple_qcd_700_1000/batch/sge_323.sh deleted file mode 100755 index 5506398086c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_323.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=323 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_323.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=323 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_324.sh b/test/ntuple_qcd_700_1000/batch/sge_324.sh deleted file mode 100755 index a4615282994..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_324.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=324 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_324.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=324 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_325.sh b/test/ntuple_qcd_700_1000/batch/sge_325.sh deleted file mode 100755 index 5da83cd62e4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_325.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=325 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_325.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=325 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_326.sh b/test/ntuple_qcd_700_1000/batch/sge_326.sh deleted file mode 100755 index 61298665c83..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_326.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=326 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_326.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=326 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_327.sh b/test/ntuple_qcd_700_1000/batch/sge_327.sh deleted file mode 100755 index 4192681f28e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_327.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=327 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_327.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=327 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_328.sh b/test/ntuple_qcd_700_1000/batch/sge_328.sh deleted file mode 100755 index 973915433d1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_328.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=328 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_328.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=328 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_329.sh b/test/ntuple_qcd_700_1000/batch/sge_329.sh deleted file mode 100755 index 7e8b38ca7cf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_329.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=329 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_329.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=329 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_33.sh b/test/ntuple_qcd_700_1000/batch/sge_33.sh deleted file mode 100755 index f1c5b63cdc6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_33.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=33 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_33.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=33 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_330.sh b/test/ntuple_qcd_700_1000/batch/sge_330.sh deleted file mode 100755 index 04c7254247d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_330.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=330 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_330.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=330 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_331.sh b/test/ntuple_qcd_700_1000/batch/sge_331.sh deleted file mode 100755 index 188be1307d1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_331.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=331 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_331.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=331 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_332.sh b/test/ntuple_qcd_700_1000/batch/sge_332.sh deleted file mode 100755 index 6463a64d67b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_332.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=332 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_332.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=332 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_333.sh b/test/ntuple_qcd_700_1000/batch/sge_333.sh deleted file mode 100755 index bdeefd6c792..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_333.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=333 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_333.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=333 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_334.sh b/test/ntuple_qcd_700_1000/batch/sge_334.sh deleted file mode 100755 index 265bf43e392..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_334.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=334 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_334.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=334 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_335.sh b/test/ntuple_qcd_700_1000/batch/sge_335.sh deleted file mode 100755 index fba8c6f547d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_335.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=335 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_335.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=335 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_336.sh b/test/ntuple_qcd_700_1000/batch/sge_336.sh deleted file mode 100755 index 1801b0f32e0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_336.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=336 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_336.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=336 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_337.sh b/test/ntuple_qcd_700_1000/batch/sge_337.sh deleted file mode 100755 index ae1725b8782..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_337.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=337 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_337.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=337 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_338.sh b/test/ntuple_qcd_700_1000/batch/sge_338.sh deleted file mode 100755 index dc6b73a671c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_338.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=338 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_338.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=338 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_339.sh b/test/ntuple_qcd_700_1000/batch/sge_339.sh deleted file mode 100755 index 74ea92bbda2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_339.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=339 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_339.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=339 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_34.sh b/test/ntuple_qcd_700_1000/batch/sge_34.sh deleted file mode 100755 index 90c258bd885..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_34.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=34 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_34.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=34 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_340.sh b/test/ntuple_qcd_700_1000/batch/sge_340.sh deleted file mode 100755 index a899ccf978f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_340.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=340 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_340.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=340 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_341.sh b/test/ntuple_qcd_700_1000/batch/sge_341.sh deleted file mode 100755 index 240a2a106cb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_341.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=341 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_341.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=341 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_342.sh b/test/ntuple_qcd_700_1000/batch/sge_342.sh deleted file mode 100755 index ad538119a76..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_342.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=342 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_342.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=342 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_343.sh b/test/ntuple_qcd_700_1000/batch/sge_343.sh deleted file mode 100755 index d9b44ace06f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_343.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=343 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_343.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=343 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_344.sh b/test/ntuple_qcd_700_1000/batch/sge_344.sh deleted file mode 100755 index 8768bb5dd5c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_344.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=344 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_344.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=344 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_345.sh b/test/ntuple_qcd_700_1000/batch/sge_345.sh deleted file mode 100755 index aec5ae1d7a6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_345.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=345 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_345.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=345 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_346.sh b/test/ntuple_qcd_700_1000/batch/sge_346.sh deleted file mode 100755 index b9b20c61dc5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_346.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=346 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_346.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=346 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_347.sh b/test/ntuple_qcd_700_1000/batch/sge_347.sh deleted file mode 100755 index 81cd4a4f190..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_347.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=347 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_347.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=347 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_348.sh b/test/ntuple_qcd_700_1000/batch/sge_348.sh deleted file mode 100755 index c08ee759344..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_348.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=348 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_348.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=348 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_349.sh b/test/ntuple_qcd_700_1000/batch/sge_349.sh deleted file mode 100755 index 121a30a3413..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_349.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=349 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_349.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=349 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_35.sh b/test/ntuple_qcd_700_1000/batch/sge_35.sh deleted file mode 100755 index 708dfda7d55..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_35.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=35 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_35.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=35 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_350.sh b/test/ntuple_qcd_700_1000/batch/sge_350.sh deleted file mode 100755 index 177221c908e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_350.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=350 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_350.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=350 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_351.sh b/test/ntuple_qcd_700_1000/batch/sge_351.sh deleted file mode 100755 index fc56c4c51b2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_351.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=351 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_351.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=351 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_352.sh b/test/ntuple_qcd_700_1000/batch/sge_352.sh deleted file mode 100755 index 62c5982b9ee..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_352.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=352 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_352.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=352 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_353.sh b/test/ntuple_qcd_700_1000/batch/sge_353.sh deleted file mode 100755 index 04e60363f7b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_353.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=353 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_353.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=353 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_354.sh b/test/ntuple_qcd_700_1000/batch/sge_354.sh deleted file mode 100755 index 763f2de0fce..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_354.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=354 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_354.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=354 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_355.sh b/test/ntuple_qcd_700_1000/batch/sge_355.sh deleted file mode 100755 index c6c26b1c128..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_355.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=355 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_355.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=355 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_356.sh b/test/ntuple_qcd_700_1000/batch/sge_356.sh deleted file mode 100755 index 4382c54f848..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_356.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=356 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_356.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=356 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_357.sh b/test/ntuple_qcd_700_1000/batch/sge_357.sh deleted file mode 100755 index eed0a73cbd0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_357.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=357 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_357.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=357 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_358.sh b/test/ntuple_qcd_700_1000/batch/sge_358.sh deleted file mode 100755 index feef9b6896f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_358.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=358 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_358.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=358 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_359.sh b/test/ntuple_qcd_700_1000/batch/sge_359.sh deleted file mode 100755 index c768bfe342b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_359.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=359 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_359.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=359 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_36.sh b/test/ntuple_qcd_700_1000/batch/sge_36.sh deleted file mode 100755 index 6213248177e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_36.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=36 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_36.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=36 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_360.sh b/test/ntuple_qcd_700_1000/batch/sge_360.sh deleted file mode 100755 index 01649e2f953..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_360.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=360 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_360.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=360 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_361.sh b/test/ntuple_qcd_700_1000/batch/sge_361.sh deleted file mode 100755 index 1d214304b21..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_361.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=361 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_361.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=361 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_362.sh b/test/ntuple_qcd_700_1000/batch/sge_362.sh deleted file mode 100755 index f3dc1013d89..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_362.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=362 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_362.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=362 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_363.sh b/test/ntuple_qcd_700_1000/batch/sge_363.sh deleted file mode 100755 index 706eab9c023..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_363.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=363 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_363.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=363 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_364.sh b/test/ntuple_qcd_700_1000/batch/sge_364.sh deleted file mode 100755 index 4f84b1f8a04..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_364.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=364 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_364.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=364 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_365.sh b/test/ntuple_qcd_700_1000/batch/sge_365.sh deleted file mode 100755 index 39c3676712d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_365.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=365 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_365.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=365 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_366.sh b/test/ntuple_qcd_700_1000/batch/sge_366.sh deleted file mode 100755 index 04476df9f7f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_366.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=366 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_366.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=366 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_367.sh b/test/ntuple_qcd_700_1000/batch/sge_367.sh deleted file mode 100755 index f4d01592635..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_367.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=367 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_367.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=367 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_368.sh b/test/ntuple_qcd_700_1000/batch/sge_368.sh deleted file mode 100755 index 6b44b2b6367..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_368.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=368 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_368.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=368 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_369.sh b/test/ntuple_qcd_700_1000/batch/sge_369.sh deleted file mode 100755 index 51099330f31..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_369.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=369 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_369.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=369 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_37.sh b/test/ntuple_qcd_700_1000/batch/sge_37.sh deleted file mode 100755 index 0aef422e3b4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_37.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=37 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_37.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=37 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_370.sh b/test/ntuple_qcd_700_1000/batch/sge_370.sh deleted file mode 100755 index 49972bb5aba..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_370.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=370 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_370.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=370 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_371.sh b/test/ntuple_qcd_700_1000/batch/sge_371.sh deleted file mode 100755 index b2ee53d19ff..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_371.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=371 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_371.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=371 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_372.sh b/test/ntuple_qcd_700_1000/batch/sge_372.sh deleted file mode 100755 index fd9632dea41..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_372.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=372 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_372.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=372 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_373.sh b/test/ntuple_qcd_700_1000/batch/sge_373.sh deleted file mode 100755 index f05881c4310..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_373.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=373 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_373.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=373 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_374.sh b/test/ntuple_qcd_700_1000/batch/sge_374.sh deleted file mode 100755 index fa44656d2d2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_374.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=374 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_374.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=374 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_375.sh b/test/ntuple_qcd_700_1000/batch/sge_375.sh deleted file mode 100755 index 28b72784f71..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_375.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=375 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_375.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=375 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_376.sh b/test/ntuple_qcd_700_1000/batch/sge_376.sh deleted file mode 100755 index a1b14d118f0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_376.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=376 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_376.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=376 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_377.sh b/test/ntuple_qcd_700_1000/batch/sge_377.sh deleted file mode 100755 index bfb4859cc60..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_377.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=377 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_377.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=377 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_378.sh b/test/ntuple_qcd_700_1000/batch/sge_378.sh deleted file mode 100755 index ca875575446..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_378.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=378 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_378.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=378 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_379.sh b/test/ntuple_qcd_700_1000/batch/sge_379.sh deleted file mode 100755 index 5e64ca22750..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_379.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=379 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_379.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=379 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_38.sh b/test/ntuple_qcd_700_1000/batch/sge_38.sh deleted file mode 100755 index ba2c72904f3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_38.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=38 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_38.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=38 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_380.sh b/test/ntuple_qcd_700_1000/batch/sge_380.sh deleted file mode 100755 index 45df812ef01..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_380.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=380 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_380.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=380 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_381.sh b/test/ntuple_qcd_700_1000/batch/sge_381.sh deleted file mode 100755 index 47324a905ca..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_381.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=381 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_381.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=381 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_382.sh b/test/ntuple_qcd_700_1000/batch/sge_382.sh deleted file mode 100755 index 6478a0b5879..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_382.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=382 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_382.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=382 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_383.sh b/test/ntuple_qcd_700_1000/batch/sge_383.sh deleted file mode 100755 index 688b9198ce0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_383.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=383 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_383.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=383 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_384.sh b/test/ntuple_qcd_700_1000/batch/sge_384.sh deleted file mode 100755 index c369a37cd49..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_384.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=384 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_384.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=384 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_385.sh b/test/ntuple_qcd_700_1000/batch/sge_385.sh deleted file mode 100755 index 0ee0f5e56ae..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_385.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=385 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_385.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=385 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_386.sh b/test/ntuple_qcd_700_1000/batch/sge_386.sh deleted file mode 100755 index 69b523e5da3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_386.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=386 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_386.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=386 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_387.sh b/test/ntuple_qcd_700_1000/batch/sge_387.sh deleted file mode 100755 index b0ee209eb66..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_387.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=387 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_387.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=387 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_388.sh b/test/ntuple_qcd_700_1000/batch/sge_388.sh deleted file mode 100755 index bab33fe0713..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_388.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=388 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_388.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=388 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_389.sh b/test/ntuple_qcd_700_1000/batch/sge_389.sh deleted file mode 100755 index 75e576c88ce..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_389.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=389 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_389.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=389 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_39.sh b/test/ntuple_qcd_700_1000/batch/sge_39.sh deleted file mode 100755 index 230fe64c0e5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_39.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=39 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_39.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=39 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_390.sh b/test/ntuple_qcd_700_1000/batch/sge_390.sh deleted file mode 100755 index 5e91f6a2904..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_390.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=390 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_390.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=390 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_391.sh b/test/ntuple_qcd_700_1000/batch/sge_391.sh deleted file mode 100755 index 1b7d00c7e79..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_391.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=391 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_391.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=391 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_392.sh b/test/ntuple_qcd_700_1000/batch/sge_392.sh deleted file mode 100755 index 899a4c58d12..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_392.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=392 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_392.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=392 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_393.sh b/test/ntuple_qcd_700_1000/batch/sge_393.sh deleted file mode 100755 index d5ca6ca268c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_393.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=393 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_393.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=393 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_394.sh b/test/ntuple_qcd_700_1000/batch/sge_394.sh deleted file mode 100755 index df082eb861f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_394.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=394 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_394.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=394 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_395.sh b/test/ntuple_qcd_700_1000/batch/sge_395.sh deleted file mode 100755 index 80a894fe450..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_395.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=395 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_395.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=395 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_396.sh b/test/ntuple_qcd_700_1000/batch/sge_396.sh deleted file mode 100755 index 347aa9c9059..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_396.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=396 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_396.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=396 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_397.sh b/test/ntuple_qcd_700_1000/batch/sge_397.sh deleted file mode 100755 index 1e4773ad087..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_397.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=397 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_397.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=397 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_398.sh b/test/ntuple_qcd_700_1000/batch/sge_398.sh deleted file mode 100755 index 92b0ce6f1bf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_398.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=398 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_398.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=398 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_399.sh b/test/ntuple_qcd_700_1000/batch/sge_399.sh deleted file mode 100755 index 3a3a73af169..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_399.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=399 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_399.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=399 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_4.sh b/test/ntuple_qcd_700_1000/batch/sge_4.sh deleted file mode 100755 index b3d73c6c9c4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_4.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=4 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_40.sh b/test/ntuple_qcd_700_1000/batch/sge_40.sh deleted file mode 100755 index 8b0552bb8bd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_40.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=40 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_40.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=40 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_400.sh b/test/ntuple_qcd_700_1000/batch/sge_400.sh deleted file mode 100755 index e5440955ea2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_400.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=400 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_400.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=400 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_401.sh b/test/ntuple_qcd_700_1000/batch/sge_401.sh deleted file mode 100755 index 70974c53312..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_401.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=401 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_401.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=401 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_402.sh b/test/ntuple_qcd_700_1000/batch/sge_402.sh deleted file mode 100755 index 579746c1119..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_402.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=402 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_402.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=402 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_403.sh b/test/ntuple_qcd_700_1000/batch/sge_403.sh deleted file mode 100755 index cd5679c5455..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_403.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=403 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_403.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=403 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_404.sh b/test/ntuple_qcd_700_1000/batch/sge_404.sh deleted file mode 100755 index d49ec40ecd2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_404.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=404 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_404.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=404 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_405.sh b/test/ntuple_qcd_700_1000/batch/sge_405.sh deleted file mode 100755 index 87b9edd994e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_405.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=405 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_405.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=405 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_406.sh b/test/ntuple_qcd_700_1000/batch/sge_406.sh deleted file mode 100755 index 10efc93502d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_406.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=406 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_406.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=406 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_407.sh b/test/ntuple_qcd_700_1000/batch/sge_407.sh deleted file mode 100755 index e4c347c0bc4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_407.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=407 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_407.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=407 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_408.sh b/test/ntuple_qcd_700_1000/batch/sge_408.sh deleted file mode 100755 index 543158034f6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_408.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=408 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_408.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=408 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_409.sh b/test/ntuple_qcd_700_1000/batch/sge_409.sh deleted file mode 100755 index 65cd9aa2597..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_409.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=409 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_409.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=409 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_41.sh b/test/ntuple_qcd_700_1000/batch/sge_41.sh deleted file mode 100755 index 077975b5abf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_41.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=41 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_41.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=41 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_410.sh b/test/ntuple_qcd_700_1000/batch/sge_410.sh deleted file mode 100755 index 84931fca1f7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_410.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=410 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_410.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=410 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_411.sh b/test/ntuple_qcd_700_1000/batch/sge_411.sh deleted file mode 100755 index f98713fac94..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_411.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=411 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_411.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=411 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_412.sh b/test/ntuple_qcd_700_1000/batch/sge_412.sh deleted file mode 100755 index d88c6955def..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_412.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=412 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_412.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=412 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_413.sh b/test/ntuple_qcd_700_1000/batch/sge_413.sh deleted file mode 100755 index 8326ee70465..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_413.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=413 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_413.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=413 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_414.sh b/test/ntuple_qcd_700_1000/batch/sge_414.sh deleted file mode 100755 index d0b3466df95..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_414.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=414 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_414.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=414 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_415.sh b/test/ntuple_qcd_700_1000/batch/sge_415.sh deleted file mode 100755 index 9056531c7d3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_415.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=415 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_415.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=415 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_416.sh b/test/ntuple_qcd_700_1000/batch/sge_416.sh deleted file mode 100755 index 21c8b3a7336..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_416.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=416 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_416.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=416 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_417.sh b/test/ntuple_qcd_700_1000/batch/sge_417.sh deleted file mode 100755 index c1ceeb69d0c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_417.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=417 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_417.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=417 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_418.sh b/test/ntuple_qcd_700_1000/batch/sge_418.sh deleted file mode 100755 index f0082c37fc9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_418.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=418 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_418.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=418 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_419.sh b/test/ntuple_qcd_700_1000/batch/sge_419.sh deleted file mode 100755 index 668bb8189ad..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_419.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=419 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_419.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=419 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_42.sh b/test/ntuple_qcd_700_1000/batch/sge_42.sh deleted file mode 100755 index 4d1806e362b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_42.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=42 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_42.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=42 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_420.sh b/test/ntuple_qcd_700_1000/batch/sge_420.sh deleted file mode 100755 index 99dc2b95455..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_420.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=420 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_420.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=420 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_421.sh b/test/ntuple_qcd_700_1000/batch/sge_421.sh deleted file mode 100755 index 76b97eec2a5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_421.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=421 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_421.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=421 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_422.sh b/test/ntuple_qcd_700_1000/batch/sge_422.sh deleted file mode 100755 index a2fabe903ed..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_422.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=422 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_422.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=422 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_423.sh b/test/ntuple_qcd_700_1000/batch/sge_423.sh deleted file mode 100755 index 36c2218d787..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_423.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=423 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_423.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=423 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_424.sh b/test/ntuple_qcd_700_1000/batch/sge_424.sh deleted file mode 100755 index dd5889d14ac..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_424.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=424 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_424.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=424 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_425.sh b/test/ntuple_qcd_700_1000/batch/sge_425.sh deleted file mode 100755 index cd9008d16e7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_425.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=425 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_425.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=425 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_426.sh b/test/ntuple_qcd_700_1000/batch/sge_426.sh deleted file mode 100755 index d6c0c71f2df..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_426.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=426 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_426.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=426 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_427.sh b/test/ntuple_qcd_700_1000/batch/sge_427.sh deleted file mode 100755 index d563a442b71..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_427.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=427 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_427.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=427 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_428.sh b/test/ntuple_qcd_700_1000/batch/sge_428.sh deleted file mode 100755 index ea8de369329..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_428.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=428 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_428.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=428 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_429.sh b/test/ntuple_qcd_700_1000/batch/sge_429.sh deleted file mode 100755 index c749a5fd8ec..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_429.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=429 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_429.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=429 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_43.sh b/test/ntuple_qcd_700_1000/batch/sge_43.sh deleted file mode 100755 index 272ed0f754b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_43.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=43 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_43.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=43 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_430.sh b/test/ntuple_qcd_700_1000/batch/sge_430.sh deleted file mode 100755 index e6b9f08e2d9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_430.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=430 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_430.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=430 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_431.sh b/test/ntuple_qcd_700_1000/batch/sge_431.sh deleted file mode 100755 index cf5e3c16aa5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_431.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=431 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_431.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=431 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_432.sh b/test/ntuple_qcd_700_1000/batch/sge_432.sh deleted file mode 100755 index d1f340da580..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_432.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=432 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_432.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=432 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_433.sh b/test/ntuple_qcd_700_1000/batch/sge_433.sh deleted file mode 100755 index 7c9d34fcc9f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_433.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=433 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_433.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=433 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_434.sh b/test/ntuple_qcd_700_1000/batch/sge_434.sh deleted file mode 100755 index 587d6696015..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_434.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=434 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_434.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=434 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_435.sh b/test/ntuple_qcd_700_1000/batch/sge_435.sh deleted file mode 100755 index 33c94dcd800..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_435.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=435 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_435.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=435 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_436.sh b/test/ntuple_qcd_700_1000/batch/sge_436.sh deleted file mode 100755 index b5447a469eb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_436.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=436 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_436.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=436 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_437.sh b/test/ntuple_qcd_700_1000/batch/sge_437.sh deleted file mode 100755 index 09137516d53..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_437.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=437 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_437.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=437 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_438.sh b/test/ntuple_qcd_700_1000/batch/sge_438.sh deleted file mode 100755 index 0fa8ad59cb6..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_438.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=438 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_438.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=438 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_439.sh b/test/ntuple_qcd_700_1000/batch/sge_439.sh deleted file mode 100755 index ba2d2fbfa4b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_439.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=439 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_439.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=439 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_44.sh b/test/ntuple_qcd_700_1000/batch/sge_44.sh deleted file mode 100755 index 6bb283dbee2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_44.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=44 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_44.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=44 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_440.sh b/test/ntuple_qcd_700_1000/batch/sge_440.sh deleted file mode 100755 index 30c6caa4155..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_440.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=440 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_440.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=440 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_441.sh b/test/ntuple_qcd_700_1000/batch/sge_441.sh deleted file mode 100755 index 6838bde5b50..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_441.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=441 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_441.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=441 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_442.sh b/test/ntuple_qcd_700_1000/batch/sge_442.sh deleted file mode 100755 index 62fedf565da..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_442.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=442 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_442.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=442 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_443.sh b/test/ntuple_qcd_700_1000/batch/sge_443.sh deleted file mode 100755 index 58600e3412b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_443.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=443 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_443.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=443 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_444.sh b/test/ntuple_qcd_700_1000/batch/sge_444.sh deleted file mode 100755 index b77169d5813..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_444.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=444 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_444.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=444 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_445.sh b/test/ntuple_qcd_700_1000/batch/sge_445.sh deleted file mode 100755 index 0e0df54fbf2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_445.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=445 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_445.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=445 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_446.sh b/test/ntuple_qcd_700_1000/batch/sge_446.sh deleted file mode 100755 index cbd5ae8ddcc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_446.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=446 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_446.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=446 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_447.sh b/test/ntuple_qcd_700_1000/batch/sge_447.sh deleted file mode 100755 index f64e4ebfb0e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_447.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=447 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_447.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=447 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_448.sh b/test/ntuple_qcd_700_1000/batch/sge_448.sh deleted file mode 100755 index 06a2c403faf..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_448.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=448 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_448.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=448 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_449.sh b/test/ntuple_qcd_700_1000/batch/sge_449.sh deleted file mode 100755 index 9d0dc49194a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_449.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=449 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_449.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=449 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_45.sh b/test/ntuple_qcd_700_1000/batch/sge_45.sh deleted file mode 100755 index 7c488e5f4b5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_45.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=45 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_45.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=45 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_450.sh b/test/ntuple_qcd_700_1000/batch/sge_450.sh deleted file mode 100755 index e11eb99fa2d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_450.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=450 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_450.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=450 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_451.sh b/test/ntuple_qcd_700_1000/batch/sge_451.sh deleted file mode 100755 index a77e12eeff1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_451.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=451 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_451.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=451 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_452.sh b/test/ntuple_qcd_700_1000/batch/sge_452.sh deleted file mode 100755 index cd1c53aea79..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_452.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=452 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_452.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=452 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_453.sh b/test/ntuple_qcd_700_1000/batch/sge_453.sh deleted file mode 100755 index b6aef5e3706..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_453.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=453 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_453.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=453 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_454.sh b/test/ntuple_qcd_700_1000/batch/sge_454.sh deleted file mode 100755 index ef78adaa6ab..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_454.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=454 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_454.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=454 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_455.sh b/test/ntuple_qcd_700_1000/batch/sge_455.sh deleted file mode 100755 index b230578f375..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_455.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=455 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_455.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=455 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_456.sh b/test/ntuple_qcd_700_1000/batch/sge_456.sh deleted file mode 100755 index 3dd200c7ef5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_456.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=456 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_456.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=456 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_457.sh b/test/ntuple_qcd_700_1000/batch/sge_457.sh deleted file mode 100755 index 2a26ea3f8ea..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_457.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=457 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_457.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=457 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_458.sh b/test/ntuple_qcd_700_1000/batch/sge_458.sh deleted file mode 100755 index c87b18dd24e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_458.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=458 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_458.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=458 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_459.sh b/test/ntuple_qcd_700_1000/batch/sge_459.sh deleted file mode 100755 index 729b4f504e9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_459.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=459 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_459.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=459 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_46.sh b/test/ntuple_qcd_700_1000/batch/sge_46.sh deleted file mode 100755 index e56f9e4824c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_46.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=46 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_46.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=46 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_460.sh b/test/ntuple_qcd_700_1000/batch/sge_460.sh deleted file mode 100755 index 1c5377a2fd2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_460.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=460 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_460.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=460 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_461.sh b/test/ntuple_qcd_700_1000/batch/sge_461.sh deleted file mode 100755 index bdca7a42612..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_461.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=461 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_461.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=461 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_462.sh b/test/ntuple_qcd_700_1000/batch/sge_462.sh deleted file mode 100755 index d2ccaf44bf8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_462.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=462 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_462.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=462 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_463.sh b/test/ntuple_qcd_700_1000/batch/sge_463.sh deleted file mode 100755 index 35497a7487c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_463.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=463 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_463.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=463 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_464.sh b/test/ntuple_qcd_700_1000/batch/sge_464.sh deleted file mode 100755 index 5236e97d70c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_464.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=464 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_464.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=464 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_465.sh b/test/ntuple_qcd_700_1000/batch/sge_465.sh deleted file mode 100755 index cd239f48f0f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_465.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=465 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_465.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=465 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_466.sh b/test/ntuple_qcd_700_1000/batch/sge_466.sh deleted file mode 100755 index bef19cd1f6f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_466.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=466 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_466.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=466 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_467.sh b/test/ntuple_qcd_700_1000/batch/sge_467.sh deleted file mode 100755 index d80221a89d1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_467.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=467 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_467.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=467 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_468.sh b/test/ntuple_qcd_700_1000/batch/sge_468.sh deleted file mode 100755 index 524062cff01..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_468.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=468 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_468.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=468 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_469.sh b/test/ntuple_qcd_700_1000/batch/sge_469.sh deleted file mode 100755 index ce2dd49c882..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_469.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=469 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_469.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=469 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_47.sh b/test/ntuple_qcd_700_1000/batch/sge_47.sh deleted file mode 100755 index 385d0ddd29b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_47.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=47 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_47.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=47 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_470.sh b/test/ntuple_qcd_700_1000/batch/sge_470.sh deleted file mode 100755 index 814bca2066f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_470.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=470 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_470.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=470 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_471.sh b/test/ntuple_qcd_700_1000/batch/sge_471.sh deleted file mode 100755 index b09a8e43790..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_471.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=471 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_471.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=471 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_472.sh b/test/ntuple_qcd_700_1000/batch/sge_472.sh deleted file mode 100755 index 094512524fd..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_472.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=472 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_472.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=472 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_473.sh b/test/ntuple_qcd_700_1000/batch/sge_473.sh deleted file mode 100755 index 3a368b7d1ce..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_473.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=473 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_473.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=473 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_474.sh b/test/ntuple_qcd_700_1000/batch/sge_474.sh deleted file mode 100755 index 5f6d1bc6993..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_474.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=474 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_474.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=474 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_475.sh b/test/ntuple_qcd_700_1000/batch/sge_475.sh deleted file mode 100755 index c5f6798f5dc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_475.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=475 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_475.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=475 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_476.sh b/test/ntuple_qcd_700_1000/batch/sge_476.sh deleted file mode 100755 index 2030b5fdbe8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_476.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=476 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_476.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=476 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_477.sh b/test/ntuple_qcd_700_1000/batch/sge_477.sh deleted file mode 100755 index 9218f1deb69..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_477.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=477 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_477.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=477 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_478.sh b/test/ntuple_qcd_700_1000/batch/sge_478.sh deleted file mode 100755 index fe466845544..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_478.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=478 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_478.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=478 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_479.sh b/test/ntuple_qcd_700_1000/batch/sge_479.sh deleted file mode 100755 index 105dbb1cee5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_479.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=479 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_479.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=479 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_48.sh b/test/ntuple_qcd_700_1000/batch/sge_48.sh deleted file mode 100755 index c501fd8da34..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_48.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=48 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_48.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=48 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_480.sh b/test/ntuple_qcd_700_1000/batch/sge_480.sh deleted file mode 100755 index 0bb8e00582d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_480.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=480 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_480.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=480 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_481.sh b/test/ntuple_qcd_700_1000/batch/sge_481.sh deleted file mode 100755 index 55ed708707c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_481.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=481 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_481.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=481 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_482.sh b/test/ntuple_qcd_700_1000/batch/sge_482.sh deleted file mode 100755 index 42ba4da026d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_482.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=482 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_482.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=482 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_483.sh b/test/ntuple_qcd_700_1000/batch/sge_483.sh deleted file mode 100755 index 866c24a6d16..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_483.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=483 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_483.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=483 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_484.sh b/test/ntuple_qcd_700_1000/batch/sge_484.sh deleted file mode 100755 index 04a25cf059e..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_484.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=484 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_484.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=484 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_485.sh b/test/ntuple_qcd_700_1000/batch/sge_485.sh deleted file mode 100755 index df138c971fc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_485.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=485 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_485.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=485 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_486.sh b/test/ntuple_qcd_700_1000/batch/sge_486.sh deleted file mode 100755 index c484dca3eae..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_486.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=486 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_486.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=486 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_487.sh b/test/ntuple_qcd_700_1000/batch/sge_487.sh deleted file mode 100755 index 4fbceb31535..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_487.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=487 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_487.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=487 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_488.sh b/test/ntuple_qcd_700_1000/batch/sge_488.sh deleted file mode 100755 index 6f077f57708..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_488.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=488 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_488.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=488 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_489.sh b/test/ntuple_qcd_700_1000/batch/sge_489.sh deleted file mode 100755 index 8f91d361c3a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_489.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=489 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_489.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=489 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_49.sh b/test/ntuple_qcd_700_1000/batch/sge_49.sh deleted file mode 100755 index 320b200636c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_49.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=49 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_49.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=49 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_490.sh b/test/ntuple_qcd_700_1000/batch/sge_490.sh deleted file mode 100755 index a8409989f3c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_490.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=490 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_490.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=490 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_491.sh b/test/ntuple_qcd_700_1000/batch/sge_491.sh deleted file mode 100755 index a1693e7013c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_491.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=491 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_491.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=491 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_492.sh b/test/ntuple_qcd_700_1000/batch/sge_492.sh deleted file mode 100755 index 78872f32990..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_492.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=492 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_492.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=492 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_493.sh b/test/ntuple_qcd_700_1000/batch/sge_493.sh deleted file mode 100755 index 5e3c0aa9344..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_493.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=493 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_493.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=493 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_494.sh b/test/ntuple_qcd_700_1000/batch/sge_494.sh deleted file mode 100755 index 79dbb728e42..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_494.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=494 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_494.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=494 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_495.sh b/test/ntuple_qcd_700_1000/batch/sge_495.sh deleted file mode 100755 index 6306fcf91df..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_495.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=495 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_495.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=495 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_496.sh b/test/ntuple_qcd_700_1000/batch/sge_496.sh deleted file mode 100755 index 4e4bb71f709..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_496.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=496 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_496.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=496 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_497.sh b/test/ntuple_qcd_700_1000/batch/sge_497.sh deleted file mode 100755 index a85592ed9b4..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_497.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=497 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_497.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=497 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_498.sh b/test/ntuple_qcd_700_1000/batch/sge_498.sh deleted file mode 100755 index 9e35d3a1ce2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_498.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=498 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_498.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=498 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_499.sh b/test/ntuple_qcd_700_1000/batch/sge_499.sh deleted file mode 100755 index 3f5bd565ca3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_499.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=499 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_499.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=499 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_5.sh b/test/ntuple_qcd_700_1000/batch/sge_5.sh deleted file mode 100755 index 898226167d0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_5.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=5 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_50.sh b/test/ntuple_qcd_700_1000/batch/sge_50.sh deleted file mode 100755 index ac0fe3815f2..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_50.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=50 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_50.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=50 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_51.sh b/test/ntuple_qcd_700_1000/batch/sge_51.sh deleted file mode 100755 index ea5c7af2289..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_51.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=51 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_51.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=51 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_52.sh b/test/ntuple_qcd_700_1000/batch/sge_52.sh deleted file mode 100755 index 9ba0804fadb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_52.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=52 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_52.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=52 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_53.sh b/test/ntuple_qcd_700_1000/batch/sge_53.sh deleted file mode 100755 index 228a65d9471..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_53.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=53 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_53.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=53 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_54.sh b/test/ntuple_qcd_700_1000/batch/sge_54.sh deleted file mode 100755 index a97ad4f139a..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_54.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=54 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_54.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=54 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_55.sh b/test/ntuple_qcd_700_1000/batch/sge_55.sh deleted file mode 100755 index 49730e9fc3c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_55.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=55 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_55.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=55 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_56.sh b/test/ntuple_qcd_700_1000/batch/sge_56.sh deleted file mode 100755 index 86853ef2f24..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_56.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=56 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_56.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=56 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_57.sh b/test/ntuple_qcd_700_1000/batch/sge_57.sh deleted file mode 100755 index 817d7cbd2e8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_57.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=57 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_57.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=57 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_58.sh b/test/ntuple_qcd_700_1000/batch/sge_58.sh deleted file mode 100755 index 0b8bc2c95b1..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_58.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=58 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_58.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=58 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_59.sh b/test/ntuple_qcd_700_1000/batch/sge_59.sh deleted file mode 100755 index b064db770d7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_59.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=59 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_59.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=59 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_6.sh b/test/ntuple_qcd_700_1000/batch/sge_6.sh deleted file mode 100755 index 4b93d3cb283..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_6.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=6 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_60.sh b/test/ntuple_qcd_700_1000/batch/sge_60.sh deleted file mode 100755 index b4732215023..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_60.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=60 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_60.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=60 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_61.sh b/test/ntuple_qcd_700_1000/batch/sge_61.sh deleted file mode 100755 index e4d01f1d901..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_61.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=61 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_61.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=61 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_62.sh b/test/ntuple_qcd_700_1000/batch/sge_62.sh deleted file mode 100755 index fc35656ccfc..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_62.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=62 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_62.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=62 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_63.sh b/test/ntuple_qcd_700_1000/batch/sge_63.sh deleted file mode 100755 index 54256bf7d7f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_63.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=63 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_63.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=63 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_64.sh b/test/ntuple_qcd_700_1000/batch/sge_64.sh deleted file mode 100755 index b98b9fd5de7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_64.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=64 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_64.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=64 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_65.sh b/test/ntuple_qcd_700_1000/batch/sge_65.sh deleted file mode 100755 index e71b2874eaa..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_65.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=65 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_65.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=65 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_66.sh b/test/ntuple_qcd_700_1000/batch/sge_66.sh deleted file mode 100755 index 2f3ed40720c..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_66.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=66 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_66.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=66 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_67.sh b/test/ntuple_qcd_700_1000/batch/sge_67.sh deleted file mode 100755 index f11fa87d07b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_67.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=67 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_67.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=67 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_68.sh b/test/ntuple_qcd_700_1000/batch/sge_68.sh deleted file mode 100755 index 85debceb38f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_68.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=68 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_68.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=68 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_69.sh b/test/ntuple_qcd_700_1000/batch/sge_69.sh deleted file mode 100755 index 756da96e072..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_69.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=69 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_69.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=69 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_7.sh b/test/ntuple_qcd_700_1000/batch/sge_7.sh deleted file mode 100755 index a973fe6e40f..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_7.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=7 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_70.sh b/test/ntuple_qcd_700_1000/batch/sge_70.sh deleted file mode 100755 index f829a165e37..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_70.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=70 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_70.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=70 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_71.sh b/test/ntuple_qcd_700_1000/batch/sge_71.sh deleted file mode 100755 index db5b35efe83..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_71.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=71 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_71.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=71 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_72.sh b/test/ntuple_qcd_700_1000/batch/sge_72.sh deleted file mode 100755 index fd0cf336681..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_72.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=72 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_72.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=72 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_73.sh b/test/ntuple_qcd_700_1000/batch/sge_73.sh deleted file mode 100755 index 696453f9775..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_73.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=73 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_73.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=73 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_74.sh b/test/ntuple_qcd_700_1000/batch/sge_74.sh deleted file mode 100755 index 1a7d4dad8a3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_74.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=74 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_74.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=74 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_75.sh b/test/ntuple_qcd_700_1000/batch/sge_75.sh deleted file mode 100755 index 98df8f79976..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_75.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=75 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_75.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=75 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_76.sh b/test/ntuple_qcd_700_1000/batch/sge_76.sh deleted file mode 100755 index bd17fb75bc3..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_76.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=76 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_76.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=76 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_77.sh b/test/ntuple_qcd_700_1000/batch/sge_77.sh deleted file mode 100755 index 16b5d2e49d9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_77.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=77 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_77.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=77 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_78.sh b/test/ntuple_qcd_700_1000/batch/sge_78.sh deleted file mode 100755 index bea83db1594..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_78.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=78 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_78.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=78 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_79.sh b/test/ntuple_qcd_700_1000/batch/sge_79.sh deleted file mode 100755 index 7717e7766d9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_79.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=79 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_79.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=79 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_8.sh b/test/ntuple_qcd_700_1000/batch/sge_8.sh deleted file mode 100755 index 0b55691a418..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_8.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=8 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_80.sh b/test/ntuple_qcd_700_1000/batch/sge_80.sh deleted file mode 100755 index c3f9064cbbb..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_80.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=80 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_80.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=80 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_81.sh b/test/ntuple_qcd_700_1000/batch/sge_81.sh deleted file mode 100755 index 77b59e4d1b0..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_81.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=81 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_81.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=81 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_82.sh b/test/ntuple_qcd_700_1000/batch/sge_82.sh deleted file mode 100755 index 954a7ce8bb7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_82.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=82 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_82.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=82 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_83.sh b/test/ntuple_qcd_700_1000/batch/sge_83.sh deleted file mode 100755 index 538b46faae7..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_83.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=83 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_83.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=83 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_84.sh b/test/ntuple_qcd_700_1000/batch/sge_84.sh deleted file mode 100755 index a8611fa1382..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_84.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=84 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_84.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=84 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_85.sh b/test/ntuple_qcd_700_1000/batch/sge_85.sh deleted file mode 100755 index f3c8b0a6a06..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_85.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=85 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_85.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=85 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_86.sh b/test/ntuple_qcd_700_1000/batch/sge_86.sh deleted file mode 100755 index 0dda1a22f6d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_86.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=86 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_86.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=86 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_87.sh b/test/ntuple_qcd_700_1000/batch/sge_87.sh deleted file mode 100755 index a05f5d9f467..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_87.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=87 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_87.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=87 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_88.sh b/test/ntuple_qcd_700_1000/batch/sge_88.sh deleted file mode 100755 index 7471c33bcf5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_88.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=88 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_88.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=88 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_89.sh b/test/ntuple_qcd_700_1000/batch/sge_89.sh deleted file mode 100755 index 4017cd560ed..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_89.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=89 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_89.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=89 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_9.sh b/test/ntuple_qcd_700_1000/batch/sge_9.sh deleted file mode 100755 index f45ad256ec5..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_9.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=9 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_90.sh b/test/ntuple_qcd_700_1000/batch/sge_90.sh deleted file mode 100755 index 0d6d121e14d..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_90.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=90 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_90.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=90 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_91.sh b/test/ntuple_qcd_700_1000/batch/sge_91.sh deleted file mode 100755 index 63ecb0b97f8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_91.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=91 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_91.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=91 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_92.sh b/test/ntuple_qcd_700_1000/batch/sge_92.sh deleted file mode 100755 index 8be76dc08ff..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_92.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=92 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_92.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=92 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_93.sh b/test/ntuple_qcd_700_1000/batch/sge_93.sh deleted file mode 100755 index 91d970ed526..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_93.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=93 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_93.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=93 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_94.sh b/test/ntuple_qcd_700_1000/batch/sge_94.sh deleted file mode 100755 index 042a655bb52..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_94.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=94 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_94.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=94 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_95.sh b/test/ntuple_qcd_700_1000/batch/sge_95.sh deleted file mode 100755 index e7cf48264c9..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_95.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=95 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_95.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=95 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_96.sh b/test/ntuple_qcd_700_1000/batch/sge_96.sh deleted file mode 100755 index 933dbda74c8..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_96.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=96 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_96.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=96 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_97.sh b/test/ntuple_qcd_700_1000/batch/sge_97.sh deleted file mode 100755 index ba70ef3e197..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_97.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=97 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_97.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=97 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_98.sh b/test/ntuple_qcd_700_1000/batch/sge_98.sh deleted file mode 100755 index 5a1b06a356b..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_98.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=98 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_98.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=98 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batch/sge_99.sh b/test/ntuple_qcd_700_1000/batch/sge_99.sh deleted file mode 100755 index 9dd93418c69..00000000000 --- a/test/ntuple_qcd_700_1000/batch/sge_99.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/ -export JOB=99 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_99.root - -/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=99 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/batchscript.sh b/test/ntuple_qcd_700_1000/batchscript.sh deleted file mode 100755 index b4b87a814fe..00000000000 --- a/test/ntuple_qcd_700_1000/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_qcd_700_1000" -cd /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/condor.sub b/test/ntuple_qcd_700_1000/condor.sub deleted file mode 100644 index b835bc11105..00000000000 --- a/test/ntuple_qcd_700_1000/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/DeepNtuplizer.py inputScript=QCDHT700to1000TuneCP5PSWeights13TeVmadgraphMLMpythia8RunIISummer19UL17MiniAODv2106Xmc2017realisticv9v1MINIAODSIM nJobs=500 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ntuple_qcd_700_1000_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 2000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 500 - \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/helper b/test/ntuple_qcd_700_1000/helper deleted file mode 120000 index c98ed23cda3..00000000000 --- a/test/ntuple_qcd_700_1000/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/5944/ntuple_qcd_700_1000/batch/ \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/output b/test/ntuple_qcd_700_1000/output deleted file mode 120000 index fbfe00294e6..00000000000 --- a/test/ntuple_qcd_700_1000/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/PHM_tagger/Data_PHM_UL17/Sat_135511_test/ntuple_qcd_700_1000/output/ \ No newline at end of file diff --git a/test/ntuple_qcd_700_1000/sge_sub.sh b/test/ntuple_qcd_700_1000/sge_sub.sh deleted file mode 100755 index a7ce2426d26..00000000000 --- a/test/ntuple_qcd_700_1000/sge_sub.sh +++ /dev/null @@ -1,500 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_14.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_15.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_16.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_17.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_18.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_19.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_20.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_21.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_22.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_23.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_24.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_25.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_26.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_27.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_28.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_29.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_30.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_31.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_32.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_33.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_34.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_35.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_36.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_37.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_38.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_39.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_40.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_41.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_42.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_43.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_44.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_45.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_46.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_47.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_48.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_49.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_50.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_51.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_52.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_53.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_54.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_55.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_56.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_57.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_58.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_59.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_60.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_61.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_62.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_63.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_64.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_65.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_66.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_67.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_68.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_69.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_70.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_71.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_72.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_73.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_74.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_75.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_76.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_77.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_78.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_79.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_80.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_81.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_82.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_83.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_84.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_85.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_86.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_87.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_88.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_89.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_90.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_91.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_92.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_93.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_94.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_95.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_96.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_97.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_98.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_99.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_100.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_101.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_102.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_103.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_104.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_105.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_106.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_107.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_108.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_109.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_110.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_111.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_112.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_113.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_114.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_115.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_116.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_117.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_118.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_119.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_120.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_121.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_122.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_123.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_124.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_125.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_126.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_127.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_128.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_129.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_130.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_131.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_132.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_133.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_134.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_135.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_136.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_137.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_138.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_139.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_140.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_141.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_142.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_143.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_144.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_145.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_146.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_147.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_148.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_149.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_150.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_151.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_152.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_153.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_154.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_155.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_156.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_157.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_158.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_159.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_160.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_161.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_162.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_163.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_164.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_165.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_166.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_167.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_168.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_169.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_170.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_171.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_172.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_173.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_174.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_175.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_176.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_177.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_178.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_179.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_180.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_181.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_182.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_183.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_184.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_185.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_186.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_187.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_188.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_189.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_190.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_191.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_192.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_193.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_194.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_195.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_196.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_197.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_198.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_199.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_200.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_201.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_202.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_203.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_204.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_205.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_206.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_207.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_208.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_209.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_210.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_211.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_212.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_213.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_214.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_215.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_216.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_217.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_218.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_219.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_220.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_221.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_222.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_223.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_224.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_225.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_226.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_227.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_228.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_229.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_230.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_231.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_232.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_233.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_234.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_235.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_236.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_237.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_238.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_239.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_240.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_241.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_242.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_243.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_244.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_245.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_246.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_247.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_248.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_249.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_250.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_251.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_252.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_253.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_254.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_255.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_256.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_257.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_258.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_259.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_260.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_261.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_262.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_263.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_264.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_265.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_266.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_267.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_268.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_269.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_270.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_271.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_272.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_273.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_274.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_275.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_276.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_277.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_278.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_279.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_280.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_281.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_282.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_283.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_284.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_285.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_286.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_287.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_288.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_289.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_290.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_291.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_292.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_293.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_294.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_295.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_296.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_297.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_298.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_299.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_300.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_301.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_302.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_303.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_304.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_305.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_306.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_307.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_308.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_309.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_310.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_311.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_312.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_313.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_314.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_315.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_316.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_317.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_318.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_319.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_320.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_321.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_322.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_323.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_324.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_325.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_326.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_327.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_328.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_329.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_330.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_331.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_332.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_333.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_334.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_335.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_336.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_337.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_338.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_339.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_340.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_341.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_342.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_343.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_344.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_345.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_346.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_347.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_348.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_349.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_350.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_351.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_352.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_353.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_354.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_355.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_356.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_357.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_358.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_359.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_360.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_361.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_362.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_363.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_364.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_365.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_366.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_367.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_368.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_369.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_370.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_371.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_372.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_373.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_374.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_375.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_376.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_377.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_378.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_379.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_380.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_381.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_382.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_383.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_384.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_385.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_386.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_387.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_388.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_389.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_390.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_391.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_392.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_393.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_394.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_395.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_396.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_397.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_398.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_399.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_400.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_401.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_402.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_403.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_404.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_405.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_406.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_407.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_408.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_409.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_410.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_411.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_412.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_413.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_414.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_415.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_416.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_417.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_418.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_419.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_420.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_421.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_422.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_423.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_424.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_425.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_426.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_427.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_428.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_429.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_430.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_431.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_432.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_433.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_434.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_435.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_436.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_437.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_438.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_439.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_440.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_441.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_442.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_443.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_444.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_445.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_446.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_447.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_448.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_449.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_450.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_451.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_452.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_453.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_454.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_455.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_456.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_457.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_458.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_459.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_460.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_461.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_462.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_463.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_464.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_465.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_466.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_467.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_468.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_469.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_470.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_471.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_472.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_473.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_474.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_475.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_476.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_477.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_478.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_479.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_480.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_481.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_482.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_483.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_484.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_485.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_486.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_487.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_488.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_489.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_490.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_491.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_492.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_493.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_494.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_495.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_496.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_497.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_498.sh -qsub /afs/cern.ch/work/a/ademoor/CMSSW_10_6_30/src/DeepNTuples/test/ntuple_qcd_700_1000/batch/sge_499.sh From f011e6efac2395a12e0af72a41dba38834732c38 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 14 Apr 2023 15:50:02 +0200 Subject: [PATCH 08/21] Update to 10_6_30 - Preparation for Re-Run2 --- DeepNtuplizer/BuildFile.xml | 2 +- DeepNtuplizer/bin/mergeSamples.cc | 4 +- DeepNtuplizer/bin/mergeSamples_parallel.cc | 4 +- DeepNtuplizer/bin/printBranches.cc | 8 +- DeepNtuplizer/interface/ntuple_SV.h | 15 +- DeepNtuplizer/interface/ntuple_pfCands.h | 9 + DeepNtuplizer/plugins/DeepNtuplizer.cc | 14 +- DeepNtuplizer/production/DeepNtuplizer.py | 2 +- DeepNtuplizer/production/New_UL17.cfg | 2 + DeepNtuplizer/production/New_UL17_HT.cfg | 5 + DeepNtuplizer/production/New_UL17_QCD.cfg | 12 + DeepNtuplizer/production/New_UL17_grav.cfg | 3 + DeepNtuplizer/scripts/jobSub.py | 2 +- DeepNtuplizer/src/ntuple_SV.cc | 254 +++++++++++--- DeepNtuplizer/src/ntuple_pfCands.cc | 375 +++++++++++---------- 15 files changed, 482 insertions(+), 229 deletions(-) create mode 100644 DeepNtuplizer/production/New_UL17.cfg create mode 100644 DeepNtuplizer/production/New_UL17_HT.cfg create mode 100644 DeepNtuplizer/production/New_UL17_QCD.cfg create mode 100644 DeepNtuplizer/production/New_UL17_grav.cfg diff --git a/DeepNtuplizer/BuildFile.xml b/DeepNtuplizer/BuildFile.xml index 3759283a42b..67d94077ab3 100644 --- a/DeepNtuplizer/BuildFile.xml +++ b/DeepNtuplizer/BuildFile.xml @@ -4,7 +4,7 @@ - + diff --git a/DeepNtuplizer/bin/mergeSamples.cc b/DeepNtuplizer/bin/mergeSamples.cc index 3749d7155e7..32cf4382449 100644 --- a/DeepNtuplizer/bin/mergeSamples.cc +++ b/DeepNtuplizer/bin/mergeSamples.cc @@ -40,7 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" -#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" +//#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" #include #include @@ -100,7 +100,7 @@ int main(int argc, char *argv[]){ branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - branchinfos.push_back(new ntuple_GraphB()); + //branchinfos.push_back(new ntuple_GraphB()); //simple opt parsing diff --git a/DeepNtuplizer/bin/mergeSamples_parallel.cc b/DeepNtuplizer/bin/mergeSamples_parallel.cc index ac5ed5e9aa7..96213f1450d 100644 --- a/DeepNtuplizer/bin/mergeSamples_parallel.cc +++ b/DeepNtuplizer/bin/mergeSamples_parallel.cc @@ -40,7 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" -#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" +//#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_FatJetInfo.h" #include @@ -124,7 +124,7 @@ std::vector createChains(const std::vector >& inf branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - branchinfos.push_back(new ntuple_GraphB()); + //branchinfos.push_back(new ntuple_GraphB()); branchinfos.push_back(new ntuple_FatJetInfo()); std::vector chains; diff --git a/DeepNtuplizer/bin/printBranches.cc b/DeepNtuplizer/bin/printBranches.cc index 80ada5b46e4..28377402efd 100644 --- a/DeepNtuplizer/bin/printBranches.cc +++ b/DeepNtuplizer/bin/printBranches.cc @@ -4,9 +4,9 @@ #include "../interface/ntuple_SV.h" #include "../interface/ntuple_bTagVars.h" #include "../interface/ntuple_pfCands.h" -#include "../interface/ntuple_FatJetInfo.h" -#include "../interface/ntuple_DeepVertex.h" -#include "../interface/ntuple_GraphB.h" +//#include "../interface/ntuple_FatJetInfo.h" +//#include "../interface/ntuple_DeepVertex.h" +//#include "../interface/ntuple_GraphB.h" #include "TFile.h" #include #include "TH1F.h" @@ -26,7 +26,7 @@ int main(int argc, char *argv[]) { branchinfos.push_back(new ntuple_pfCands()); // branchinfos.push_back(new ntuple_FatJetInfo()); // branchinfos.push_back(new ntuple_DeepVertex()); - branchinfos.push_back(new ntuple_GraphB()); + // branchinfos.push_back(new ntuple_GraphB()); if (argc < 3) return -1; diff --git a/DeepNtuplizer/interface/ntuple_SV.h b/DeepNtuplizer/interface/ntuple_SV.h index d3886fb1f6c..28df27a3c31 100644 --- a/DeepNtuplizer/interface/ntuple_SV.h +++ b/DeepNtuplizer/interface/ntuple_SV.h @@ -9,6 +9,8 @@ #define DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_SV_H_ #include "ntuple_content.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" class ntuple_SV: public ntuple_content{ public: @@ -19,6 +21,7 @@ class ntuple_SV: public ntuple_content{ void getInput(const edm::ParameterSet& iConfig); void initBranches(TTree* ); void readEvent(const edm::Event& iEvent); + void readSetup(const edm::EventSetup& iSetup); //use either of these functions @@ -33,6 +36,8 @@ class ntuple_SV: public ntuple_content{ float nsv_; std::string prefix_; + edm::ESHandle builder; + static constexpr size_t max_sv=10; float sv_pt_[max_sv]; @@ -58,7 +63,15 @@ class ntuple_SV: public ntuple_content{ float sv_costhetasvpv_[max_sv]; float sv_enratio_[max_sv]; - + float sv_hcal_frac_[max_sv]; + float sv_calo_frac_[max_sv]; + float sv_dz_[max_sv]; + float sv_pfd2dval_[max_sv]; + float sv_pfd2dsig_[max_sv]; + float sv_pfd3dval_[max_sv]; + float sv_pfd3dsig_[max_sv]; + float sv_puppiw_[max_sv]; + float sv_charge_sum_[max_sv]; static const reco::Vertex * spvp_; diff --git a/DeepNtuplizer/interface/ntuple_pfCands.h b/DeepNtuplizer/interface/ntuple_pfCands.h index b1475f4a929..8ddd7855957 100644 --- a/DeepNtuplizer/interface/ntuple_pfCands.h +++ b/DeepNtuplizer/interface/ntuple_pfCands.h @@ -111,7 +111,9 @@ class ntuple_pfCands: public ntuple_content{ float Cpfcan_chi2_[max_pfcand_]; float Cpfcan_quality_[max_pfcand_]; float Cpfcan_drminsv_[max_pfcand_]; + float Cpfcan_distminsvold_[max_pfcand_]; float Cpfcan_distminsv_[max_pfcand_]; + float Cpfcan_distminsv2_[max_pfcand_]; float Cpfcan_dxminsv_[max_pfcand_]; float Cpfcan_dyminsv_[max_pfcand_]; float Cpfcan_dzminsv_[max_pfcand_]; @@ -205,10 +207,17 @@ class ntuple_pfCands: public ntuple_content{ float Npfcan_deltaR_[max_pfcand_]; float Npfcan_isGamma_[max_pfcand_]; float Npfcan_HadFrac_[max_pfcand_]; + float Npfcan_CaloFrac_[max_pfcand_]; float Npfcan_drminsv_[max_pfcand_]; + float Npfcan_pdgID_[max_pfcand_]; + float Cpfcan_pdgID_[max_pfcand_]; + + float Cpfcan_HadFrac_[max_pfcand_]; + float Cpfcan_CaloFrac_[max_pfcand_]; float mindrsvpfcand(const pat::PackedCandidate* pfcand); + float mindistsvpfcandold(const reco::TransientTrack track); float mindistsvpfcand(const reco::TransientTrack track); GlobalPoint mingpsvpfcand(const reco::TransientTrack track); GlobalPoint gppvpfcand(const reco::TransientTrack track, GlobalVector direction, const reco::Vertex vertex); diff --git a/DeepNtuplizer/plugins/DeepNtuplizer.cc b/DeepNtuplizer/plugins/DeepNtuplizer.cc index 80ef68eaf43..6f430399b51 100644 --- a/DeepNtuplizer/plugins/DeepNtuplizer.cc +++ b/DeepNtuplizer/plugins/DeepNtuplizer.cc @@ -11,9 +11,9 @@ #include "../interface/ntuple_JetInfo.h" #include "../interface/ntuple_pfCands.h" #include "../interface/ntuple_bTagVars.h" -#include "../interface/ntuple_FatJetInfo.h" -#include "../interface/ntuple_DeepVertex.h" -#include "../interface/ntuple_GraphB.h" +//#include "../interface/ntuple_FatJetInfo.h" +//#include "../interface/ntuple_DeepVertex.h" +//#include "../interface/ntuple_GraphB.h" //ROOT includes #include "TTree.h" #include @@ -157,9 +157,9 @@ DeepNtuplizer::DeepNtuplizer(const edm::ParameterSet& iConfig): } */ - ntuple_GraphB* deepvertexmodule=new ntuple_GraphB(jetR); + /*ntuple_GraphB* deepvertexmodule=new ntuple_GraphB(jetR); deepvertexmodule->setCandidatesToken(consumes >(iConfig.getParameter("candidates"))); - addModule(deepvertexmodule, "DeepVertextuple"); + addModule(deepvertexmodule, "DeepVertextuple");*/ ntuple_JetInfo* jetinfo=new ntuple_JetInfo(); @@ -204,12 +204,12 @@ DeepNtuplizer::DeepNtuplizer(const edm::ParameterSet& iConfig): addModule(new ntuple_bTagVars(), "bTagVars"); - if(runFatJets_){ + /*if(runFatJets_){ auto *fatjetinfo = new ntuple_FatJetInfo(jetR); fatjetinfo->setGenParticleToken(consumes(iConfig.getParameter("pruned"))); fatjetinfo->setFatJetToken(consumes(iConfig.getParameter("fatjets"))); addModule(fatjetinfo, "fatJets"); - } + }*/ /* * * Modules initialized diff --git a/DeepNtuplizer/production/DeepNtuplizer.py b/DeepNtuplizer/production/DeepNtuplizer.py index 626752a2939..95787769f96 100644 --- a/DeepNtuplizer/production/DeepNtuplizer.py +++ b/DeepNtuplizer/production/DeepNtuplizer.py @@ -13,7 +13,7 @@ options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 10000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") diff --git a/DeepNtuplizer/production/New_UL17.cfg b/DeepNtuplizer/production/New_UL17.cfg new file mode 100644 index 00000000000..dd25fe32af2 --- /dev/null +++ b/DeepNtuplizer/production/New_UL17.cfg @@ -0,0 +1,2 @@ +850 /TTToHadronic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_ttbar_had +850 /TTToSemiLeptonic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_ttbar_semilep diff --git a/DeepNtuplizer/production/New_UL17_HT.cfg b/DeepNtuplizer/production/New_UL17_HT.cfg new file mode 100644 index 00000000000..02ceaaf43f4 --- /dev/null +++ b/DeepNtuplizer/production/New_UL17_HT.cfg @@ -0,0 +1,5 @@ +400 /TTToSemiLepton_HT500Njet9_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_ttbar_lep_HT500_njet9 +400 /QCD_HT300to500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_300_500 gluonReduction=0.5 +400 /QCD_HT500to700_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_500_700 gluonReduction=0.5 +400 /QCD_HT700to1000_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_700_1000 gluonReduction=0.5 +400 /QCD_HT1000to1500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_1000_1500 gluonReduction=0.5 \ No newline at end of file diff --git a/DeepNtuplizer/production/New_UL17_QCD.cfg b/DeepNtuplizer/production/New_UL17_QCD.cfg new file mode 100644 index 00000000000..ee4966b2ef8 --- /dev/null +++ b/DeepNtuplizer/production/New_UL17_QCD.cfg @@ -0,0 +1,12 @@ +850 /QCD_Pt_80to120_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_80_120 gluonReduction=0.5 +850 /QCD_Pt_120to170_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_120_170 gluonReduction=0.5 +850 /QCD_Pt_170to300_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_170_300 gluonReduction=0.5 +850 /QCD_Pt_300to470_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_300_470 gluonReduction=0.5 +850 /QCD_Pt_470to600_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_470_600 gluonReduction=0.5 +850 /QCD_Pt_600to800_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_600_800 gluonReduction=0.5 +850 /QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_800_1000 gluonReduction=0.5 +850 /QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +850 /QCD_Pt_1400to1800_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1400_1800 gluonReduction=0.5 +850 /QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1800_2400 gluonReduction=0.5 +850 /QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_2400_3200 gluonReduction=0.5 +850 /QCD_Pt_3200toInf_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_3200_inf gluonReduction=0.5 diff --git a/DeepNtuplizer/production/New_UL17_grav.cfg b/DeepNtuplizer/production/New_UL17_grav.cfg new file mode 100644 index 00000000000..3b577e9413f --- /dev/null +++ b/DeepNtuplizer/production/New_UL17_grav.cfg @@ -0,0 +1,3 @@ +750 /BulkGravitonToHHTo4Q_MX-600to6000_MH-15to250_part1_TuneCP5_13TeV-madgraph_pythia8/RunIISummer19UL17MiniAODv2-multigridpack_106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_blukgrav_part1 gluonReduction=0.5 +750 /BulkGravitonToHHTo4Q_MX-600to6000_MH-15to250_part2_TuneCP5_13TeV-madgraph_pythia8/RunIISummer19UL17MiniAODv2-multigridpack_106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_blukgrav_part2 gluonReduction=0.5 +750 /BulkGravitonToHHTo4Q_MX-600to6000_MH-15to250_part3_TuneCP5_13TeV-madgraph_pythia8/RunIISummer19UL17MiniAODv2-multigridpack_106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_blukgrav_part3 gluonReduction=0.5 \ No newline at end of file diff --git a/DeepNtuplizer/scripts/jobSub.py b/DeepNtuplizer/scripts/jobSub.py index d8f012e3866..bd9ffe47fa5 100755 --- a/DeepNtuplizer/scripts/jobSub.py +++ b/DeepNtuplizer/scripts/jobSub.py @@ -30,7 +30,7 @@ def doSub(): parser.add_argument('--nosubmit',default=False,help='no submission') parser.add_argument('--outpath',default='',help='set path to store the .root output') parser.add_argument('--walltime',default='21600',help='set job wall time in seconds') - parser.add_argument('--maxsize',default='2000',help='set maximum allowed size of output ntuple') + parser.add_argument('--maxsize',default='15000',help='set maximum allowed size of output ntuple') args = parser.parse_args() diff --git a/DeepNtuplizer/src/ntuple_SV.cc b/DeepNtuplizer/src/ntuple_SV.cc index b4098106eca..ac43425cd3a 100644 --- a/DeepNtuplizer/src/ntuple_SV.cc +++ b/DeepNtuplizer/src/ntuple_SV.cc @@ -16,7 +16,139 @@ #include "DataFormats/Math/interface/deltaR.h" #include "TrackingTools/IPTools/interface/IPTools.h" #include "DataFormats/GeometryCommonDetAlgo/interface/Measurement1D.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "TrackingTools/IPTools/interface/IPTools.h" +#include "TrackingTools/Records/interface/TransientTrackRecord.h" +#include "RecoVertex/VertexTools/interface/VertexDistance3D.h" +#include "TVector3.h" + +class TrackInfoBuilder{ +public: + TrackInfoBuilder(edm::ESHandle & build): + builder(build), + trackMomentum_(0), + trackEta_(0), + trackEtaRel_(0), + trackPtRel_(0), + trackPPar_(0), + trackDeltaR_(0), + trackPtRatio_(0), + trackPParRatio_(0), + trackSip2dVal_(0), + trackSip2dSig_(0), + trackSip3dVal_(0), + trackSip3dSig_(0), + + trackJetDecayLen_(0), + trackJetDistVal_(0), + trackJetDistSig_(0), + ttrack_(0) + { + + } + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + TVector3 trackMom3( + PackedCandidate_->momentum().x(), + PackedCandidate_->momentum().y(), + PackedCandidate_->momentum().z() + ); + trackMomentum_=PackedCandidate_->p(); + trackEta_= PackedCandidate_->eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); + trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); + trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); + trackSip2dVal_=0.; + trackSip2dSig_=0.; + trackSip3dVal_=0.; + trackSip3dSig_=0.; + trackJetDecayLen_=0.; + trackJetDistVal_=0.; + trackJetDistSig_=0.; + return; + } + + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; + Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; + Measurement1D decayl = IPTools::signedDecayLength3D(transientTrack, refjetdirection, pv).second; + math::XYZVector trackMom = PseudoTrack.momentum(); + double trackMag = std::sqrt(trackMom.Mag2()); + TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + + trackMomentum_=std::sqrt(trackMom.Mag2()); + trackEta_= trackMom.Eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(trackMom); + trackDeltaR_=reco::deltaR(trackMom, jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; + trackPParRatio_=jetDir.Dot(trackMom) / trackMag; + + trackSip2dVal_=(meas_ip2d.value()); + trackSip2dSig_=(meas_ip2d.significance()); + trackSip3dVal_=(meas_ip3d.value()); + trackSip3dSig_=meas_ip3d.significance(); + + trackJetDecayLen_= decayl.value(); + trackJetDistVal_= jetdist.value(); + trackJetDistSig_= jetdist.significance(); + + ttrack_ = transientTrack; + + } + + const float& getTrackDeltaR() const {return trackDeltaR_;} + const float& getTrackEta() const {return trackEta_;} + const float& getTrackEtaRel() const {return trackEtaRel_;} + const float& getTrackJetDecayLen() const {return trackJetDecayLen_;} + const float& getTrackJetDistSig() const {return trackJetDistSig_;} + const float& getTrackJetDistVal() const {return trackJetDistVal_;} + const float& getTrackMomentum() const {return trackMomentum_;} + const float& getTrackPPar() const {return trackPPar_;} + const float& getTrackPParRatio() const {return trackPParRatio_;} + const float& getTrackPtRatio() const {return trackPtRatio_;} + const float& getTrackPtRel() const {return trackPtRel_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + const float& getTrackSip2dVal() const {return trackSip2dVal_;} + const float& getTrackSip3dSig() const {return trackSip3dSig_;} + const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const reco::TransientTrack getTTrack() const {return ttrack_;} + +private: + + edm::ESHandle& builder; + + float trackMomentum_; + float trackEta_; + float trackEtaRel_; + float trackPtRel_; + float trackPPar_; + float trackDeltaR_; + float trackPtRatio_; + float trackPParRatio_; + float trackSip2dVal_; + float trackSip2dSig_; + float trackSip3dVal_; + float trackSip3dSig_; + + float trackJetDecayLen_; + float trackJetDistVal_; + float trackJetDistSig_; + reco::TransientTrack ttrack_; + +}; const reco::Vertex * ntuple_SV::spvp_; @@ -31,33 +163,48 @@ void ntuple_SV::getInput(const edm::ParameterSet& iConfig){ } void ntuple_SV::initBranches(TTree* tree){ - // SV candidates - addBranch(tree,(prefix_+"n_sv").c_str() ,&sv_num_ ,(prefix_+"sv_num_/i").c_str() ); - addBranch(tree,(prefix_+"nsv").c_str() ,&nsv_ ,(prefix_+"nsv_/f").c_str() ); - addBranch(tree,(prefix_+"sv_pt").c_str() ,&sv_pt_ ,(prefix_+"sv_pt_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_eta").c_str() ,&sv_eta_ ,(prefix_+"sv_eta_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_phi").c_str() ,&sv_phi_ ,(prefix_+"sv_phi_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_e").c_str() ,&sv_e_ ,(prefix_+"sv_e_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_etarel").c_str() ,&sv_etarel_ ,(prefix_+"sv_etarel_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_phirel").c_str() ,&sv_phirel_ ,(prefix_+"sv_phirel_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_deltaR").c_str() ,&sv_deltaR_ ,(prefix_+"sv_deltaR_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_mass").c_str() ,&sv_mass_ ,(prefix_+"sv_mass_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_ntracks").c_str() ,&sv_ntracks_ ,(prefix_+"sv_ntracks_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_chi2").c_str() ,&sv_chi2_ ,(prefix_+"sv_chi2_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_ndf").c_str() ,&sv_ndf_ ,(prefix_+"sv_ndf_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_normchi2").c_str() ,&sv_normchi2_ ,(prefix_+"sv_normchi2_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_dxy").c_str() ,&sv_dxy_ ,(prefix_+"sv_dxy_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_dxyerr").c_str() ,&sv_dxyerr_ ,(prefix_+"sv_dxyerr_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_dxysig").c_str() ,&sv_dxysig_ ,(prefix_+"sv_dxysig_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_d3d").c_str() ,&sv_d3d_ ,(prefix_+"sv_d3d_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_d3derr").c_str() ,&sv_d3derr_ ,(prefix_+"sv_d3err_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_d3dsig").c_str() ,&sv_d3dsig_ ,(prefix_+"sv_d3dsig_["+prefix_+"sv_num_]/f").c_str() ); - addBranch(tree,(prefix_+"sv_costhetasvpv").c_str(),&sv_costhetasvpv_,(prefix_+"sv_costhetasvpv_["+prefix_+"sv_num_]/f").c_str()); - addBranch(tree,(prefix_+"sv_enratio").c_str() ,&sv_enratio_ ,(prefix_+"sv_enratio_["+prefix_+"sv_num_]/f").c_str()); - + // SV candidates + addBranch(tree,(prefix_+"n_sv").c_str() ,&sv_num_ ,(prefix_+"sv_num_/I").c_str() ); + addBranch(tree,(prefix_+"nsv").c_str() ,&nsv_ ,(prefix_+"nsv_/F").c_str() ); + addBranch(tree,(prefix_+"sv_pt").c_str() ,&sv_pt_ ,(prefix_+"sv_pt_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_eta").c_str() ,&sv_eta_ ,(prefix_+"sv_eta_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_phi").c_str() ,&sv_phi_ ,(prefix_+"sv_phi_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_e").c_str() ,&sv_e_ ,(prefix_+"sv_e_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_etarel").c_str() ,&sv_etarel_ ,(prefix_+"sv_etarel_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_phirel").c_str() ,&sv_phirel_ ,(prefix_+"sv_phirel_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_deltaR").c_str() ,&sv_deltaR_ ,(prefix_+"sv_deltaR_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_mass").c_str() ,&sv_mass_ ,(prefix_+"sv_mass_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_ntracks").c_str() ,&sv_ntracks_ ,(prefix_+"sv_ntracks_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_chi2").c_str() ,&sv_chi2_ ,(prefix_+"sv_chi2_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_ndf").c_str() ,&sv_ndf_ ,(prefix_+"sv_ndf_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_normchi2").c_str() ,&sv_normchi2_ ,(prefix_+"sv_normchi2_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_dxy").c_str() ,&sv_dxy_ ,(prefix_+"sv_dxy_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_dxyerr").c_str() ,&sv_dxyerr_ ,(prefix_+"sv_dxyerr_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_dxysig").c_str() ,&sv_dxysig_ ,(prefix_+"sv_dxysig_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_d3d").c_str() ,&sv_d3d_ ,(prefix_+"sv_d3d_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_d3derr").c_str() ,&sv_d3derr_ ,(prefix_+"sv_d3err_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_d3dsig").c_str() ,&sv_d3dsig_ ,(prefix_+"sv_d3dsig_["+prefix_+"sv_num_]/F").c_str() ); + addBranch(tree,(prefix_+"sv_costhetasvpv").c_str(),&sv_costhetasvpv_,(prefix_+"sv_costhetasvpv_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_enratio").c_str() ,&sv_enratio_ ,(prefix_+"sv_enratio_["+prefix_+"sv_num_]/F").c_str()); + + addBranch(tree,(prefix_+"sv_hcal_frac").c_str() ,&sv_hcal_frac_ ,(prefix_+"sv_hcal_frac_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_calo_frac").c_str() ,&sv_calo_frac_ ,(prefix_+"sv_calo_frac_["+prefix_+"sv_num_]/F").c_str()); + + addBranch(tree,(prefix_+"sv_dz").c_str() ,&sv_dz_ ,(prefix_+"sv_dz_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_pfd2dval").c_str() ,&sv_pfd2dval_ ,(prefix_+"sv_pfd2dval_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_pfd2dsig").c_str() ,&sv_pfd2dsig_ ,(prefix_+"sv_pfd2dsig_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_pfd3dval").c_str() ,&sv_pfd3dval_ ,(prefix_+"sv_pfd3dval_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_pfd3dsig").c_str() ,&sv_pfd3dsig_ ,(prefix_+"sv_pfd3dsig_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_puppiw").c_str() ,&sv_puppiw_ ,(prefix_+"sv_puppiw_["+prefix_+"sv_num_]/F").c_str()); + addBranch(tree,(prefix_+"sv_charge_sum").c_str() ,&sv_charge_sum_ ,(prefix_+"sv_charge_sum_["+prefix_+"sv_num_]/F").c_str()); } +void ntuple_SV::readSetup(const edm::EventSetup& iSetup){ + + iSetup.get().get("TransientTrackBuilder", builder); + +} void ntuple_SV::readEvent(const edm::Event& iEvent){ @@ -79,18 +226,19 @@ bool ntuple_SV::compareDxyDxyErr(const reco::VertexCompositePtrCandidate &sva,co bool ntuple_SV::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ - const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); - const reco::Vertex & pv = vertices()->at(0); + math::XYZVector jetDir = jet.momentum().Unit(); + GlobalVector jetRefTrackDir(jet.px(),jet.py(),jet.pz()); sv_num_ = 0; reco::VertexCompositePtrCandidateCollection cpvtx=*secVertices(); - spvp_ = & vertices()->at(0); std::sort(cpvtx.begin(),cpvtx.end(),ntuple_SV::compareDxyDxyErr); + TrackInfoBuilder trackinfo(builder); + float etasign=1; etasign++; //avoid unused warning if(jet.eta()<0)etasign=-1; @@ -134,7 +282,46 @@ bool ntuple_SV::fillBranches(const pat::Jet & jet, const size_t& jetidx, const sv_enratio_[sv_num_]=sv.energy()/jet_uncorr_e; sv_e_[sv_num_]=sv.energy(); - + float calo_frac = 0.0; + float hcal_frac = 0.0; + float puppiw = 0.0; + float charge = 0.0; + float dz = 0.0; + + float pfd3dval = 0.0; + float pfd3dsig = 0.0; + float pfd2dval = 0.0; + float pfd2dsig = 0.0; + float pfcount = 0.0; + + for (unsigned idx=0; idx(sv.daughter(idx)); + + calo_frac = calo_frac + PackedCandidate_->caloFraction(); + hcal_frac = hcal_frac + PackedCandidate_->hcalFraction(); + puppiw = puppiw + PackedCandidate_->puppiWeight(); + charge = charge + PackedCandidate_->charge(); + dz = dz + PackedCandidate_->dz(); + if(PackedCandidate_->charge() != 0 and PackedCandidate_->pt() > 0.95){ + trackinfo.buildTrackInfo(PackedCandidate_,jetDir,jetRefTrackDir,pv); + pfd3dval = pfd3dval + catchInfsAndBound(trackinfo.getTrackSip3dVal(), 0, -1,1e5 ); + pfd3dsig = pfd3dsig + catchInfsAndBound(trackinfo.getTrackSip3dSig(), 0, -1,4e4 ); + pfd2dval = pfd2dval + catchInfsAndBound(trackinfo.getTrackSip2dVal(), 0, -1,70 ); + pfd2dsig = pfd2dsig + catchInfsAndBound(trackinfo.getTrackSip2dSig(), 0, -1,4e4 ); + pfcount = pfcount + 1.0; + } + } + + sv_calo_frac_[sv_num_] = calo_frac / sv.numberOfDaughters(); + sv_hcal_frac_[sv_num_] = hcal_frac / sv.numberOfDaughters(); + sv_puppiw_[sv_num_] = puppiw / sv.numberOfDaughters(); + sv_dz_[sv_num_] = dz / sv.numberOfDaughters(); + sv_charge_sum_[sv_num_] = charge; + + sv_pfd3dval_[sv_num_] = pfd3dval / pfcount; + sv_pfd3dsig_[sv_num_] = pfd3dsig / pfcount; + sv_pfd2dval_[sv_num_] = pfd2dval / pfcount; + sv_pfd2dsig_[sv_num_] = pfd2dsig / pfcount; sv_num_++; } @@ -144,18 +331,7 @@ bool ntuple_SV::fillBranches(const pat::Jet & jet, const size_t& jetidx, const return true; } - - - - - - - - ///helpers seldomly touched - - - Measurement1D ntuple_SV::vertexDxy(const reco::VertexCompositePtrCandidate &svcand, const reco::Vertex &pv) { VertexDistanceXY dist; reco::Vertex::CovarianceMatrix csv; svcand.fillVertexCovariance(csv); diff --git a/DeepNtuplizer/src/ntuple_pfCands.cc b/DeepNtuplizer/src/ntuple_pfCands.cc index 65c3bf9189c..5960109869d 100644 --- a/DeepNtuplizer/src/ntuple_pfCands.cc +++ b/DeepNtuplizer/src/ntuple_pfCands.cc @@ -28,162 +28,134 @@ class TrackInfoBuilder{ public: - TrackInfoBuilder(edm::ESHandle & build): - builder(build), - trackMomentum_(0), - trackEta_(0), - trackEtaRel_(0), - trackPtRel_(0), - trackPPar_(0), - trackDeltaR_(0), - trackPtRatio_(0), - trackPParRatio_(0), - trackSip2dVal_(0), - trackSip2dSig_(0), - trackSip3dVal_(0), - trackSip3dSig_(0), - - trackJetDistVal_(0), - trackJetDistSig_(0), - //trackMinDistSV_(0), - //trackMinDistXSV_(0), - //trackMinDistYSV_(0), - //trackMinDistZSV_(0) - ttrack_(0) - -{ - - -} - - void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ - TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); - if(!PackedCandidate_->hasTrackDetails()) { - TVector3 trackMom3( - PackedCandidate_->momentum().x(), - PackedCandidate_->momentum().y(), - PackedCandidate_->momentum().z() - ); - trackMomentum_=PackedCandidate_->p(); - trackEta_= PackedCandidate_->eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); - trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); - trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); - trackSip2dVal_=0.; - trackSip2dSig_=0.; - trackSip3dVal_=0.; - trackSip3dSig_=0.; - trackJetDistVal_=0.; - trackJetDistSig_=0.; - //ttrack_ = 0; - //trackMinDistSV_=0.; - //trackMinDistXSV_=0.; - //trackMinDistYSV_=0.; - //trackMinDistZSV_=0.; - return; - } - - const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); - - reco::TransientTrack transientTrack; - //reco::TransientTrack* transientTrack2; - transientTrack=builder->build(PseudoTrack); - Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; - Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; - Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; - math::XYZVector trackMom = PseudoTrack.momentum(); - double trackMag = std::sqrt(trackMom.Mag2()); - TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); - //float mindistsv = mindistsvpfcand(transientTrack); - //GlobalPoint mindistgpsv = mingpsvpfcand(transientTrack); - - - trackMomentum_=std::sqrt(trackMom.Mag2()); - trackEta_= trackMom.Eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(trackMom); - trackDeltaR_=reco::deltaR(trackMom, jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; - trackPParRatio_=jetDir.Dot(trackMom) / trackMag; - trackSip2dVal_=(meas_ip2d.value()); - - trackSip2dSig_=(meas_ip2d.significance()); - trackSip3dVal_=(meas_ip3d.value()); - - - trackSip3dSig_= meas_ip3d.significance(); - trackJetDistVal_= jetdist.value(); - trackJetDistSig_= jetdist.significance(); - - //trackMinDistSV_= mindistsv; - //trackMinDistXSV_= mindistgpsv.x(); - //trackMinDistYSV_= mindistgpsv.y(); - //trackMinDistZSV_= mindistgpsv.z(); - ttrack_ = transientTrack; - - + TrackInfoBuilder(edm::ESHandle & build): + builder(build), + trackMomentum_(0), + trackEta_(0), + trackEtaRel_(0), + trackPtRel_(0), + trackPPar_(0), + trackDeltaR_(0), + trackPtRatio_(0), + trackPParRatio_(0), + trackSip2dVal_(0), + trackSip2dSig_(0), + trackSip3dVal_(0), + trackSip3dSig_(0), + + trackJetDecayLen_(0), + trackJetDistVal_(0), + trackJetDistSig_(0), + ttrack_(0) + { + + + } + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + TVector3 trackMom3( + PackedCandidate_->momentum().x(), + PackedCandidate_->momentum().y(), + PackedCandidate_->momentum().z() + ); + trackMomentum_=PackedCandidate_->p(); + trackEta_= PackedCandidate_->eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); + trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); + trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); + trackSip2dVal_=0.; + trackSip2dSig_=0.; + trackSip3dVal_=0.; + trackSip3dSig_=0.; + trackJetDecayLen_=0.; + trackJetDistVal_=0.; + trackJetDistSig_=0.; + return; } - const float& getTrackDeltaR() const {return trackDeltaR_;} - const float& getTrackEta() const {return trackEta_;} - const float& getTrackEtaRel() const {return trackEtaRel_;} - const float& getTrackJetDistSig() const {return trackJetDistSig_;} - const float& getTrackJetDistVal() const {return trackJetDistVal_;} - const float& getTrackMomentum() const {return trackMomentum_;} - const float& getTrackPPar() const {return trackPPar_;} - const float& getTrackPParRatio() const {return trackPParRatio_;} - const float& getTrackPtRatio() const {return trackPtRatio_;} - const float& getTrackPtRel() const {return trackPtRel_;} - const float& getTrackSip2dSig() const {return trackSip2dSig_;} - const float& getTrackSip2dVal() const {return trackSip2dVal_;} - const float& getTrackSip3dSig() const {return trackSip3dSig_;} - const float& getTrackSip3dVal() const {return trackSip3dVal_;} - - const reco::TransientTrack getTTrack() const {return ttrack_;} - - //const float& getrackMinDistSV() const {return trackMinDistSV_;} - //const float& getTrackMinDistXSV() const {return trackMinDistXSV_;} - //const float& getTrackMinDistYSV() const {return trackMinDistYSV_;} - //const float& getTrackMinDistZSV() const {return trackMinDistZSV_;} + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; + Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; + Measurement1D decayl = IPTools::signedDecayLength3D(transientTrack, refjetdirection, pv).second; + math::XYZVector trackMom = PseudoTrack.momentum(); + double trackMag = std::sqrt(trackMom.Mag2()); + TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + + + trackMomentum_=std::sqrt(trackMom.Mag2()); + trackEta_= trackMom.Eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(trackMom); + trackDeltaR_=reco::deltaR(trackMom, jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; + trackPParRatio_=jetDir.Dot(trackMom) / trackMag; + + trackSip2dVal_=(meas_ip2d.value()); + trackSip2dSig_=(meas_ip2d.significance()); + trackSip3dVal_=(meas_ip3d.value()); + trackSip3dSig_=meas_ip3d.significance(); + + trackJetDecayLen_= decayl.value(); + trackJetDistVal_= jetdist.value(); + trackJetDistSig_= jetdist.significance(); + + ttrack_ = transientTrack; + + } + + const float& getTrackDeltaR() const {return trackDeltaR_;} + const float& getTrackEta() const {return trackEta_;} + const float& getTrackEtaRel() const {return trackEtaRel_;} + const float& getTrackJetDecayLen() const {return trackJetDecayLen_;} + const float& getTrackJetDistSig() const {return trackJetDistSig_;} + const float& getTrackJetDistVal() const {return trackJetDistVal_;} + const float& getTrackMomentum() const {return trackMomentum_;} + const float& getTrackPPar() const {return trackPPar_;} + const float& getTrackPParRatio() const {return trackPParRatio_;} + const float& getTrackPtRatio() const {return trackPtRatio_;} + const float& getTrackPtRel() const {return trackPtRel_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + const float& getTrackSip2dVal() const {return trackSip2dVal_;} + const float& getTrackSip3dSig() const {return trackSip3dSig_;} + const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const reco::TransientTrack getTTrack() const {return ttrack_;} private: edm::ESHandle& builder; - float trackMomentum_; - float trackEta_; - float trackEtaRel_; - float trackPtRel_; - float trackPPar_; - float trackDeltaR_; - float trackPtRatio_; - float trackPParRatio_; - float trackSip2dVal_; - float trackSip2dSig_; - float trackSip3dVal_; - float trackSip3dSig_; - - float trackJetDistVal_; - float trackJetDistSig_; - reco::TransientTrack ttrack_; - //float trackMinDistSV_; - //float trackMinDistXSV_; - //float trackMinDistYSV_; - //float trackMinDistZSV_; + float trackMomentum_; + float trackEta_; + float trackEtaRel_; + float trackPtRel_; + float trackPPar_; + float trackDeltaR_; + float trackPtRatio_; + float trackPParRatio_; + float trackSip2dVal_; + float trackSip2dSig_; + float trackSip3dVal_; + float trackSip3dSig_; + + float trackJetDecayLen_; + float trackJetDistVal_; + float trackJetDistSig_; + reco::TransientTrack ttrack_; }; - - - void ntuple_pfCands::readSetup(const edm::EventSetup& iSetup){ - iSetup.get().get("TransientTrackBuilder", builder); - } void ntuple_pfCands::getInput(const edm::ParameterSet& iConfig){ @@ -218,7 +190,9 @@ void ntuple_pfCands::initBranches(TTree* tree){ addBranch(tree,"Cpfcan_fromPV",&Cpfcan_fromPV_,"Cpfcan_fromPV_[n_Cpfcand_]/F"); addBranch(tree,"Cpfcan_drminsv",&Cpfcan_drminsv_,"Cpfcan_drminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_distminsvold",&Cpfcan_distminsvold_,"Cpfcan_distminsvold_[n_Cpfcand_]/F"); addBranch(tree,"Cpfcan_distminsv",&Cpfcan_distminsv_,"Cpfcan_distminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_distminsv2",&Cpfcan_distminsv2_,"Cpfcan_distminsv2_[n_Cpfcand_]/F"); addBranch(tree,"Cpfcan_dxminsv",&Cpfcan_dxminsv_,"Cpfcan_dxminsv_[n_Cpfcand_]/F"); addBranch(tree,"Cpfcan_dyminsv",&Cpfcan_dyminsv_,"Cpfcan_dyminsv_[n_Cpfcand_]/F"); addBranch(tree,"Cpfcan_dzminsv",&Cpfcan_dzminsv_,"Cpfcan_dzminsv_[n_Cpfcand_]/F"); @@ -368,6 +342,11 @@ void ntuple_pfCands::initBranches(TTree* tree){ addBranch(tree,"Npfcan_HadFrac",&Npfcan_HadFrac_,"Npfcan_HadFrac_[n_Npfcand_]/F"); addBranch(tree,"Npfcan_drminsv",&Npfcan_drminsv_,"Npfcan_drminsv_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_pdgID",&Npfcan_pdgID_,"Npfcan_pdgID_[n_Npfcand_]/F"); + addBranch(tree,"Cpfcan_pdgID",&Cpfcan_pdgID_,"Cpfcan_pdgID_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_HadFrac",&Cpfcan_HadFrac_,"Cpfcan_HadFrac_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_CaloFrac",&Cpfcan_CaloFrac_,"Cpfcan_CaloFrac_[n_Cpfcand_]/F"); } @@ -433,6 +412,31 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co // get the dr with the closest sv float drminpfcandsv_ = mindrsvpfcand(PackedCandidate_); + float pdgid_; + if (abs(PackedCandidate_->pdgId()) == 11 and PackedCandidate_->charge() != 0){ + pdgid_ = 0.0; + } + else if (abs(PackedCandidate_->pdgId()) == 13 and PackedCandidate_->charge() != 0){ + pdgid_ = 1.0; + } + else if (abs(PackedCandidate_->pdgId()) == 22 and PackedCandidate_->charge() == 0){ + pdgid_ = 2.0; + } + else if (abs(PackedCandidate_->pdgId()) != 22 and PackedCandidate_->charge() == 0 and abs(PackedCandidate_->pdgId()) != 1 and abs(PackedCandidate_->pdgId()) != 2){ + pdgid_ = 3.0; + } + else if (abs(PackedCandidate_->pdgId()) != 11 and abs(PackedCandidate_->pdgId()) != 13 and PackedCandidate_->charge() != 0){ + pdgid_ = 4.0; + } + else if (PackedCandidate_->charge() == 0 and abs(PackedCandidate_->pdgId()) == 1){ + pdgid_ = 5.0; + } + else if (PackedCandidate_->charge() == 0 and abs(PackedCandidate_->pdgId()) == 2){ + pdgid_ = 6.0; + } + else{ + pdgid_ = 7.0; + } /// This might include more than PF candidates, e.g. Reco muons and could /// be double counting. Needs to be checked.!!!! @@ -443,7 +447,7 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co size_t fillntupleentry= sortedchargedindices.at(i); if(fillntupleentry>=max_pfcand_) continue; - + Cpfcan_pdgID_[fillntupleentry] = pdgid_; Cpfcan_pt_[fillntupleentry] = PackedCandidate_->pt(); Cpfcan_eta_[fillntupleentry] = PackedCandidate_->eta(); Cpfcan_phi_[fillntupleentry] = PackedCandidate_->phi(); @@ -470,40 +474,26 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Cpfcan_vertexChi2_[fillntupleentry]=PackedCandidate_->vertexChi2(); Cpfcan_vertexNdof_[fillntupleentry]=PackedCandidate_->vertexNdof(); + + Cpfcan_CaloFrac_[fillntupleentry] = PackedCandidate_->caloFraction(); + Cpfcan_HadFrac_[fillntupleentry] = PackedCandidate_->hcalFraction(); + //divided Cpfcan_vertexNormalizedChi2_[fillntupleentry]=PackedCandidate_->vertexNormalizedChi2(); Cpfcan_vertex_rho_[fillntupleentry]=catchInfsAndBound(PackedCandidate_->vertex().rho(),0,-1,50); Cpfcan_vertex_phirel_[fillntupleentry]=reco::deltaPhi(PackedCandidate_->vertex().phi(),jet.phi()); Cpfcan_vertex_etarel_[fillntupleentry]=etasign*(PackedCandidate_->vertex().eta()-jet.eta()); Cpfcan_vertexRef_mass_[fillntupleentry]=PackedCandidate_->vertexRef()->p4().M(); - - Cpfcan_puppiw_[fillntupleentry] = PackedCandidate_->puppiWeight(); - - /* - reco::Track::CovarianceMatrix myCov = PseudoTrack.covariance (); - //https://github.com/cms-sw/cmssw/blob/CMSSW_9_0_X/DataFormats/PatCandidates/interface/PackedCandidate.h#L394 - - Cpfcan_dptdpt_[fillntupleentry] = catchInfsAndBound(myCov[0][0],0,-1,1); - Cpfcan_detadeta_[fillntupleentry]= catchInfsAndBound(myCov[1][1],0,-1,0.01); - Cpfcan_dphidphi_[fillntupleentry]= catchInfsAndBound(myCov[2][2],0,-1,0.1); - - Cpfcan_dxydxy_[fillntupleentry] = catchInfsAndBound(myCov[3][3],7.,-1,7); //zero if pvAssociationQuality ==7 ? - Cpfcan_dzdz_[fillntupleentry] = catchInfsAndBound(myCov[4][4],6.5,-1,6.5); //zero if pvAssociationQuality ==7 ? - Cpfcan_dxydz_[fillntupleentry] = catchInfsAndBound(myCov[3][4],6.,-6,6); //zero if pvAssociationQuality ==7 ? - Cpfcan_dphidxy_[fillntupleentry] = catchInfs(myCov[2][3],-0.03); //zero if pvAssociationQuality ==7 ? - Cpfcan_dlambdadz_[fillntupleentry]= catchInfs(myCov[1][4],-0.03); //zero if pvAssociationQuality ==7 ? - */ - trackinfo.buildTrackInfo(PackedCandidate_,jetDir,jetRefTrackDir,pv); const reco::TransientTrack ttrack = trackinfo.getTTrack(); - float mindistsv = mindistsvpfcand(ttrack); + float mindistsvold = mindistsvpfcandold(ttrack); GlobalPoint mindistgpsv = mingpsvpfcand(ttrack); GlobalPoint gppv = gppvpfcand(ttrack, jetRefTrackDir, pv); - Cpfcan_distminsv_[fillntupleentry] = mindistsv; + Cpfcan_distminsvold_[fillntupleentry] = mindistsvold; Cpfcan_dxminsv_[fillntupleentry] = mindistgpsv.x(); Cpfcan_dyminsv_[fillntupleentry] = mindistgpsv.y(); Cpfcan_dzminsv_[fillntupleentry] = mindistgpsv.z(); @@ -511,11 +501,11 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Cpfcan_dypv_[fillntupleentry] = gppv.y(); Cpfcan_dzpv_[fillntupleentry] = gppv.z(); - //trackMinDistSV_= mindistsv; - //trackMinDistXSV_= mindistgpsv.x(); - //trackMinDistYSV_= mindistgpsv.y(); - //trackMinDistZSV_= mindistgpsv.z(); + float mindistsv = mindistsvpfcand(ttrack); + float eng_mindistsv = std::log(std::fabs(mindistsv)+1.0); + Cpfcan_distminsv_[fillntupleentry] = mindistsv; + Cpfcan_distminsv2_[fillntupleentry] = eng_mindistsv; Cpfcan_BtagPf_trackMomentum_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackMomentum(),0,0 ,1000); Cpfcan_BtagPf_trackEta_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackEta() , 0,-5,5); @@ -529,7 +519,7 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Cpfcan_BtagPf_trackSip3dSig_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip3dSig(), 0, -1,4e4 ); Cpfcan_BtagPf_trackSip2dVal_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip2dVal(), 0, -1,70 ); Cpfcan_BtagPf_trackSip2dSig_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip2dSig(), 0, -1,4e4 ); - Cpfcan_BtagPf_trackDecayLen_[fillntupleentry] =0; + Cpfcan_BtagPf_trackDecayLen_[fillntupleentry] =trackinfo.getTrackJetDecayLen(); Cpfcan_BtagPf_trackJetDistVal_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackJetDistVal(),0,-20,1 ); Cpfcan_BtagPf_trackJetDistSig_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackJetDistSig(),0,-1,1e5 ); @@ -833,7 +823,9 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Npfcan_deltaR_[fillntupleentry] = catchInfsAndBound(reco::deltaR(*PackedCandidate_,jet),0,-0.6,0,-0.6); Npfcan_isGamma_[fillntupleentry] = 0; if(fabs(PackedCandidate_->pdgId())==22) Npfcan_isGamma_[fillntupleentry] = 1; + Npfcan_CaloFrac_[fillntupleentry] = PackedCandidate_->caloFraction(); Npfcan_HadFrac_[fillntupleentry] = PackedCandidate_->hcalFraction(); + Npfcan_pdgID_[fillntupleentry] = pdgid_; Npfcan_drminsv_[fillntupleentry] = catchInfsAndBound(drminpfcandsv_,0,-0.4,0,-0.4); @@ -875,7 +867,7 @@ float ntuple_pfCands::mindrsvpfcand(const pat::PackedCandidate* pfcand) { return mindr_; } -float ntuple_pfCands::mindistsvpfcand(const reco::TransientTrack track) { +float ntuple_pfCands::mindistsvpfcandold(const reco::TransientTrack track) { float mindist_ = 999.999; float out_dist = 0.0; @@ -981,3 +973,44 @@ GlobalPoint ntuple_pfCands::gppvpfcand(const reco::TransientTrack track, const G out_dist = pca; return out_dist; } + +float ntuple_pfCands::mindistsvpfcand(const reco::TransientTrack track) { + + float mindist_ = 999.999; + float out_dist = 0.0; + for (unsigned int i=0; isize(); ++i) { + if (!track.isValid()) {continue;} + reco::Vertex::CovarianceMatrix csv; secVertices()->at(i).fillVertexCovariance(csv); + reco::Vertex vertex(secVertices()->at(i).vertex(), csv); + if (!vertex.isValid()) {continue;} + + GlobalVector direction(secVertices()->at(i).px(),secVertices()->at(i).py(),secVertices()->at(i).pz()); + + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (!tsos.isValid()) {continue;} + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (!result.first) {continue;} + + GlobalPoint impactPoint = tsos.globalPosition(); + GlobalVector IPVec(impactPoint.x() - vertex.x(), impactPoint.y() - vertex.y(), impactPoint.z() - vertex.z()); + double prod = IPVec.dot(direction); + double sign = (prod >= 0) ? 1. : -1.; + + if(result.second.value() < mindist_){ + float inv_dist = 1.0 / (sign * result.second.value() + 0.001); + out_dist = inv_dist; + mindist_ = result.second.value(); + } + } + return out_dist; +} From 3ce82e641fb563166958821c66a59c24ca85ff64 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Fri, 14 Apr 2023 15:51:17 +0200 Subject: [PATCH 09/21] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 663dd430eff..5337caad7b5 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Installation (CMSSW 10_6_X) ============ ``` -cmsrel CMSSW_10_6_0 -cd CMSSW_10_6_0/src/ +cmsrel CMSSW_10_6_30 +cd CMSSW_10_6_30/src/ cmsenv git cms-init git clone https://github.com/AlexDeMoor/DeepNTuples From 1b251f5677652d9fee3251a177c68e19424b0711 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Fri, 14 Apr 2023 17:03:41 +0200 Subject: [PATCH 10/21] Set the limit on the num events --- DeepNtuplizer/production/DeepNtuplizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeepNtuplizer/production/DeepNtuplizer.py b/DeepNtuplizer/production/DeepNtuplizer.py index 95787769f96..a26b8b37d21 100644 --- a/DeepNtuplizer/production/DeepNtuplizer.py +++ b/DeepNtuplizer/production/DeepNtuplizer.py @@ -9,7 +9,7 @@ options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',-1,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('maxEvents',100001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") From b95b85bd013779c4f22a805660e15523a4a18da9 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Fri, 14 Apr 2023 17:04:17 +0200 Subject: [PATCH 11/21] Update the time limit for jobsub --- DeepNtuplizer/scripts/jobSub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeepNtuplizer/scripts/jobSub.py b/DeepNtuplizer/scripts/jobSub.py index bd9ffe47fa5..7c3054890ba 100755 --- a/DeepNtuplizer/scripts/jobSub.py +++ b/DeepNtuplizer/scripts/jobSub.py @@ -29,7 +29,7 @@ def doSub(): parser.add_argument('--file',default='samples.cfg',help='file containing a sample list') parser.add_argument('--nosubmit',default=False,help='no submission') parser.add_argument('--outpath',default='',help='set path to store the .root output') - parser.add_argument('--walltime',default='21600',help='set job wall time in seconds') + parser.add_argument('--walltime',default='28800',help='set job wall time in seconds') parser.add_argument('--maxsize',default='15000',help='set maximum allowed size of output ntuple') args = parser.parse_args() From 6ac4190e4c32cd51ee05b106ad06c55bbe3f6a82 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Fri, 14 Apr 2023 17:06:06 +0200 Subject: [PATCH 12/21] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5337caad7b5..c1ffceeb304 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ git checkout 106X git submodule init git submodule update -scram b -j 4 +scram b -j 8 ``` Further settings From d5e550fa052acf6f70a18a96806bc56428282443 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Wed, 10 May 2023 15:07:14 +0200 Subject: [PATCH 13/21] Adding EdgeFeatures for cpfCand --- DeepNtuplizer/bin/mergeSamples.cc | 4 +- DeepNtuplizer/bin/mergeSamples_parallel.cc | 4 +- DeepNtuplizer/bin/printBranches.cc | 4 +- .../interface/TrackPairInfoBuilder.h | 102 + DeepNtuplizer/interface/ntuple_DeepVertex.h | 148 -- DeepNtuplizer/interface/ntuple_GraphB.h | 102 - DeepNtuplizer/interface/ntuple_pairwise.h | 86 + DeepNtuplizer/interface/ntuple_pfCands.h | 410 ++-- DeepNtuplizer/plugins/DeepNtuplizer.cc | 7 +- DeepNtuplizer/production/DeepNtuplizer.py | 2 +- DeepNtuplizer/production/New_UL17_HT.cfg | 1 - DeepNtuplizer/production/New_UL17_QCD.cfg | 7 - DeepNtuplizer/production/ParT_test.cfg | 1 + DeepNtuplizer/scripts/mergeSamples.py | 11 +- DeepNtuplizer/src/TrackPairInfoBuilder.cc | 145 ++ DeepNtuplizer/src/mergeDescriptor.cc | 8 +- DeepNtuplizer/src/ntuple_DeepVertex.cc | 442 ----- DeepNtuplizer/src/ntuple_GraphB.cc | 453 ----- DeepNtuplizer/src/ntuple_pairwise.cc | 238 +++ DeepNtuplizer/src/ntuple_pfCands.cc | 2 +- test_ParTEdge/DeepNtuplizer.py | 313 +++ test_ParTEdge/ntuple_ttbar_had/ademoor.cc | Bin 0 -> 5857 bytes .../ntuple_ttbar_had/batch/condor_0.sub | 13 + .../ntuple_ttbar_had/batch/condor_1.sub | 13 + .../ntuple_ttbar_had/batch/condor_2.sub | 13 + .../ntuple_ttbar_had/batch/condor_3.sub | 13 + .../ntuple_ttbar_had/batch/condor_4.sub | 13 + test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 | 0 test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh | 28 + test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh | 28 + test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh | 28 + test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh | 28 + test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh | 28 + test_ParTEdge/ntuple_ttbar_had/batchscript.sh | 51 + test_ParTEdge/ntuple_ttbar_had/condor.sub | 13 + test_ParTEdge/ntuple_ttbar_had/helper | 1 + test_ParTEdge/ntuple_ttbar_had/output | 1 + test_ParTEdge/ntuple_ttbar_had/sge_sub.sh | 5 + test_ParTEdge_small/DeepNtuplizer.py | 313 +++ .../ntuple_ttbar_had/ademoor.cc | Bin 0 -> 5857 bytes .../ntuple_ttbar_had/batch/#con_out.0.out# | 1748 +++++++++++++++++ .../ntuple_ttbar_had/batch/condor_0.sub | 13 + .../ntuple_ttbar_had/batch/condor_1.sub | 13 + .../ntuple_ttbar_had/batch/condor_2.sub | 13 + .../ntuple_ttbar_had/batch/condor_3.sub | 13 + .../ntuple_ttbar_had/batch/condor_4.sub | 13 + .../ntuple_ttbar_had/batch/nJobs.5 | 0 .../ntuple_ttbar_had/batch/sge_0.sh | 28 + .../ntuple_ttbar_had/batch/sge_1.sh | 28 + .../ntuple_ttbar_had/batch/sge_2.sh | 28 + .../ntuple_ttbar_had/batch/sge_3.sh | 28 + .../ntuple_ttbar_had/batch/sge_4.sh | 28 + .../ntuple_ttbar_had/batchscript.sh | 51 + .../ntuple_ttbar_had/condor.sub | 13 + test_ParTEdge_small/ntuple_ttbar_had/helper | 1 + test_ParTEdge_small/ntuple_ttbar_had/output | 1 + .../ntuple_ttbar_had/sge_sub.sh | 5 + test_ParTEdge_small2/DeepNtuplizer.py | 313 +++ .../ntuple_ttbar_had/ademoor.cc | Bin 0 -> 5857 bytes .../ntuple_ttbar_had/batch/condor_0.sub | 13 + .../ntuple_ttbar_had/batch/condor_1.sub | 13 + .../ntuple_ttbar_had/batch/condor_10.sub | 13 + .../ntuple_ttbar_had/batch/condor_11.sub | 13 + .../ntuple_ttbar_had/batch/condor_12.sub | 13 + .../ntuple_ttbar_had/batch/condor_13.sub | 13 + .../ntuple_ttbar_had/batch/condor_14.sub | 13 + .../ntuple_ttbar_had/batch/condor_2.sub | 13 + .../ntuple_ttbar_had/batch/condor_3.sub | 13 + .../ntuple_ttbar_had/batch/condor_4.sub | 13 + .../ntuple_ttbar_had/batch/condor_5.sub | 13 + .../ntuple_ttbar_had/batch/condor_6.sub | 13 + .../ntuple_ttbar_had/batch/condor_7.sub | 13 + .../ntuple_ttbar_had/batch/condor_8.sub | 13 + .../ntuple_ttbar_had/batch/condor_9.sub | 13 + .../ntuple_ttbar_had/batch/nJobs.15 | 0 .../ntuple_ttbar_had/batch/sge_0.sh | 28 + .../ntuple_ttbar_had/batch/sge_1.sh | 28 + .../ntuple_ttbar_had/batch/sge_10.sh | 28 + .../ntuple_ttbar_had/batch/sge_11.sh | 28 + .../ntuple_ttbar_had/batch/sge_12.sh | 28 + .../ntuple_ttbar_had/batch/sge_13.sh | 28 + .../ntuple_ttbar_had/batch/sge_14.sh | 28 + .../ntuple_ttbar_had/batch/sge_2.sh | 28 + .../ntuple_ttbar_had/batch/sge_3.sh | 28 + .../ntuple_ttbar_had/batch/sge_4.sh | 28 + .../ntuple_ttbar_had/batch/sge_5.sh | 28 + .../ntuple_ttbar_had/batch/sge_6.sh | 28 + .../ntuple_ttbar_had/batch/sge_7.sh | 28 + .../ntuple_ttbar_had/batch/sge_8.sh | 28 + .../ntuple_ttbar_had/batch/sge_9.sh | 28 + .../ntuple_ttbar_had/batchscript.sh | 51 + .../ntuple_ttbar_had/condor.sub | 13 + test_ParTEdge_small2/ntuple_ttbar_had/helper | 1 + test_ParTEdge_small2/ntuple_ttbar_had/output | 1 + .../ntuple_ttbar_had/sge_sub.sh | 15 + 95 files changed, 4736 insertions(+), 1376 deletions(-) create mode 100644 DeepNtuplizer/interface/TrackPairInfoBuilder.h delete mode 100644 DeepNtuplizer/interface/ntuple_DeepVertex.h delete mode 100644 DeepNtuplizer/interface/ntuple_GraphB.h create mode 100644 DeepNtuplizer/interface/ntuple_pairwise.h create mode 100644 DeepNtuplizer/production/ParT_test.cfg create mode 100644 DeepNtuplizer/src/TrackPairInfoBuilder.cc delete mode 100644 DeepNtuplizer/src/ntuple_DeepVertex.cc delete mode 100644 DeepNtuplizer/src/ntuple_GraphB.cc create mode 100644 DeepNtuplizer/src/ntuple_pairwise.cc create mode 100644 test_ParTEdge/DeepNtuplizer.py create mode 100644 test_ParTEdge/ntuple_ttbar_had/ademoor.cc create mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub create mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub create mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub create mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub create mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub create mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 create mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh create mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh create mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh create mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh create mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh create mode 100755 test_ParTEdge/ntuple_ttbar_had/batchscript.sh create mode 100644 test_ParTEdge/ntuple_ttbar_had/condor.sub create mode 120000 test_ParTEdge/ntuple_ttbar_had/helper create mode 120000 test_ParTEdge/ntuple_ttbar_had/output create mode 100755 test_ParTEdge/ntuple_ttbar_had/sge_sub.sh create mode 100644 test_ParTEdge_small/DeepNtuplizer.py create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/ademoor.cc create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/nJobs.5 create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh create mode 100644 test_ParTEdge_small/ntuple_ttbar_had/condor.sub create mode 120000 test_ParTEdge_small/ntuple_ttbar_had/helper create mode 120000 test_ParTEdge_small/ntuple_ttbar_had/output create mode 100755 test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh create mode 100644 test_ParTEdge_small2/DeepNtuplizer.py create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/ademoor.cc create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/nJobs.15 create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh create mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/condor.sub create mode 120000 test_ParTEdge_small2/ntuple_ttbar_had/helper create mode 120000 test_ParTEdge_small2/ntuple_ttbar_had/output create mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh diff --git a/DeepNtuplizer/bin/mergeSamples.cc b/DeepNtuplizer/bin/mergeSamples.cc index 32cf4382449..0926dd05e06 100644 --- a/DeepNtuplizer/bin/mergeSamples.cc +++ b/DeepNtuplizer/bin/mergeSamples.cc @@ -40,7 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" -//#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_pairwise.h" #include #include @@ -100,7 +100,7 @@ int main(int argc, char *argv[]){ branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - //branchinfos.push_back(new ntuple_GraphB()); + branchinfos.push_back(new ntuple_pairwise()); //simple opt parsing diff --git a/DeepNtuplizer/bin/mergeSamples_parallel.cc b/DeepNtuplizer/bin/mergeSamples_parallel.cc index 96213f1450d..5413e91b12a 100644 --- a/DeepNtuplizer/bin/mergeSamples_parallel.cc +++ b/DeepNtuplizer/bin/mergeSamples_parallel.cc @@ -40,7 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" -//#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_pairwise.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_FatJetInfo.h" #include @@ -124,7 +124,7 @@ std::vector createChains(const std::vector >& inf branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - //branchinfos.push_back(new ntuple_GraphB()); + branchinfos.push_back(new ntuple_pairwise()); branchinfos.push_back(new ntuple_FatJetInfo()); std::vector chains; diff --git a/DeepNtuplizer/bin/printBranches.cc b/DeepNtuplizer/bin/printBranches.cc index 28377402efd..49a15eb8247 100644 --- a/DeepNtuplizer/bin/printBranches.cc +++ b/DeepNtuplizer/bin/printBranches.cc @@ -6,7 +6,7 @@ #include "../interface/ntuple_pfCands.h" //#include "../interface/ntuple_FatJetInfo.h" //#include "../interface/ntuple_DeepVertex.h" -//#include "../interface/ntuple_GraphB.h" +#include "../interface/ntuple_pairwise.h" #include "TFile.h" #include #include "TH1F.h" @@ -24,7 +24,7 @@ int main(int argc, char *argv[]) { branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - // branchinfos.push_back(new ntuple_FatJetInfo()); + branchinfos.push_back(new ntuple_pairwise()); // branchinfos.push_back(new ntuple_DeepVertex()); // branchinfos.push_back(new ntuple_GraphB()); diff --git a/DeepNtuplizer/interface/TrackPairInfoBuilder.h b/DeepNtuplizer/interface/TrackPairInfoBuilder.h new file mode 100644 index 00000000000..0094793b665 --- /dev/null +++ b/DeepNtuplizer/interface/TrackPairInfoBuilder.h @@ -0,0 +1,102 @@ +#ifndef BTAGHELPERS_INTERFACE_TRACKPARINFOBUILDER_H_ +#define BTAGHELPERS_INTERFACE_TRACKPAIRINFOBUILDER_H_ + +#include "DataFormats/GeometrySurface/interface/Line.h" +#include "TrackingTools/Records/interface/TransientTrackRecord.h" +#include "TrackingTools/IPTools/interface/IPTools.h" +#include "TrackingTools/PatternTools/interface/TwoTrackMinimumDistance.h" +#include "DataFormats/PatCandidates/interface/Jet.h" + +namespace deepntuples { + + class TrackPairInfoBuilder { + public: + TrackPairInfoBuilder(); + + void buildTrackPairInfo(const reco::TransientTrack it, + const reco::TransientTrack tt, + const reco::Vertex& pv, + const pat::Jet &jet + ); + + const float track_i_pt() const { return track_i_pt_; } + const float track_t_pt() const { return track_t_pt_; } + const float track_eta() const { return track_eta_; } + const float track_phi() const { return track_phi_; } + const float track_dz() const { return track_dz_; } + const float track_dxy() const { return track_dxy_; } + const float pca_distance() const { return pca_distance_; } + const float pca_significance() const { return pca_significance_; } + const float pcaSeed_x() const { return pcaSeed_x_; } + const float pcaSeed_y() const { return pcaSeed_y_; } + const float pcaSeed_z() const { return pcaSeed_z_; } + const float pcaSeed_xerr() const { return pcaSeed_xerr_; } + const float pcaSeed_yerr() const { return pcaSeed_yerr_; } + const float pcaSeed_zerr() const { return pcaSeed_zerr_; } + const float pcaTrack_x() const { return pcaTrack_x_; } + const float pcaTrack_y() const { return pcaTrack_y_; } + const float pcaTrack_z() const { return pcaTrack_z_; } + const float pcaTrack_xerr() const { return pcaTrack_xerr_; } + const float pcaTrack_yerr() const { return pcaTrack_yerr_; } + const float pcaTrack_zerr() const { return pcaTrack_zerr_; } + const float dotprodTrack() const { return dotprodTrack_; } + const float dotprodSeed() const { return dotprodSeed_; } + const float pcaSeed_dist() const { return pcaSeed_dist_; } + const float pcaTrack_dist() const { return pcaTrack_dist_; } + const float track_candMass() const { return track_candMass_; } + const float track_ip2d() const { return track_ip2d_; } + const float track_ip2dSig() const { return track_ip2dSig_; } + const float track_ip3d() const { return track_ip3d_; } + const float track_ip3dSig() const { return track_ip3dSig_; } + const float dotprodTrackSeed2D() const { return dotprodTrackSeed2D_; } + const float dotprodTrackSeed2DV() const { return dotprodTrackSeed2DV_; } + const float dotprodTrackSeed3D() const { return dotprodTrackSeed3D_; } + const float dotprodTrackSeed3DV() const { return dotprodTrackSeed3DV_; } + const float pca_jetAxis_dist() const { return pca_jetAxis_dist_; } + const float pca_jetAxis_dotprod() const { return pca_jetAxis_dotprod_; } + const float pca_jetAxis_dEta() const { return pca_jetAxis_dEta_; } + const float pca_jetAxis_dPhi() const { return pca_jetAxis_dPhi_; } + + private: + float track_i_pt_; + float track_t_pt_; + float track_eta_; + float track_phi_; + float track_dz_; + float track_dxy_; + float pca_distance_; + float pca_significance_; + float pcaSeed_x_; + float pcaSeed_y_; + float pcaSeed_z_; + float pcaSeed_xerr_; + float pcaSeed_yerr_; + float pcaSeed_zerr_; + float pcaTrack_x_; + float pcaTrack_y_; + float pcaTrack_z_; + float pcaTrack_xerr_; + float pcaTrack_yerr_; + float pcaTrack_zerr_; + float dotprodTrack_; + float dotprodSeed_; + float pcaSeed_dist_; + float pcaTrack_dist_; + float track_candMass_; + float track_ip2d_; + float track_ip2dSig_; + float track_ip3d_; + float track_ip3dSig_; + float dotprodTrackSeed2D_; + float dotprodTrackSeed2DV_; + float dotprodTrackSeed3D_; + float dotprodTrackSeed3DV_; + float pca_jetAxis_dist_; + float pca_jetAxis_dotprod_; + float pca_jetAxis_dEta_; + float pca_jetAxis_dPhi_; + }; + +} // namespace btagbtvdeep + +#endif //RecoBTag_FeatureTools_TrackPairInfoBuilder_h diff --git a/DeepNtuplizer/interface/ntuple_DeepVertex.h b/DeepNtuplizer/interface/ntuple_DeepVertex.h deleted file mode 100644 index 2726b671f38..00000000000 --- a/DeepNtuplizer/interface/ntuple_DeepVertex.h +++ /dev/null @@ -1,148 +0,0 @@ -/* - * ntuple_DeepVertex.h - * - * Created on: 23 June 2017 - * Author: Seth Moortgat - */ - -#ifndef DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_DEEPVERTEX_H_ -#define DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_DEEPVERTEX_H_ - -#include "ntuple_content.h" -#include "neighbourTrackVars.h" -#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" -#include "RecoBTag/TrackProbability/interface/HistogramProbabilityEstimator.h" - -class HistogramProbabilityEstimator; -#include - -class ntuple_DeepVertex: public ntuple_content{ -public: - - ntuple_DeepVertex(double jetR = 0.4); - ~ntuple_DeepVertex(); - - void getInput(const edm::ParameterSet& iConfig); - void initBranches(TTree* ); - void readEvent(const edm::Event& iEvent); - void readSetup(const edm::EventSetup& iSetup); - void checkEventSetup(const edm::EventSetup & iSetup); - - //use either of these functions - - bool fillBranches(const pat::Jet &, const size_t& jetidx, const edm::View * coll=0); - - - void setCandidatesToken(const edm::EDGetTokenT > & t){ - CandidateToken=t; - } - -private: - - // seed candidates - static constexpr size_t max_seeds=10; - - unsigned int n_seeds=0; - float nSeeds=0; - - float seed_pt[max_seeds]; - float seed_eta[max_seeds]; - float seed_phi[max_seeds]; - float seed_mass[max_seeds]; - - float seed_dz[max_seeds]; - float seed_dxy[max_seeds]; - float seed_3D_ip[max_seeds]; - float seed_3D_sip[max_seeds]; - float seed_2D_ip[max_seeds]; - float seed_2D_sip[max_seeds]; - float seed_3D_signedIp[max_seeds]; - float seed_3D_signedSip[max_seeds]; - float seed_2D_signedIp[max_seeds]; - float seed_2D_signedSip[max_seeds]; - float seed_3D_TrackProbability[max_seeds]; - float seed_2D_TrackProbability[max_seeds]; - - float seed_chi2reduced[max_seeds]; - float seed_nPixelHits[max_seeds]; - float seed_nHits[max_seeds]; - float seed_jetAxisDistance[max_seeds]; - float seed_jetAxisDlength[max_seeds]; - - unsigned int seed_n_NearTracks[max_seeds]; - - //nearest track candidates - static constexpr size_t max_nearestTrk=200; // 20 per seed - - unsigned int n_NearTracksTotal=0; - - float nearTracks_pt[max_nearestTrk]; - float nearTracks_eta[max_nearestTrk]; - float nearTracks_phi[max_nearestTrk]; - float nearTracks_mass[max_nearestTrk]; - float nearTracks_dz[max_nearestTrk]; - float nearTracks_dxy[max_nearestTrk]; - float nearTracks_3D_ip[max_nearestTrk]; - float nearTracks_3D_sip[max_nearestTrk]; - float nearTracks_2D_ip[max_nearestTrk]; - float nearTracks_2D_sip[max_nearestTrk]; - float nearTracks_PCAdist[max_nearestTrk]; - float nearTracks_PCAdsig[max_nearestTrk]; - float nearTracks_PCAonSeed_x[max_nearestTrk]; - float nearTracks_PCAonSeed_y[max_nearestTrk]; - float nearTracks_PCAonSeed_z[max_nearestTrk]; - float nearTracks_PCAonSeed_xerr[max_nearestTrk]; - float nearTracks_PCAonSeed_yerr[max_nearestTrk]; - float nearTracks_PCAonSeed_zerr[max_nearestTrk]; - float nearTracks_PCAonTrack_x[max_nearestTrk]; - float nearTracks_PCAonTrack_y[max_nearestTrk]; - float nearTracks_PCAonTrack_z[max_nearestTrk]; - float nearTracks_PCAonTrack_xerr[max_nearestTrk]; - float nearTracks_PCAonTrack_yerr[max_nearestTrk]; - float nearTracks_PCAonTrack_zerr[max_nearestTrk]; - float nearTracks_dotprodTrack[max_nearestTrk]; - float nearTracks_dotprodSeed[max_nearestTrk]; - float nearTracks_dotprodTrackSeed2D[max_nearestTrk]; - float nearTracks_dotprodTrackSeed3D[max_nearestTrk]; - float nearTracks_dotprodTrackSeedVectors2D[max_nearestTrk]; - float nearTracks_dotprodTrackSeedVectors3D[max_nearestTrk]; - float nearTracks_PCAonSeed_pvd[max_nearestTrk]; - float nearTracks_PCAonTrack_pvd[max_nearestTrk]; - float nearTracks_PCAjetAxis_dist[max_nearestTrk]; - float nearTracks_PCAjetMomenta_dotprod[max_nearestTrk]; - float nearTracks_PCAjetDirs_DEta[max_nearestTrk]; - float nearTracks_PCAjetDirs_DPhi[max_nearestTrk]; - - - // IVF cut parameters (HARDCODED?? OR CONFIGURABLE IN PYTHON CONFIG) - float min3DIPValue=0.005; - float min3DIPSignificance=1.2; - int max3DIPValue=9999.; - int max3DIPSignificance=9999.; - - - //tokens to be defined from main analyzer - edm::EDGetTokenT > CandidateToken; - - //helper: - edm::Handle > tracks; - - // builder - edm::ESHandle builder; - - std::auto_ptr m_probabilityEstimator; - bool m_computeProbabilities=1; - unsigned long long m_calibrationCacheId2D; - unsigned long long m_calibrationCacheId3D; - - // temporary containers - neighbourTrackVars myTrack; - std::vector nearTracks; - std::multimap > > SortedSeedsMap; - - -}; - - - -#endif /* DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_DEEPVERTEX_H_ */ diff --git a/DeepNtuplizer/interface/ntuple_GraphB.h b/DeepNtuplizer/interface/ntuple_GraphB.h deleted file mode 100644 index 43d571d882b..00000000000 --- a/DeepNtuplizer/interface/ntuple_GraphB.h +++ /dev/null @@ -1,102 +0,0 @@ -/* - * ntuple_GraphB.h - * - * Created on: 23 June 2017 - * Author: Seth Moortgat - */ - -#ifndef DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_GRAPHB_H_ -#define DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_GRAPHB_H_ - -#include "ntuple_content.h" -#include "neighbourTrackVars.h" -#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" -#include "RecoBTag/TrackProbability/interface/HistogramProbabilityEstimator.h" - -class HistogramProbabilityEstimator; -#include - -class ntuple_GraphB: public ntuple_content{ -public: - - ntuple_GraphB(double jetR = 0.4); - ~ntuple_GraphB(); - - void getInput(const edm::ParameterSet& iConfig); - void initBranches(TTree* ); - void readEvent(const edm::Event& iEvent); - void readSetup(const edm::EventSetup& iSetup); - void checkEventSetup(const edm::EventSetup & iSetup); - - //use either of these functions - - bool fillBranches(const pat::Jet &, const size_t& jetidx, const edm::View * coll=0); - - - void setCandidatesToken(const edm::EDGetTokenT > & t){ - CandidateToken=t; - } - -private: - - // seed candidates - float jetradius_; - float min_candidate_pt_ = -1; - - unsigned int n_Cpfcand_; - float nCpfcand_; - unsigned int n_Npfcand_; - float nNpfcand_; - - static constexpr size_t max_gtracks=100; - - float nGtracks=0; - unsigned int n_gtracks=0; - - float gtrack_pt[max_gtracks]; - float gtrack_eta[max_gtracks]; - float gtrack_phi[max_gtracks]; - float gtrack_mass[max_gtracks]; - float gtrack_dR[max_gtracks]; - float gtrack_dist_neigh[max_gtracks]; - float gtrack_dz[max_gtracks]; - float gtrack_dxy[max_gtracks]; - float gtrack_3D_ip[max_gtracks]; - float gtrack_3D_sip[max_gtracks]; - float gtrack_2D_ip[max_gtracks]; - float gtrack_2D_sip[max_gtracks]; - float gtrack_3D_TrackProbability[max_gtracks]; - float gtrack_2D_TrackProbability[max_gtracks]; - float gtrack_chi2reduced[max_gtracks]; - float gtrack_nPixelHits[max_gtracks]; - float gtrack_nHits[max_gtracks]; - float gtrack_jetAxisDistance[max_gtracks]; - float gtrack_jetAxisDlength[max_gtracks]; - float gtrack_dotProdTrack[max_gtracks]; - float gtrack_dotProdTrack2D[max_gtracks]; - float gtrack_PCAtrackFromPV[max_gtracks]; - - // IVF cut parameters (HARDCODED?? OR CONFIGURABLE IN PYTHON CONFIG) - float min3DIPValue=0.005; - float min3DIPSignificance=1.2; - int max3DIPValue=9999.; - int max3DIPSignificance=9999.; - - //tokens to be defined from main analyzer - edm::EDGetTokenT > CandidateToken; - - //helper: - edm::Handle > tracks; - - // builder - edm::ESHandle builder; - - std::auto_ptr m_probabilityEstimator; - bool m_computeProbabilities=1; - unsigned long long m_calibrationCacheId2D; - unsigned long long m_calibrationCacheId3D; - float mindrsvpfcand(const pat::PackedCandidate* pfcand); - -}; - -#endif /* DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_GRAPHB_H_ */ diff --git a/DeepNtuplizer/interface/ntuple_pairwise.h b/DeepNtuplizer/interface/ntuple_pairwise.h new file mode 100644 index 00000000000..891c9183251 --- /dev/null +++ b/DeepNtuplizer/interface/ntuple_pairwise.h @@ -0,0 +1,86 @@ +/* + * ntuple_pairwise.h + * + * Created on: 01 sep 2022 + * Author: Alexandre De Moor + */ + +#ifndef DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_PAIRWISE_H_ +#define DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_PAIRWISE_H_ + +#include "ntuple_content.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "TrackPairInfoBuilder.h" + +class ntuple_pairwise: public ntuple_content{ +public: + + ntuple_pairwise():ntuple_content(),jetradius_(0.4){}//, + //n_Cpfcand2_(0),n_Npfcand2_(0){} + + void setJetRadius(const float& radius){jetradius_=radius;} + void getInput(const edm::ParameterSet& iConfig); + void initBranches(TTree* ); + void readEvent(const edm::Event& iEvent); + void readSetup(const edm::EventSetup& iSetup); + + + //use either of these functions + + bool fillBranches(const pat::Jet &, const size_t& jetidx, const edm::View * coll=0); + +private: + + float jetradius_; + float min_candidate_pt_ = -1; + + edm::ESHandle builder; + + int n_Npfcand2_; + int n_Cpfcand2_; + int n_Cpfpairs_; + float nCpfpairs_; + + static constexpr size_t max_pfcand_=800; + + float pair_pca_distance_[max_pfcand_]; + float pair_pca_significance_[max_pfcand_]; + + float pair_pcaSeed_x1_[max_pfcand_]; + float pair_pcaSeed_y1_[max_pfcand_]; + float pair_pcaSeed_z1_[max_pfcand_]; + + float pair_pcaSeed_x2_[max_pfcand_]; + float pair_pcaSeed_y2_[max_pfcand_]; + float pair_pcaSeed_z2_[max_pfcand_]; + + float pair_pcaSeed_xerr1_[max_pfcand_]; + float pair_pcaSeed_yerr1_[max_pfcand_]; + float pair_pcaSeed_zerr1_[max_pfcand_]; + + float pair_pcaSeed_xerr2_[max_pfcand_]; + float pair_pcaSeed_yerr2_[max_pfcand_]; + float pair_pcaSeed_zerr2_[max_pfcand_]; + + float pair_dotprod1_[max_pfcand_]; + float pair_dotprod2_[max_pfcand_]; + + float pair_pca_dist1_[max_pfcand_]; + float pair_pca_dist2_[max_pfcand_]; + + float pair_dotprod12_2D_[max_pfcand_]; + float pair_dotprod12_2DV_[max_pfcand_]; + float pair_dotprod12_3D_[max_pfcand_]; + float pair_dotprod12_3DV_[max_pfcand_]; + + float pair_pca_jetAxis_dist_[max_pfcand_]; + float pair_pca_jetAxis_dotprod_[max_pfcand_]; + float pair_pca_jetAxis_dEta_[max_pfcand_]; + float pair_pca_jetAxis_dPhi_[max_pfcand_]; + + float mindrsvpfcand(const pat::PackedCandidate* pfcand); + +}; + +#endif /* DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_PAIRWISE_H_ */ diff --git a/DeepNtuplizer/interface/ntuple_pfCands.h b/DeepNtuplizer/interface/ntuple_pfCands.h index 8ddd7855957..029f1adfedf 100644 --- a/DeepNtuplizer/interface/ntuple_pfCands.h +++ b/DeepNtuplizer/interface/ntuple_pfCands.h @@ -13,214 +13,214 @@ #include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" class ntuple_pfCands: public ntuple_content{ -public: + public: - ntuple_pfCands():ntuple_content(),jetradius_(0.4), + ntuple_pfCands():ntuple_content(),jetradius_(0.4), n_Cpfcand_(0),n_Npfcand_(0){} - void setJetRadius(const float& radius){jetradius_=radius;} - void getInput(const edm::ParameterSet& iConfig); - void initBranches(TTree* ); - void readEvent(const edm::Event& iEvent); - void readSetup(const edm::EventSetup& iSetup); - - - //use either of these functions - - bool fillBranches(const pat::Jet &, const size_t& jetidx, const edm::View * coll=0); - -private: - - float jetradius_; - float min_candidate_pt_ = -1; - - edm::ESHandle builder; - - int n_Cpfcand_; - float nCpfcand_; - - static constexpr size_t max_pfcand_=50; - - float Cpfcan_pt_[max_pfcand_]; - float Cpfcan_eta_[max_pfcand_]; - float Cpfcan_phi_[max_pfcand_]; - float Cpfcan_ptrel_[max_pfcand_]; - float Cpfcan_e_[max_pfcand_]; - float Cpfcan_erel_[max_pfcand_]; - float Cpfcan_phirel_[max_pfcand_]; - float Cpfcan_etarel_[max_pfcand_]; - float Cpfcan_deltaR_[max_pfcand_]; - float Cpfcan_puppiw_[max_pfcand_]; - float Cpfcan_VTX_ass_[max_pfcand_]; - - float Cpfcan_fromPV_[max_pfcand_]; - - float Cpfcan_vertexChi2_[max_pfcand_]; - float Cpfcan_vertexNdof_[max_pfcand_]; - float Cpfcan_vertexNormalizedChi2_[max_pfcand_]; - float Cpfcan_vertex_rho_[max_pfcand_]; - float Cpfcan_vertex_phirel_[max_pfcand_]; - float Cpfcan_vertex_etarel_[max_pfcand_]; - float Cpfcan_vertexRef_mass_[max_pfcand_]; - - // covariance - float Cpfcan_dz_[max_pfcand_]; - float Cpfcan_dxy_[max_pfcand_]; - - float Cpfcan_dxyerrinv_[max_pfcand_]; - float Cpfcan_dxysig_[max_pfcand_]; - - float Cpfcan_dptdpt_[max_pfcand_]; - float Cpfcan_detadeta_[max_pfcand_]; - float Cpfcan_dphidphi_[max_pfcand_]; - float Cpfcan_dxydxy_[max_pfcand_]; - float Cpfcan_dzdz_[max_pfcand_]; - float Cpfcan_dxydz_[max_pfcand_]; - float Cpfcan_dphidxy_[max_pfcand_]; - float Cpfcan_dlambdadz_[max_pfcand_]; - - - - float Cpfcan_BtagPf_trackMomentum_[max_pfcand_]; - float Cpfcan_BtagPf_trackEta_[max_pfcand_]; - float Cpfcan_BtagPf_trackEtaRel_[max_pfcand_]; - float Cpfcan_BtagPf_trackPtRel_[max_pfcand_]; - float Cpfcan_BtagPf_trackPPar_[max_pfcand_]; - float Cpfcan_BtagPf_trackDeltaR_[max_pfcand_]; - float Cpfcan_BtagPf_trackPtRatio_[max_pfcand_]; - float Cpfcan_BtagPf_trackPParRatio_[max_pfcand_]; - float Cpfcan_BtagPf_trackSip3dVal_[max_pfcand_]; - float Cpfcan_BtagPf_trackSip3dSig_[max_pfcand_]; - float Cpfcan_BtagPf_trackSip2dVal_[max_pfcand_]; - float Cpfcan_BtagPf_trackSip2dSig_[max_pfcand_]; - - float Cpfcan_BtagPf_trackDecayLen_[max_pfcand_]; - - float Cpfcan_BtagPf_trackJetDistVal_[max_pfcand_]; - float Cpfcan_BtagPf_trackJetDistSig_[max_pfcand_]; - - // ID, skipped "charged hadron" as that is true if now the other - // TODO (comment of Markus Stoye) add reco information - float Cpfcan_isMu_[max_pfcand_]; // pitty that the quality is missing - float Cpfcan_isEl_[max_pfcand_]; // pitty that the quality is missing - float Cpfcan_charge_[max_pfcand_]; - - // track quality - float Cpfcan_lostInnerHits_[max_pfcand_]; - float Cpfcan_numberOfPixelHits_[max_pfcand_]; - float Cpfcan_chi2_[max_pfcand_]; - float Cpfcan_quality_[max_pfcand_]; - float Cpfcan_drminsv_[max_pfcand_]; - float Cpfcan_distminsvold_[max_pfcand_]; - float Cpfcan_distminsv_[max_pfcand_]; - float Cpfcan_distminsv2_[max_pfcand_]; - float Cpfcan_dxminsv_[max_pfcand_]; - float Cpfcan_dyminsv_[max_pfcand_]; - float Cpfcan_dzminsv_[max_pfcand_]; - float Cpfcan_dxpv_[max_pfcand_]; - float Cpfcan_dypv_[max_pfcand_]; - float Cpfcan_dzpv_[max_pfcand_]; - - //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h - //Tracker per layer - //Pixel barrel - float Cpfcan_nhitpixelBarrelLayer1_[max_pfcand_]; - float Cpfcan_nhitpixelBarrelLayer2_[max_pfcand_]; - float Cpfcan_nhitpixelBarrelLayer3_[max_pfcand_]; - float Cpfcan_nhitpixelBarrelLayer4_[max_pfcand_]; - //Pixel Endcap - float Cpfcan_nhitpixelEndcapLayer1_[max_pfcand_]; - float Cpfcan_nhitpixelEndcapLayer2_[max_pfcand_]; - //Strip TIB - float Cpfcan_nhitstripTIBLayer1_[max_pfcand_]; - float Cpfcan_nhitstripTIBLayer2_[max_pfcand_]; - float Cpfcan_nhitstripTIBLayer3_[max_pfcand_]; - float Cpfcan_nhitstripTIBLayer4_[max_pfcand_]; - //Strip TID - float Cpfcan_nhitstripTIDLayer1_[max_pfcand_]; - float Cpfcan_nhitstripTIDLayer2_[max_pfcand_]; - float Cpfcan_nhitstripTIDLayer3_[max_pfcand_]; - //Strip TOB - float Cpfcan_nhitstripTOBLayer1_[max_pfcand_]; - float Cpfcan_nhitstripTOBLayer2_[max_pfcand_]; - float Cpfcan_nhitstripTOBLayer3_[max_pfcand_]; - float Cpfcan_nhitstripTOBLayer4_[max_pfcand_]; - float Cpfcan_nhitstripTOBLayer5_[max_pfcand_]; - float Cpfcan_nhitstripTOBLayer6_[max_pfcand_]; - //Strip TEC - float Cpfcan_nhitstripTECLayer1_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer2_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer3_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer4_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer5_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer6_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer7_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer8_[max_pfcand_]; - float Cpfcan_nhitstripTECLayer9_[max_pfcand_]; - //Tracker all layers together - //Valid hits - float Cpfcan_numberOfValidHits_[max_pfcand_]; - float Cpfcan_numberOfValidTrackerHits_[max_pfcand_]; - float Cpfcan_numberOfValidPixelHits_[max_pfcand_]; - float Cpfcan_numberOfValidPixelBarrelHits_[max_pfcand_]; - float Cpfcan_numberOfValidPixelEndcapHits_[max_pfcand_]; - float Cpfcan_numberOfValidStripHits_[max_pfcand_]; - float Cpfcan_numberOfValidStripTIBHits_[max_pfcand_]; - float Cpfcan_numberOfValidStripTIDHits_[max_pfcand_]; - float Cpfcan_numberOfValidStripTOBHits_[max_pfcand_]; - float Cpfcan_numberOfValidStripTECHits_[max_pfcand_]; - //LayersWithMeasurement - float Cpfcan_trackerLayersWithMeasurementOld_[max_pfcand_]; - float Cpfcan_trackerLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_pixelLayersWithMeasurementOld_[max_pfcand_]; - float Cpfcan_pixelLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_stripLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_pixelBarrelLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_pixelEndcapLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_stripTIBLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_stripTIDLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_stripTOBLayersWithMeasurement_[max_pfcand_]; - float Cpfcan_stripTECLayersWithMeasurement_[max_pfcand_]; - //Null - float Cpfcan_trackerLayersNull_[max_pfcand_]; - float Cpfcan_pixelLayersNull_[max_pfcand_]; - float Cpfcan_stripLayersNull_[max_pfcand_]; - float Cpfcan_pixelBarrelLayersNull_[max_pfcand_]; - float Cpfcan_pixelEndcapLayersNull_[max_pfcand_]; - float Cpfcan_stripTIBLayersNull_[max_pfcand_]; - float Cpfcan_stripTIDLayersNull_[max_pfcand_]; - float Cpfcan_stripTOBLayersNull_[max_pfcand_]; - float Cpfcan_stripTECLayersNull_[max_pfcand_]; - - //Neutral Pf candidates - int n_Npfcand_; - float nNpfcand_; - float Npfcan_pt_[max_pfcand_]; - float Npfcan_eta_[max_pfcand_]; - float Npfcan_phi_[max_pfcand_]; - float Npfcan_ptrel_[max_pfcand_]; - float Npfcan_e_[max_pfcand_]; - float Npfcan_erel_[max_pfcand_]; - float Npfcan_puppiw_[max_pfcand_]; - float Npfcan_phirel_[max_pfcand_]; - float Npfcan_etarel_[max_pfcand_]; - float Npfcan_deltaR_[max_pfcand_]; - float Npfcan_isGamma_[max_pfcand_]; - float Npfcan_HadFrac_[max_pfcand_]; - float Npfcan_CaloFrac_[max_pfcand_]; - float Npfcan_drminsv_[max_pfcand_]; - - float Npfcan_pdgID_[max_pfcand_]; - float Cpfcan_pdgID_[max_pfcand_]; - - float Cpfcan_HadFrac_[max_pfcand_]; - float Cpfcan_CaloFrac_[max_pfcand_]; - - float mindrsvpfcand(const pat::PackedCandidate* pfcand); - float mindistsvpfcandold(const reco::TransientTrack track); - float mindistsvpfcand(const reco::TransientTrack track); - GlobalPoint mingpsvpfcand(const reco::TransientTrack track); - GlobalPoint gppvpfcand(const reco::TransientTrack track, GlobalVector direction, const reco::Vertex vertex); + void setJetRadius(const float& radius){jetradius_=radius;} + void getInput(const edm::ParameterSet& iConfig); + void initBranches(TTree* ); + void readEvent(const edm::Event& iEvent); + void readSetup(const edm::EventSetup& iSetup); + + + //use either of these functions + + bool fillBranches(const pat::Jet &, const size_t& jetidx, const edm::View * coll=0); + + private: + + float jetradius_; + float min_candidate_pt_ = -1; + + edm::ESHandle builder; + + int n_Cpfcand_; + float nCpfcand_; + + static constexpr size_t max_pfcand_=50; + + float Cpfcan_pt_[max_pfcand_]; + float Cpfcan_eta_[max_pfcand_]; + float Cpfcan_phi_[max_pfcand_]; + float Cpfcan_ptrel_[max_pfcand_]; + float Cpfcan_e_[max_pfcand_]; + float Cpfcan_erel_[max_pfcand_]; + float Cpfcan_phirel_[max_pfcand_]; + float Cpfcan_etarel_[max_pfcand_]; + float Cpfcan_deltaR_[max_pfcand_]; + float Cpfcan_puppiw_[max_pfcand_]; + float Cpfcan_VTX_ass_[max_pfcand_]; + + float Cpfcan_fromPV_[max_pfcand_]; + + float Cpfcan_vertexChi2_[max_pfcand_]; + float Cpfcan_vertexNdof_[max_pfcand_]; + float Cpfcan_vertexNormalizedChi2_[max_pfcand_]; + float Cpfcan_vertex_rho_[max_pfcand_]; + float Cpfcan_vertex_phirel_[max_pfcand_]; + float Cpfcan_vertex_etarel_[max_pfcand_]; + float Cpfcan_vertexRef_mass_[max_pfcand_]; + + // covariance + float Cpfcan_dz_[max_pfcand_]; + float Cpfcan_dxy_[max_pfcand_]; + + float Cpfcan_dxyerrinv_[max_pfcand_]; + float Cpfcan_dxysig_[max_pfcand_]; + + float Cpfcan_dptdpt_[max_pfcand_]; + float Cpfcan_detadeta_[max_pfcand_]; + float Cpfcan_dphidphi_[max_pfcand_]; + float Cpfcan_dxydxy_[max_pfcand_]; + float Cpfcan_dzdz_[max_pfcand_]; + float Cpfcan_dxydz_[max_pfcand_]; + float Cpfcan_dphidxy_[max_pfcand_]; + float Cpfcan_dlambdadz_[max_pfcand_]; + + + + float Cpfcan_BtagPf_trackMomentum_[max_pfcand_]; + float Cpfcan_BtagPf_trackEta_[max_pfcand_]; + float Cpfcan_BtagPf_trackEtaRel_[max_pfcand_]; + float Cpfcan_BtagPf_trackPtRel_[max_pfcand_]; + float Cpfcan_BtagPf_trackPPar_[max_pfcand_]; + float Cpfcan_BtagPf_trackDeltaR_[max_pfcand_]; + float Cpfcan_BtagPf_trackPtRatio_[max_pfcand_]; + float Cpfcan_BtagPf_trackPParRatio_[max_pfcand_]; + float Cpfcan_BtagPf_trackSip3dVal_[max_pfcand_]; + float Cpfcan_BtagPf_trackSip3dSig_[max_pfcand_]; + float Cpfcan_BtagPf_trackSip2dVal_[max_pfcand_]; + float Cpfcan_BtagPf_trackSip2dSig_[max_pfcand_]; + + float Cpfcan_BtagPf_trackDecayLen_[max_pfcand_]; + + float Cpfcan_BtagPf_trackJetDistVal_[max_pfcand_]; + float Cpfcan_BtagPf_trackJetDistSig_[max_pfcand_]; + + // ID, skipped "charged hadron" as that is true if now the other + // TODO (comment of Markus Stoye) add reco information + float Cpfcan_isMu_[max_pfcand_]; // pitty that the quality is missing + float Cpfcan_isEl_[max_pfcand_]; // pitty that the quality is missing + float Cpfcan_charge_[max_pfcand_]; + + // track quality + float Cpfcan_lostInnerHits_[max_pfcand_]; + float Cpfcan_numberOfPixelHits_[max_pfcand_]; + float Cpfcan_chi2_[max_pfcand_]; + float Cpfcan_quality_[max_pfcand_]; + float Cpfcan_drminsv_[max_pfcand_]; + float Cpfcan_distminsvold_[max_pfcand_]; + float Cpfcan_distminsv_[max_pfcand_]; + float Cpfcan_distminsv2_[max_pfcand_]; + float Cpfcan_dxminsv_[max_pfcand_]; + float Cpfcan_dyminsv_[max_pfcand_]; + float Cpfcan_dzminsv_[max_pfcand_]; + float Cpfcan_dxpv_[max_pfcand_]; + float Cpfcan_dypv_[max_pfcand_]; + float Cpfcan_dzpv_[max_pfcand_]; + + //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h + //Tracker per layer + //Pixel barrel + float Cpfcan_nhitpixelBarrelLayer1_[max_pfcand_]; + float Cpfcan_nhitpixelBarrelLayer2_[max_pfcand_]; + float Cpfcan_nhitpixelBarrelLayer3_[max_pfcand_]; + float Cpfcan_nhitpixelBarrelLayer4_[max_pfcand_]; + //Pixel Endcap + float Cpfcan_nhitpixelEndcapLayer1_[max_pfcand_]; + float Cpfcan_nhitpixelEndcapLayer2_[max_pfcand_]; + //Strip TIB + float Cpfcan_nhitstripTIBLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTIBLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTIBLayer3_[max_pfcand_]; + float Cpfcan_nhitstripTIBLayer4_[max_pfcand_]; + //Strip TID + float Cpfcan_nhitstripTIDLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTIDLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTIDLayer3_[max_pfcand_]; + //Strip TOB + float Cpfcan_nhitstripTOBLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer3_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer4_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer5_[max_pfcand_]; + float Cpfcan_nhitstripTOBLayer6_[max_pfcand_]; + //Strip TEC + float Cpfcan_nhitstripTECLayer1_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer2_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer3_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer4_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer5_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer6_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer7_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer8_[max_pfcand_]; + float Cpfcan_nhitstripTECLayer9_[max_pfcand_]; + //Tracker all layers together + //Valid hits + float Cpfcan_numberOfValidHits_[max_pfcand_]; + float Cpfcan_numberOfValidTrackerHits_[max_pfcand_]; + float Cpfcan_numberOfValidPixelHits_[max_pfcand_]; + float Cpfcan_numberOfValidPixelBarrelHits_[max_pfcand_]; + float Cpfcan_numberOfValidPixelEndcapHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTIBHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTIDHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTOBHits_[max_pfcand_]; + float Cpfcan_numberOfValidStripTECHits_[max_pfcand_]; + //LayersWithMeasurement + float Cpfcan_trackerLayersWithMeasurementOld_[max_pfcand_]; + float Cpfcan_trackerLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_pixelLayersWithMeasurementOld_[max_pfcand_]; + float Cpfcan_pixelLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_pixelBarrelLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_pixelEndcapLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTIBLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTIDLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTOBLayersWithMeasurement_[max_pfcand_]; + float Cpfcan_stripTECLayersWithMeasurement_[max_pfcand_]; + //Null + float Cpfcan_trackerLayersNull_[max_pfcand_]; + float Cpfcan_pixelLayersNull_[max_pfcand_]; + float Cpfcan_stripLayersNull_[max_pfcand_]; + float Cpfcan_pixelBarrelLayersNull_[max_pfcand_]; + float Cpfcan_pixelEndcapLayersNull_[max_pfcand_]; + float Cpfcan_stripTIBLayersNull_[max_pfcand_]; + float Cpfcan_stripTIDLayersNull_[max_pfcand_]; + float Cpfcan_stripTOBLayersNull_[max_pfcand_]; + float Cpfcan_stripTECLayersNull_[max_pfcand_]; + + //Neutral Pf candidates + int n_Npfcand_; + float nNpfcand_; + float Npfcan_pt_[max_pfcand_]; + float Npfcan_eta_[max_pfcand_]; + float Npfcan_phi_[max_pfcand_]; + float Npfcan_ptrel_[max_pfcand_]; + float Npfcan_e_[max_pfcand_]; + float Npfcan_erel_[max_pfcand_]; + float Npfcan_puppiw_[max_pfcand_]; + float Npfcan_phirel_[max_pfcand_]; + float Npfcan_etarel_[max_pfcand_]; + float Npfcan_deltaR_[max_pfcand_]; + float Npfcan_isGamma_[max_pfcand_]; + float Npfcan_HadFrac_[max_pfcand_]; + //float Npfcan_CaloFrac_[max_pfcand_]; + float Npfcan_drminsv_[max_pfcand_]; + + float Npfcan_pdgID_[max_pfcand_]; + float Cpfcan_pdgID_[max_pfcand_]; + + float Cpfcan_HadFrac_[max_pfcand_]; + float Cpfcan_CaloFrac_[max_pfcand_]; + + float mindrsvpfcand(const pat::PackedCandidate* pfcand); + float mindistsvpfcandold(const reco::TransientTrack track); + float mindistsvpfcand(const reco::TransientTrack track); + GlobalPoint mingpsvpfcand(const reco::TransientTrack track); + GlobalPoint gppvpfcand(const reco::TransientTrack track, GlobalVector direction, const reco::Vertex vertex); }; diff --git a/DeepNtuplizer/plugins/DeepNtuplizer.cc b/DeepNtuplizer/plugins/DeepNtuplizer.cc index 6f430399b51..b67e58cf03c 100644 --- a/DeepNtuplizer/plugins/DeepNtuplizer.cc +++ b/DeepNtuplizer/plugins/DeepNtuplizer.cc @@ -13,7 +13,7 @@ #include "../interface/ntuple_bTagVars.h" //#include "../interface/ntuple_FatJetInfo.h" //#include "../interface/ntuple_DeepVertex.h" -//#include "../interface/ntuple_GraphB.h" +#include "../interface/ntuple_pairwise.h" //ROOT includes #include "TTree.h" #include @@ -199,9 +199,12 @@ DeepNtuplizer::DeepNtuplizer(const edm::ParameterSet& iConfig): ntuple_pfCands * pfcands = new ntuple_pfCands(); pfcands->setJetRadius(jetR); - addModule(pfcands, "pfcands"); + ntuple_pairwise * pairwise = new ntuple_pairwise(); + pairwise->setJetRadius(jetR); + addModule(pairwise, "pairwise"); + addModule(new ntuple_bTagVars(), "bTagVars"); /*if(runFatJets_){ diff --git a/DeepNtuplizer/production/DeepNtuplizer.py b/DeepNtuplizer/production/DeepNtuplizer.py index 95787769f96..d2f66986fdf 100644 --- a/DeepNtuplizer/production/DeepNtuplizer.py +++ b/DeepNtuplizer/production/DeepNtuplizer.py @@ -9,7 +9,7 @@ options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',-1,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('maxEvents',5001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") diff --git a/DeepNtuplizer/production/New_UL17_HT.cfg b/DeepNtuplizer/production/New_UL17_HT.cfg index 02ceaaf43f4..82ba7538ce3 100644 --- a/DeepNtuplizer/production/New_UL17_HT.cfg +++ b/DeepNtuplizer/production/New_UL17_HT.cfg @@ -1,4 +1,3 @@ -400 /TTToSemiLepton_HT500Njet9_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_ttbar_lep_HT500_njet9 400 /QCD_HT300to500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_300_500 gluonReduction=0.5 400 /QCD_HT500to700_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_500_700 gluonReduction=0.5 400 /QCD_HT700to1000_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_qcd_HT_700_1000 gluonReduction=0.5 diff --git a/DeepNtuplizer/production/New_UL17_QCD.cfg b/DeepNtuplizer/production/New_UL17_QCD.cfg index ee4966b2ef8..1f4c35eb682 100644 --- a/DeepNtuplizer/production/New_UL17_QCD.cfg +++ b/DeepNtuplizer/production/New_UL17_QCD.cfg @@ -1,10 +1,3 @@ -850 /QCD_Pt_80to120_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_80_120 gluonReduction=0.5 -850 /QCD_Pt_120to170_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_120_170 gluonReduction=0.5 -850 /QCD_Pt_170to300_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_170_300 gluonReduction=0.5 -850 /QCD_Pt_300to470_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_300_470 gluonReduction=0.5 -850 /QCD_Pt_470to600_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_470_600 gluonReduction=0.5 -850 /QCD_Pt_600to800_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_600_800 gluonReduction=0.5 -850 /QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_800_1000 gluonReduction=0.5 850 /QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 850 /QCD_Pt_1400to1800_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1400_1800 gluonReduction=0.5 850 /QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1800_2400 gluonReduction=0.5 diff --git a/DeepNtuplizer/production/ParT_test.cfg b/DeepNtuplizer/production/ParT_test.cfg new file mode 100644 index 00000000000..0ed89f9f5bf --- /dev/null +++ b/DeepNtuplizer/production/ParT_test.cfg @@ -0,0 +1 @@ +15 /TTToHadronic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAOD-106X_mc2017_realistic_v6-v2/MINIAODSIM ntuple_ttbar_had diff --git a/DeepNtuplizer/scripts/mergeSamples.py b/DeepNtuplizer/scripts/mergeSamples.py index b8a0cf34f59..3d08b8b9e98 100755 --- a/DeepNtuplizer/scripts/mergeSamples.py +++ b/DeepNtuplizer/scripts/mergeSamples.py @@ -1,11 +1,11 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python3 from argparse import ArgumentParser import os import subprocess def syscall(cmd): - print 'Executing: %s' % cmd + print('Executing: %s' % cmd) retval = os.system(cmd) if retval != 0: raise RuntimeError('Command failed!') @@ -25,7 +25,10 @@ def syscall(cmd): allins='' for l in args.infiles: allins+=' '+l - + + print(str(args.nsamples)) + print(args.outdir) + print(allins) syscall('createMergeList '+str(args.nsamples)+' '+args.outdir+' '+allins) @@ -87,7 +90,7 @@ def syscall(cmd): condor.write(''.join(jobs)) os.chdir(dname) syscall('condor_submit condor.sub') - print 'Once all the jobs are run please run again this command to ensure everything worked' + print('Once all the jobs are run please run again this command to ensure everything worked') else: import multiprocessing as mp diff --git a/DeepNtuplizer/src/TrackPairInfoBuilder.cc b/DeepNtuplizer/src/TrackPairInfoBuilder.cc new file mode 100644 index 00000000000..5bf800a8108 --- /dev/null +++ b/DeepNtuplizer/src/TrackPairInfoBuilder.cc @@ -0,0 +1,145 @@ +#include "DataFormats/Candidate/interface/Candidate.h" +#include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" +#include "DataFormats/VertexReco/interface/Vertex.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "TrackingTools/Records/interface/TransientTrackRecord.h" +#include "TVector3.h" +#include "DataFormats/PatCandidates/interface/Jet.h" + +#include "../interface/TrackPairInfoBuilder.h" + +namespace deepntuples { + + TrackPairInfoBuilder::TrackPairInfoBuilder() + : + + track_i_pt_(0), + track_t_pt_(0), + track_eta_(0), + track_phi_(0), + track_dz_(0), + track_dxy_(0), + + pca_distance_(0), + pca_significance_(0), + + pcaSeed_x_(0), + pcaSeed_y_(0), + pcaSeed_z_(0), + pcaSeed_xerr_(0), + pcaSeed_yerr_(0), + pcaSeed_zerr_(0), + pcaTrack_x_(0), + pcaTrack_y_(0), + pcaTrack_z_(0), + pcaTrack_xerr_(0), + pcaTrack_yerr_(0), + pcaTrack_zerr_(0), + + dotprodTrack_(0), + dotprodSeed_(0), + pcaSeed_dist_(0), + pcaTrack_dist_(0), + + track_candMass_(0), + track_ip2d_(0), + track_ip2dSig_(0), + track_ip3d_(0), + track_ip3dSig_(0), + + dotprodTrackSeed2D_(0), + dotprodTrackSeed2DV_(0), + dotprodTrackSeed3D_(0), + dotprodTrackSeed3DV_(0), + + pca_jetAxis_dist_(0), + pca_jetAxis_dotprod_(0), + pca_jetAxis_dEta_(0), + pca_jetAxis_dPhi_(0) + + {} + + void TrackPairInfoBuilder::buildTrackPairInfo(const reco::TransientTrack it, + const reco::TransientTrack tt, + const reco::Vertex& pv, + const pat::Jet &jet + ) { + + GlobalVector jetdirection(jet.px(), jet.py(), jet.pz()); + GlobalPoint pvp(pv.x(), pv.y(), pv.z()); + + VertexDistance3D distanceComputer; + TwoTrackMinimumDistance dist; + + auto const& iImpactState = it.impactPointState(); + auto const& tImpactState = tt.impactPointState(); + + if (dist.calculate(tImpactState, iImpactState)) { + GlobalPoint ttPoint = dist.points().first; + GlobalError ttPointErr = tImpactState.cartesianError().position(); + GlobalPoint seedPosition = dist.points().second; + GlobalError seedPositionErr = iImpactState.cartesianError().position(); + + Measurement1D m = + distanceComputer.distance(VertexState(seedPosition, seedPositionErr), VertexState(ttPoint, ttPointErr)); + + GlobalPoint cp(dist.crossingPoint()); + + GlobalVector pairMomentum((Basic3DVector)(it.track().momentum() + tt.track().momentum())); + GlobalVector pvToPCA(cp - pvp); + + float pvToPCAseed = (seedPosition - pvp).mag(); + float pvToPCAtrack = (ttPoint - pvp).mag(); + float distance = dist.distance(); + + GlobalVector trackDir2D(tImpactState.globalDirection().x(), tImpactState.globalDirection().y(), 0.); + GlobalVector seedDir2D(iImpactState.globalDirection().x(), iImpactState.globalDirection().y(), 0.); + GlobalVector trackPCADir2D(ttPoint.x() - pvp.x(), ttPoint.y() - pvp.y(), 0.); + GlobalVector seedPCADir2D(seedPosition.x() - pvp.x(), seedPosition.y() - pvp.y(), 0.); + + float dotprodTrack = (ttPoint - pvp).unit().dot(tImpactState.globalDirection().unit()); + float dotprodSeed = (seedPosition - pvp).unit().dot(iImpactState.globalDirection().unit()); + + Line::PositionType pos(pvp); + Line::DirectionType dir(jetdirection); + Line::DirectionType pairMomentumDir(pairMomentum); + Line jetLine(pos, dir); + Line PCAMomentumLine(cp, pairMomentumDir); + + track_t_pt_ = tt.track().pt(); + track_i_pt_ = it.track().pt(); + + pca_distance_ = distance; + pca_significance_ = m.significance(); + + pcaSeed_x_ = seedPosition.x(); + pcaSeed_y_ = seedPosition.y(); + pcaSeed_z_ = seedPosition.z(); + pcaSeed_xerr_ = seedPositionErr.cxx(); + pcaSeed_yerr_ = seedPositionErr.cyy(); + pcaSeed_zerr_ = seedPositionErr.czz(); + pcaTrack_x_ = ttPoint.x(); + pcaTrack_y_ = ttPoint.y(); + pcaTrack_z_ = ttPoint.z(); + pcaTrack_xerr_ = ttPointErr.cxx(); + pcaTrack_yerr_ = ttPointErr.cyy(); + pcaTrack_zerr_ = ttPointErr.czz(); + + dotprodTrack_ = dotprodTrack; + dotprodSeed_ = dotprodSeed; + pcaSeed_dist_ = pvToPCAseed; + pcaTrack_dist_ = pvToPCAtrack; + + dotprodTrackSeed2D_ = trackDir2D.unit().dot(seedDir2D.unit()); + dotprodTrackSeed3D_ = iImpactState.globalDirection().unit().dot(tImpactState.globalDirection().unit()); + dotprodTrackSeed2DV_ = trackPCADir2D.unit().dot(seedPCADir2D.unit()); + dotprodTrackSeed3DV_ = (seedPosition - pvp).unit().dot((ttPoint - pvp).unit()); + + pca_jetAxis_dist_ = jetLine.distance(cp).mag(); + pca_jetAxis_dotprod_ = pairMomentum.unit().dot(jetdirection.unit()); + pca_jetAxis_dEta_ = std::fabs(pvToPCA.eta() - jetdirection.eta()); + pca_jetAxis_dPhi_ = std::fabs(pvToPCA.phi() - jetdirection.phi()); + } + } + +} // namespace btagbtvdeep diff --git a/DeepNtuplizer/src/mergeDescriptor.cc b/DeepNtuplizer/src/mergeDescriptor.cc index 2d5cb278f89..072686cfee2 100644 --- a/DeepNtuplizer/src/mergeDescriptor.cc +++ b/DeepNtuplizer/src/mergeDescriptor.cc @@ -24,8 +24,8 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" -#include "DeepNTuples/DeepNtuplizer/interface/ntuple_DeepVertex.h" -#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_pairwise.h" +//#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" static bool debug=true; @@ -133,8 +133,8 @@ std::vector mergeDescriptor::createChains( branchinfos.push_back(new ntuple_SV()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); - //branchinfos.push_back(new ntuple_DeepVertex()); - branchinfos.push_back(new ntuple_GraphB()); + branchinfos.push_back(new ntuple_pairwise()); + //branchinfos.push_back(new ntuple_GraphB()); std::vector chains; for(size_t i=0;i(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - - //readEvent only line - iSetup.get().get("TransientTrackBuilder", builder); - -} - -void ntuple_DeepVertex::checkEventSetup(const edm::EventSetup & iSetup) { - - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - -} - - -bool ntuple_DeepVertex::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ - - // pv info - const reco::Vertex &pv = vertices()->at(0); - GlobalPoint pvp(pv.x(),pv.y(),pv.z()); - - - std::vector selectedTracks; - std::vector masses; - - - for(size_t k = 0; ksize(); ++k) { - if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { - selectedTracks.push_back(builder->build(tracks->ptrAt(k))); - masses.push_back(tracks->ptrAt(k)->mass()); - } - } - - double jet_radius = jetR(); - GlobalVector direction(jet.px(), jet.py(), jet.pz()); - - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - - //is the track in the jet cone? - float angular_distance=reco::deltaR(jet,it->track());//std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); - if (angular_distance>jet_radius) { continue; } - - // is it a seed track? - std::pair ip = IPTools::absoluteImpactParameter3D(*it, pv); - std::pair ip2d = IPTools::absoluteTransverseImpactParameter(*it, pv); - std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); - TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); - float length=999; - if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); - - // shouldn't it be like this, including the minimal 3DIP cuts? more conform with IVF! - // https://github.com/cms-sw/cmssw/blob/09c3fce6626f70fd04223e7dacebf0b485f73f54/RecoVertex/AdaptiveVertexFinder/src/TracksClusteringFromDisplacedSeed.cc#L96 - //maybe... but qulity cuts for now - - bool is_seed_candidate = (ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && - ip.second.value() <= max3DIPValue && ip.second.significance() <= max3DIPSignificance && - it->track().normalizedChi2()<5. && std::fabs(it->track().dxy(pv.position())) < 2 && - std::fabs(it->track().dz(pv.position())) < 17 && jet_dist.second.value()<0.07 && length<5. ); - - //if (!is_seed_candidate){continue;} - - std::pair ipSigned = IPTools::signedImpactParameter3D(*it,direction, pv); - //n_seeds++; - - nearTracks.clear(); - //now that we found a seed, loop over all other tracks and look for neighbours - for(std::vector::const_iterator tt = selectedTracks.begin();tt!=selectedTracks.end(); ++tt ) { - float near_angular_distance=reco::deltaR(jet,tt->track()); - if(near_angular_distancetrack().vz())>0.1) continue; - - VertexDistance3D distanceComputer; - TwoTrackMinimumDistance dist; - - if(dist.calculate(tt->impactPointState(),it->impactPointState())) { - GlobalPoint ttPoint = dist.points().first; - GlobalError ttPointErr = tt->impactPointState().cartesianError().position(); - GlobalPoint seedPosition = dist.points().second; - GlobalError seedPositionErr = it->impactPointState().cartesianError().position(); - - Measurement1D m = distanceComputer.distance(VertexState(seedPosition,seedPositionErr), VertexState(ttPoint, ttPointErr)); - GlobalPoint cp(dist.crossingPoint()); - - GlobalVector PairMomentum(it->track().px()+tt->track().px(), it->track().py()+tt->track().py(), it->track().pz()+tt->track().pz()); - GlobalVector PCA_pv(cp-pvp); - - float PCAseedFromPV = (dist.points().second-pvp).mag(); - float PCAtrackFromPV = (dist.points().first-pvp).mag(); - float distance = dist.distance(); - - GlobalVector trackDir2D(tt->impactPointState().globalDirection().x(),tt->impactPointState().globalDirection().y(),0.); - GlobalVector seedDir2D(it->impactPointState().globalDirection().x(),it->impactPointState().globalDirection().y(),0.); - GlobalVector trackPCADir2D(dist.points().first.x()-pvp.x(),dist.points().first.y()-pvp.y(),0.); - GlobalVector seedPCADir2D(dist.points().second.x()-pvp.x(),dist.points().second.y()-pvp.y(),0.); - - float dotprodTrack = (dist.points().first-pvp).unit().dot(tt->impactPointState().globalDirection().unit()); - float dotprodSeed = (dist.points().second-pvp).unit().dot(it->impactPointState().globalDirection().unit()); - float dotprodTrackSeed2D = trackDir2D.unit().dot(seedDir2D.unit()); - float dotprodTrackSeed3D = it->impactPointState().globalDirection().unit().dot(tt->impactPointState().globalDirection().unit()); - float dotprodTrackSeed2DV = trackPCADir2D.unit().dot(seedPCADir2D.unit()); - float dotprodTrackSeed3DV = (dist.points().second-pvp).unit().dot((dist.points().first-pvp).unit()); - - std::pair t_ip = IPTools::absoluteImpactParameter3D(*tt,pv); - std::pair t_ip2d = IPTools::absoluteTransverseImpactParameter(*tt,pv); - - myTrack.set_PtEtaPhiMassDzDxy(tt->track().pt(), tt->track().eta(), tt->track().phi(), masses[tt-selectedTracks.begin()], - tt->track().dz(pv.position()), tt->track().dxy(pv.position())); - - myTrack.set_IPs(t_ip2d.second.value() , t_ip2d.second.significance(), t_ip.second.value() , t_ip.second.significance()); - - myTrack.set_PCAdistance (distance, m.significance()); - myTrack.set_PCAonSeedXYZ(seedPosition.x(), seedPosition.y(), seedPosition.z(), seedPositionErr.cxx(), seedPositionErr.cyy(), seedPositionErr.czz()); - myTrack.set_PCAonTrackXYZ(ttPoint.x(), ttPoint.y(), ttPoint.z(), ttPointErr.cxx(), ttPointErr.cyy(), ttPointErr.czz()); - - myTrack.set_dotProds(dotprodTrack, dotprodSeed, dotprodTrackSeed2D, dotprodTrackSeed3D, dotprodTrackSeed2DV, dotprodTrackSeed3DV); - myTrack.set_PVdistance(PCAseedFromPV, PCAtrackFromPV); - - Line::PositionType pos(pvp); - Line::DirectionType dir(direction); - Line::DirectionType pairMomentumDir(PairMomentum); - Line jetLine(pos,dir); - Line PCAMomentumLine(cp,pairMomentumDir); - float PCA_JetAxis_dist=jetLine.distance(cp).mag(); - float dotprodMomenta=PairMomentum.unit().dot(direction.unit()); - float dEta=std::fabs(PCA_pv.eta()-jet.eta()); - float dPhi=std::fabs(PCA_pv.phi()-jet.phi()); - - myTrack.setSeedMass(masses[it-selectedTracks.begin()]); - myTrack.set_JetAxisVars(PCA_JetAxis_dist,dotprodMomenta,dEta,dPhi); - nearTracks.push_back(myTrack); - - } - } - - std::sort (nearTracks.begin(), nearTracks.end(), sortfunctionNTracks()); - if (nearTracks.size() > 20){nearTracks.resize(20);} - //for(int n = 0; n<20; n++){ - //std::cout << "n = " << n << std::endl; - //std::cout << "dR = " << reco::deltaR( jet.eta(), jet.phi(), nearTracks.at(n).eta, nearTracks.at(n).phi) << std::endl; - //std::cout << "dist = " << nearTracks.at(n).dist << std::endl; - - //} - SortedSeedsMap.insert(std::make_pair(-ipSigned.second.significance(), std::make_pair(&(*it), nearTracks))); - - } - // std::cout << "jet tracks = " << counter << std::endl; - //std::cout << "ang dist 4 = " << big_counter << std::endl; - unsigned int seeds_max_counter=0; - unsigned int neartracks_max_counter=0; - - for(std::multimap > >::const_iterator im = SortedSeedsMap.begin(); im != SortedSeedsMap.end(); im++){ - - if(seeds_max_counter>=max_seeds) break; - - std::pair ipSigned = IPTools::signedImpactParameter3D(*im->second.first,direction, pv); - std::pair ip2dSigned = IPTools::signedTransverseImpactParameter(*im->second.first,direction, pv); - std::pair ip = IPTools::absoluteImpactParameter3D(*im->second.first, pv); - std::pair ip2d = IPTools::absoluteTransverseImpactParameter(*im->second.first, pv); - - seed_pt[seeds_max_counter]=im->second.first->track().pt(); - seed_eta[seeds_max_counter]=im->second.first->track().eta(); - seed_phi[seeds_max_counter]=im->second.first->track().phi(); - if (im->second.second.size() != 0){ seed_mass[seeds_max_counter]=im->second.second.at(0).seedMass;} - else{seed_mass[seeds_max_counter]=-1;} - seed_dz[seeds_max_counter]=im->second.first->track().dz(pv.position()); - seed_dxy[seeds_max_counter]=im->second.first->track().dxy(pv.position()); - seed_3D_ip[seeds_max_counter]=ip.second.value(); - seed_3D_sip[seeds_max_counter]=ip.second.significance(); - seed_2D_ip[seeds_max_counter]=ip2d.second.value(); - seed_2D_sip[seeds_max_counter]=ip2d.second.significance(); - seed_3D_signedIp[seeds_max_counter]=ipSigned.second.value(); - seed_3D_signedSip[seeds_max_counter]=ipSigned.second.significance(); - seed_2D_signedIp[seeds_max_counter]=ip2dSigned.second.value(); - seed_2D_signedSip[seeds_max_counter]=ip2dSigned.second.significance(); - - seed_3D_TrackProbability[seeds_max_counter]=1; - seed_2D_TrackProbability[seeds_max_counter]=1; - - if (m_computeProbabilities) { - - std::pair probability; - - //probability with 3D ip - probability = m_probabilityEstimator->probability(0, 0,ip.second.significance(),im->second.first->track(),jet,pv); - double prob3D=(probability.first ? probability.second : -1.); - - //probability with 2D ip - probability = m_probabilityEstimator->probability(0, 1,ip2d.second.significance(),im->second.first->track(),jet,pv); - double prob2D=(probability.first ? probability.second : -1.); - - seed_3D_TrackProbability[seeds_max_counter]=prob3D; - seed_2D_TrackProbability[seeds_max_counter]=prob2D; - - } - - seed_chi2reduced[seeds_max_counter]=im->second.first->track().normalizedChi2(); - seed_nPixelHits[seeds_max_counter]=im->second.first->track().hitPattern().numberOfValidPixelHits(); - seed_nHits[seeds_max_counter]=im->second.first->track().hitPattern().numberOfValidHits(); - - std::pair jet_distance =IPTools::jetTrackDistance(*im->second.first, direction, pv); - seed_jetAxisDistance[seeds_max_counter]=std::fabs(jet_distance.second.value()); - - TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(im->second.first->impactPointState(),pv, direction,im->second.first->field()); - if (closest.isValid()) seed_jetAxisDlength[seeds_max_counter]=(closest.globalPosition() - pvp).mag(); - else seed_jetAxisDlength[seeds_max_counter]= -99; - - seed_n_NearTracks[seeds_max_counter]=im->second.second.size(); - - // FILL NEAREAST VARIABLES - for(unsigned int i=0; i< im->second.second.size(); i++) { - - if((neartracks_max_counter+i)>=max_nearestTrk) break; - - nearTracks_pt[neartracks_max_counter+i]=im->second.second.at(i).pt; - nearTracks_eta[neartracks_max_counter+i]=im->second.second.at(i).eta; - nearTracks_phi[neartracks_max_counter+i]=im->second.second.at(i).phi; - nearTracks_dz[neartracks_max_counter+i]=im->second.second.at(i).dz; - nearTracks_dxy[neartracks_max_counter+i]=im->second.second.at(i).dxy; - nearTracks_mass[neartracks_max_counter+i]=im->second.second.at(i).mass; - nearTracks_3D_ip[neartracks_max_counter+i]=im->second.second.at(i).t3Dip; - nearTracks_3D_sip[neartracks_max_counter+i]=im->second.second.at(i).t3Dsip; - nearTracks_2D_ip[neartracks_max_counter+i]=im->second.second.at(i).t2Dip; - nearTracks_2D_sip[neartracks_max_counter+i]=im->second.second.at(i).t2Dsip; - nearTracks_PCAdist[neartracks_max_counter+i]=im->second.second.at(i).dist; - nearTracks_PCAdsig[neartracks_max_counter+i]=im->second.second.at(i).dsig; - nearTracks_PCAonSeed_x[neartracks_max_counter+i]=im->second.second.at(i).PCA_sx; - nearTracks_PCAonSeed_y[neartracks_max_counter+i]=im->second.second.at(i).PCA_sy; - nearTracks_PCAonSeed_z[neartracks_max_counter+i]=im->second.second.at(i).PCA_sz; - nearTracks_PCAonSeed_xerr[neartracks_max_counter+i]=im->second.second.at(i).PCA_sxerr; - nearTracks_PCAonSeed_yerr[neartracks_max_counter+i]=im->second.second.at(i).PCA_syerr; - nearTracks_PCAonSeed_zerr[neartracks_max_counter+i]=im->second.second.at(i).PCA_szerr; - nearTracks_PCAonTrack_x[neartracks_max_counter+i]=im->second.second.at(i).PCA_tx; - nearTracks_PCAonTrack_y[neartracks_max_counter+i]=im->second.second.at(i).PCA_ty; - nearTracks_PCAonTrack_z[neartracks_max_counter+i]=im->second.second.at(i).PCA_tz; - nearTracks_PCAonTrack_xerr[neartracks_max_counter+i]=im->second.second.at(i).PCA_txerr; - nearTracks_PCAonTrack_yerr[neartracks_max_counter+i]=im->second.second.at(i).PCA_tyerr; - nearTracks_PCAonTrack_zerr[neartracks_max_counter+i]=im->second.second.at(i).PCA_tzerr; - nearTracks_dotprodTrack[neartracks_max_counter+i]=im->second.second.at(i).dotprodTrack; - nearTracks_dotprodSeed[neartracks_max_counter+i]=im->second.second.at(i).dotprodSeed; - nearTracks_dotprodTrackSeed2D[neartracks_max_counter+i]=im->second.second.at(i).dotprodTrackSeed2D; - nearTracks_dotprodTrackSeed3D[neartracks_max_counter+i]=im->second.second.at(i).dotprodTrackSeed3D; - nearTracks_dotprodTrackSeedVectors2D[neartracks_max_counter+i]=im->second.second.at(i).dotprodTrackSeedVectors2D; - nearTracks_dotprodTrackSeedVectors3D[neartracks_max_counter+i]=im->second.second.at(i).dotprodTrackSeedVectors3D; - - nearTracks_PCAonSeed_pvd[neartracks_max_counter+i]=im->second.second.at(i).seedPCA_pv; - nearTracks_PCAonTrack_pvd[neartracks_max_counter+i]=im->second.second.at(i).trackPCA_pv; - - nearTracks_PCAjetAxis_dist[neartracks_max_counter+i]=im->second.second.at(i).PCA_JetAxis_distance; - nearTracks_PCAjetMomenta_dotprod[neartracks_max_counter+i]=im->second.second.at(i).PCAPair_Jet_dotprod; - - nearTracks_PCAjetDirs_DEta[neartracks_max_counter+i]=im->second.second.at(i).PCAAxis_JetAxis_DEta; - nearTracks_PCAjetDirs_DPhi[neartracks_max_counter+i]=im->second.second.at(i).PCAAxis_JetAxis_DPhi; - - } - - // ********* - neartracks_max_counter += im->second.second.size(); - seeds_max_counter++; - } - - n_NearTracksTotal = neartracks_max_counter; - n_seeds = seeds_max_counter; - - SortedSeedsMap.clear(); - nearTracks.clear(); - masses.clear(); - - return true; -} - diff --git a/DeepNtuplizer/src/ntuple_GraphB.cc b/DeepNtuplizer/src/ntuple_GraphB.cc deleted file mode 100644 index d40b2eea63f..00000000000 --- a/DeepNtuplizer/src/ntuple_GraphB.cc +++ /dev/null @@ -1,453 +0,0 @@ -/* - * ntuple_GraphB.cc - * - * Created on: 23 June 2017 - * Author: Seth Moortgat - - */ - - -#include "../interface/ntuple_GraphB.h" - -#include "DataFormats/GeometrySurface/interface/Line.h" -#include "DataFormats/PatCandidates/interface/PackedCandidate.h" -#include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" -#include "TrackingTools/Records/interface/TransientTrackRecord.h" -#include "TrackingTools/IPTools/interface/IPTools.h" -#include "TrackingTools/PatternTools/interface/TwoTrackMinimumDistance.h" -#include "../interface/sorting_modules.h" -#include "CondFormats/BTauObjects/interface/TrackProbabilityCalibration.h" -#include "CondFormats/DataRecord/interface/BTagTrackProbability2DRcd.h" -#include "CondFormats/DataRecord/interface/BTagTrackProbability3DRcd.h" -#include "FWCore/Framework/interface/EventSetupRecord.h" -#include "FWCore/Framework/interface/EventSetupRecordImplementation.h" -#include "FWCore/Framework/interface/EventSetupRecordKey.h" -#include "RecoVertex/VertexTools/interface/VertexDistance3D.h" -#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" -#include "TVector3.h" - -class TrackInfoBuilder{ -public: - TrackInfoBuilder(edm::ESHandle & build): - builder(build), - trackMomentum_(0), - trackEta_(0), - trackEtaRel_(0), - trackPtRel_(0), - trackPPar_(0), - trackDeltaR_(0), - trackPtRatio_(0), - trackPParRatio_(0), - trackSip2dVal_(0), - trackSip2dSig_(0), - trackSip3dVal_(0), - trackSip3dSig_(0), - trackJetDistVal_(0), - trackJetDistSig_(0), - trackImpactPointState_(0) -{ - - -} - - void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ - TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); - if(!PackedCandidate_->hasTrackDetails()) { - TVector3 trackMom3( - PackedCandidate_->momentum().x(), - PackedCandidate_->momentum().y(), - PackedCandidate_->momentum().z() - ); - trackMomentum_=PackedCandidate_->p(); - trackEta_= PackedCandidate_->eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); - trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); - trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); - trackSip2dVal_=0.; - trackSip2dSig_=0.; - trackSip3dVal_=0.; - trackSip3dSig_=0.; - trackJetDistVal_=0.; - trackJetDistSig_=0.; - //trackImpactPointState_=PackedCandidate_->impactPointState(); - return; - } - - const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); - - reco::TransientTrack transientTrack; - transientTrack=builder->build(PseudoTrack); - Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; - Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; - Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; - math::XYZVector trackMom = PseudoTrack.momentum(); - double trackMag = std::sqrt(trackMom.Mag2()); - TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); - - - trackMomentum_=std::sqrt(trackMom.Mag2()); - trackEta_= trackMom.Eta(); - trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); - trackPtRel_=trackMom3.Perp(jetDir3); - trackPPar_=jetDir.Dot(trackMom); - trackDeltaR_=reco::deltaR(trackMom, jetDir); - trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; - trackPParRatio_=jetDir.Dot(trackMom) / trackMag; - trackSip2dVal_=(meas_ip2d.value()); - - trackSip2dSig_=(meas_ip2d.significance()); - trackSip3dVal_=(meas_ip3d.value()); - - - trackSip3dSig_=meas_ip3d.significance(); - trackJetDistVal_= jetdist.value(); - trackJetDistSig_= jetdist.significance(); - trackImpactPointState_=transientTrack.impactPointState(); - - } - - const float& getTrackDeltaR() const {return trackDeltaR_;} - const float& getTrackEta() const {return trackEta_;} - const float& getTrackEtaRel() const {return trackEtaRel_;} - const float& getTrackJetDistSig() const {return trackJetDistSig_;} - const float& getTrackJetDistVal() const {return trackJetDistVal_;} - const float& getTrackMomentum() const {return trackMomentum_;} - const float& getTrackPPar() const {return trackPPar_;} - const float& getTrackPParRatio() const {return trackPParRatio_;} - const float& getTrackPtRatio() const {return trackPtRatio_;} - const float& getTrackPtRel() const {return trackPtRel_;} - const float& getTrackSip2dSig() const {return trackSip2dSig_;} - const float& getTrackSip2dVal() const {return trackSip2dVal_;} - const float& getTrackSip3dSig() const {return trackSip3dSig_;} - const float& getTrackSip3dVal() const {return trackSip3dVal_;} - const TrajectoryStateOnSurface& getImpactPointState() const {return trackImpactPointState_;} - -private: - - edm::ESHandle& builder; - - float trackMomentum_; - float trackEta_; - float trackEtaRel_; - float trackPtRel_; - float trackPPar_; - float trackDeltaR_; - float trackPtRatio_; - float trackPParRatio_; - float trackSip2dVal_; - float trackSip2dSig_; - float trackSip3dVal_; - float trackSip3dSig_; - - float trackJetDistVal_; - float trackJetDistSig_; - TrajectoryStateOnSurface trackImpactPointState_; - -}; - -ntuple_GraphB::ntuple_GraphB(double jetR):ntuple_content(jetR){} - -ntuple_GraphB::~ntuple_GraphB(){} - -void ntuple_GraphB::getInput(const edm::ParameterSet& iConfig){ - min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); -} - -void ntuple_GraphB::initBranches(TTree* tree){ - - addBranch(tree,"n_gtracks",&n_gtracks, "n_gtracks/i"); - addBranch(tree,"nGtracks",&nGtracks, "nGtracks/f"); - addBranch(tree,"gtrack_pt",>rack_pt, "gtrack_pt[n_gtracks]/f"); - addBranch(tree,"gtrack_eta",>rack_eta, "gtrack_eta[n_gtracks]/f"); - addBranch(tree,"gtrack_phi",>rack_phi, "gtrack_phi[n_gtracks]/f"); - addBranch(tree,"gtrack_mass",>rack_mass, "gtrack_mass[n_gtracks]/f"); - - addBranch(tree,"gtrack_dz", >rack_dz, "gtrack_dz[n_gtracks]/f"); - addBranch(tree,"gtrack_dxy", >rack_dxy, "gtrack_dxy[n_gtracks]/f"); - addBranch(tree,"gtrack_3D_ip", >rack_3D_ip, "gtrack_3D_ip[n_gtracks]/f"); - addBranch(tree,"gtrack_3D_sip", >rack_3D_sip, "gtrack_3D_sip[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_ip", >rack_2D_ip, "gtrack_2D_ip[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_sip", >rack_2D_sip, "gtrack_2D_sip[n_gtracks]/f"); - addBranch(tree,"gtrack_dR", >rack_dR, "gtrack_dR[n_gtracks]/f"); - addBranch(tree,"gtrack_dist_neigh", >rack_dist_neigh, "gtrack_dist_neigh[n_gtracks]/f"); - - addBranch(tree,"gtrack_3D_TrackProbability", >rack_3D_TrackProbability, "gtrack_3D_TrackProbability[n_gtracks]/f"); - addBranch(tree,"gtrack_2D_TrackProbability", >rack_2D_TrackProbability, "gtrack_2D_TrackProbability[n_gtracks]/f"); - - addBranch(tree,"gtrack_chi2reduced",>rack_chi2reduced, "gtrack_chi2reduced[n_gtracks]/f"); - addBranch(tree,"gtrack_nPixelHits",>rack_nPixelHits, "gtrack_nPixelHits[n_gtracks]/f"); - addBranch(tree,"gtrack_nHits",>rack_nHits, "gtrack_nHits[n_gtracks]/f"); - addBranch(tree,"gtrack_jetAxisDistance",>rack_jetAxisDistance, "gtrack_jetAxisDistance[n_gtracks]/f"); - addBranch(tree,"gtrack_jetAxisDlength",>rack_jetAxisDlength, "gtrack_jetAxisDlength[n_gtracks]/f"); - addBranch(tree,"gtrack_PCAtrackFromPV",>rack_PCAtrackFromPV, "gtrack_PCAtrackFromPV[n_gtracks]/f"); - addBranch(tree,"gtrack_dotProdTrack",>rack_dotProdTrack, "gtrack_dotProdTrack[n_gtracks]/f"); - addBranch(tree,"gtrack_dotProdTrack2D",>rack_dotProdTrack2D, "gtrack_dotProdTrack2D[n_gtracks]/f"); - -} - -void ntuple_GraphB::readEvent(const edm::Event& iEvent){ - iEvent.getByToken(CandidateToken, tracks); - n_Npfcand_=0; - n_Cpfcand_=0; -} - -void ntuple_GraphB::readSetup(const edm::EventSetup& iSetup){ - - //this part was to be in checkEventSetup, but idk how to call it - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - iSetup.get().get("TransientTrackBuilder", builder); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - - //readEvent only line - iSetup.get().get("TransientTrackBuilder", builder); - -} - -void ntuple_GraphB::checkEventSetup(const edm::EventSetup & iSetup) { - - using namespace edm; - using namespace edm::eventsetup; - - const EventSetupRecord & re2D= iSetup.get(); - const EventSetupRecord & re3D= iSetup.get(); - unsigned long long cacheId2D= re2D.cacheIdentifier(); - unsigned long long cacheId3D= re3D.cacheIdentifier(); - - if(cacheId2D!=m_calibrationCacheId2D || cacheId3D!=m_calibrationCacheId3D ) //Calibration changed - { - //iSetup.get().get(calib); - ESHandle calib2DHandle; - iSetup.get().get(calib2DHandle); - ESHandle calib3DHandle; - iSetup.get().get(calib3DHandle); - - const TrackProbabilityCalibration * ca2D= calib2DHandle.product(); - const TrackProbabilityCalibration * ca3D= calib3DHandle.product(); - - m_probabilityEstimator.reset(new HistogramProbabilityEstimator(ca3D,ca2D)); - - } - - m_calibrationCacheId3D=cacheId3D; - m_calibrationCacheId2D=cacheId2D; - -} - - -bool ntuple_GraphB::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ - - // pv info - const reco::Vertex &pv = vertices()->at(0); - GlobalPoint pvp(pv.x(),pv.y(),pv.z()); - - std::vector selectedTracks; - std::vector masses; - - double jet_radius = jetR(); - - math::XYZVector jetDir = jet.momentum().Unit(); - GlobalVector direction(jet.px(), jet.py(), jet.pz()); - std::vector > sortedcharged; - std::vector sortedchargedindices; - - const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); - //const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); - - for(size_t k = 0; ksize(); ++k) { - if((*tracks)[k].bestTrack() != 0 && (*tracks)[k].pt()>0.5 && std::fabs(pvp.z()-builder->build(tracks->ptrAt(k)).track().vz())<0.5) { - selectedTracks.push_back(builder->build(tracks->ptrAt(k))); - masses.push_back(tracks->ptrAt(k)->mass()); - } - } - - std::vector > sorted_tracks; - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - float angular_distance=reco::deltaR(jet,it->track()); - sorted_tracks.push_back(sorting::sortingClass - (it-selectedTracks.begin(), -angular_distance, - -1, -1)); - } - std::sort(sorted_tracks.begin(),sorted_tracks.end(),sorting::sortingClass::compareByABCInv); - std::vector sorted_track_indices; - sorted_track_indices=sorting::invertSortingVector(sorted_tracks); - //n_gtracks = std::min(sorted_tracks.size(),max_gtracks); - //nGtracks = n_gtracks; - - - TrackInfoBuilder trackinfo(builder); - //create collection of cpf/npf for the seeding - for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); - if(PackedCandidate){ - if(PackedCandidate->pt() < min_candidate_pt_) continue; - if(PackedCandidate->charge()!=0){ - trackinfo.buildTrackInfo(PackedCandidate,jetDir,direction,pv); - sortedcharged.push_back(sorting::sortingClass - (i, trackinfo.getTrackSip2dSig(), - -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); - } - } - } - std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); - long unsigned int max_cpf = 30; - n_Cpfcand_ = std::min(sortedcharged.size(),max_cpf); - sortedchargedindices = sorting::invertSortingVector(sortedcharged); - - size_t counter= 0; - - for(std::vector::const_iterator it = selectedTracks.begin(); it != selectedTracks.end(); it++){ - //is the track in the jet cone? - float angular_distance=reco::deltaR(jet,it->track()); - //std::sqrt(std::pow(jet.eta()-it->track().eta(),2) + std::pow(jet.phi()-it->track().phi(),2) ); - bool hasNeighbour = false; - bool include = false; - float dist_part = -0.01; - - //matching the track with the jet radius - if((angular_distance < 1.50*jet_radius) && (angular_distance > jet_radius)){ - if((std::fabs(pvp.z() - it->track().vz()) > 0.1)) {continue;} - //matching the track with a cpf_seed of not - - for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ - const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); - if(PackedCandidate->hasTrackDetails()){ - if(PackedCandidate->pt() < min_candidate_pt_) {continue;} - if(PackedCandidate->charge()!=0){ - const reco::Track & PseudoTrack = PackedCandidate->pseudoTrack(); - reco::TransientTrack transientTrack; - transientTrack=builder->build(PseudoTrack); - - TwoTrackMinimumDistance dist; - std::pair ip=IPTools::absoluteImpactParameter3D(transientTrack, pv); - float near_angular_dist = reco::deltaR(jet,transientTrack.track()); - std::pair jet_dist =IPTools::jetTrackDistance(transientTrack, direction, pv); - float length = 999; - TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(transientTrack.impactPointState(), pv, direction, transientTrack.field()); - if(closest.isValid()){ - length = (closest.globalPosition() - pvp).mag(); - } - if (transientTrack == *it) {continue;} - if (near_angular_dist < jet_radius){ - if (!(ip.first && ip.second.value() >= 0.0 && ip.second.significance() >= 1.0 && ip.second.value() <= 9999. - && ip.second.significance() <= 9999. && transientTrack.track().normalizedChi2() < 5. && std::fabs(transientTrack.track().dxy(pv.position())) < 2 - && std::fabs(transientTrack.track().dz(pv.position())) < 17 && jet_dist.second.value() < 0.07 && length < 5.)){continue;} - /*if(ip.second.significance() < 1.0) {continue;}*/ - if(dist.calculate(transientTrack.impactPointState(),it->impactPointState())){ - float distance = dist.distance(); - if(distance < 0.02){ - hasNeighbour = true; - dist_part = distance; - } - } - } - } - } - } - if(hasNeighbour){ - int matched_jets = 0; - for (std::size_t jet_n = 0; jet_n < coll->size(); jet_n++) { - const auto& test_jet = coll->at(jet_n); - if(test_jet.pt() < 5.0){continue;} - float new_angular_distance=reco::deltaR(test_jet,it->track()); - if(new_angular_distance < jet_radius){ - matched_jets = matched_jets + 1; - } - } - if(matched_jets != 0){continue;} - include = true; - } - } - if(angular_distance<=jet_radius){ - include = true; - } - - if(include){ - - std::pair ip = IPTools::signedImpactParameter3D(*it, direction, pv); - std::pair ip2d = IPTools::signedTransverseImpactParameter(*it, direction, pv); - std::pair jet_dist =IPTools::jetTrackDistance(*it, direction, pv); - TrajectoryStateOnSurface closest = IPTools::closestApproachToJet(it->impactPointState(),pv, direction,it->field()); - if(counter >= max_gtracks){continue;} - gtrack_dR[counter] = catchInfsAndBound(reco::deltaR(jet,it->track()), -1.0,0.0,10.0); - gtrack_dist_neigh[counter] = catchInfsAndBound(dist_part, -10.0,-5.0,100.0); - float length=999; - if (closest.isValid()) length=(closest.globalPosition() - pvp).mag(); - gtrack_jetAxisDlength[counter] = catchInfsAndBound(length,-1.0,-100.0,100.0); - gtrack_jetAxisDistance[counter] = catchInfsAndBound(jet_dist.second.value(),-1.0,-100.0,100.0); - gtrack_chi2reduced[counter] = catchInfsAndBound(it->track().normalizedChi2(),-1.0,-100.0,300.0); - gtrack_3D_ip[counter] = catchInfsAndBound(ip.second.value(),0.0,-500.0,500.0); - gtrack_3D_sip[counter] = catchInfsAndBound(ip.second.significance(),0.0,-500.0,500.0); - gtrack_2D_ip[counter] = catchInfsAndBound(ip2d.second.value(),0.0,-500.0,500.0); - gtrack_2D_sip[counter] = catchInfsAndBound(ip2d.second.significance(),0.0,-500.0,500.0); - gtrack_pt[counter] = catchInfsAndBound(it->track().pt(),0.0,-100.0,1000.0); - gtrack_eta[counter] = catchInfsAndBound(it->track().eta(),0.0,-2.5,2.5); - gtrack_phi[counter] = catchInfsAndBound(it->track().phi(),0.0,-5,5); - gtrack_mass[counter] = catchInfsAndBound(masses[it-selectedTracks.begin()],0.0,-1.0,500.0); - gtrack_dxy[counter] = catchInfsAndBound(it->track().dxy(pv.position()),0.0,-100.0,100.0); - gtrack_dz[counter] = catchInfsAndBound(it->track().dz(pv.position()),0.0,-100.0,100.0); - gtrack_PCAtrackFromPV[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).mag() , -1.0,-100.0,100.0); - gtrack_dotProdTrack[counter] = catchInfsAndBound( (it->impactPointState().globalPosition()-pvp).unit().dot(it->impactPointState().globalDirection().unit()), -3.0,-3.0,3.0); - GlobalVector trackDir2D(it->impactPointState().globalDirection().x(),it->impactPointState().globalDirection().y(),0.); - GlobalPoint pvp2d(pv.x(),pv.y(),0.0); - GlobalPoint trackPos2D(it->impactPointState().globalPosition().x(),it->impactPointState().globalPosition().y(),0.0); - gtrack_dotProdTrack2D[counter] = catchInfsAndBound( (trackPos2D-pvp2d).unit().dot(trackDir2D.unit()), -3.0,-3.0,3.0); - std::pair probability; - //probability with 3D ip - probability = m_probabilityEstimator->probability(0, 0,ip.second.significance(),it->track(),jet,pv); - double prob3D=(probability.first ? probability.second : -1.); - gtrack_3D_TrackProbability[counter] = catchInfsAndBound(prob3D,-2.0,-100.0,100.0); - //probability with 2D ip - probability = m_probabilityEstimator->probability(0, 1,ip2d.second.significance(),it->track(),jet,pv); - double prob2D=(probability.first ? probability.second : -1.); - gtrack_2D_TrackProbability[counter] = catchInfsAndBound(prob2D,-2.0,-100.0,100.0); - - gtrack_nPixelHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidPixelHits(),-1.0,0.0,100.0); - gtrack_nHits[counter] = catchInfsAndBound(it->hitPattern().numberOfValidHits(),-1.0,0.0,100.0); - counter++; - } - } - n_gtracks = counter; - nGtracks = n_gtracks; - masses.clear(); - - return true; -} - -float ntuple_GraphB::mindrsvpfcand(const pat::PackedCandidate* pfcand) { - - float mindr_ = jetradius_; - for (unsigned int i=0; isize(); ++i) { - if(!pfcand) continue; - //if(!svs.at(i)) continue; - float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); - if (tempdr_ & build): + builder(build), + trackSip2dSig_(0), + ttrack_(0) + +{ + +} + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + trackSip2dSig_=0.; + return; + } + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + ttrack_ = transientTrack; + + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + trackSip2dSig_=(meas_ip2d.significance()); + } + + const reco::TransientTrack getTTrack() const {return ttrack_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + +private: + + edm::ESHandle& builder; + float trackSip2dSig_; + reco::TransientTrack ttrack_; + +}; + +void ntuple_pairwise::readSetup(const edm::EventSetup& iSetup){ + + iSetup.get().get("TransientTrackBuilder", builder); + +} + +void ntuple_pairwise::getInput(const edm::ParameterSet& iConfig){ + min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); +} + +void ntuple_pairwise::initBranches(TTree* tree){ + + addBranch(tree,"n_Cpfpairs", &n_Cpfpairs_,"n_Cpfpairs_/I"); + addBranch(tree,"nCpfpairs", &nCpfpairs_,"nCpfpairs_/F"); + + addBranch(tree,"pair_pca_distance", &pair_pca_distance_,"pair_pca_distance_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pca_significance", &pair_pca_significance_,"pair_pca_significance_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_pcaSeed_x1", &pair_pcaSeed_x1_,"pair_pcaSeed_x1_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_y1", &pair_pcaSeed_y1_,"pair_pcaSeed_y1_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_z1", &pair_pcaSeed_z1_,"pair_pcaSeed_z1_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_pcaSeed_x2", &pair_pcaSeed_x2_,"pair_pcaSeed_x2_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_y2", &pair_pcaSeed_y2_,"pair_pcaSeed_y2_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_z2", &pair_pcaSeed_z2_,"pair_pcaSeed_z2_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_pcaSeed_xerr1", &pair_pcaSeed_xerr1_,"pair_pcaSeed_xerr1_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_yerr1", &pair_pcaSeed_yerr1_,"pair_pcaSeed_yerr1_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_zerr1", &pair_pcaSeed_zerr1_,"pair_pcaSeed_zerr1_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_pcaSeed_xerr2", &pair_pcaSeed_xerr2_,"pair_pcaSeed_xerr2_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_yerr2", &pair_pcaSeed_yerr2_,"pair_pcaSeed_yerr2_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pcaSeed_zerr2", &pair_pcaSeed_zerr2_,"pair_pcaSeed_zerr2_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_dotprod1", &pair_dotprod1_,"pair_dotprod1_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_dotprod2", &pair_dotprod2_,"pair_dotprod2_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_pca_dist1", &pair_pca_dist1_,"pair_pca_dist1_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pca_dist2", &pair_pca_dist2_,"pair_pca_dist2_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_dotprod12_2D", &pair_dotprod12_2D_,"pair_dotprod12_2D_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_dotprod12_2DV", &pair_dotprod12_2DV_,"pair_dotprod12_2DV_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_dotprod12_3D", &pair_dotprod12_3D_,"pair_dotprod12_3D_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_dotprod12_3DV", &pair_dotprod12_3DV_,"pair_dotprod12_3DV_[n_Cpfpairs_]/F"); + + addBranch(tree,"pair_pca_jetAxis_dist", &pair_pca_jetAxis_dist_,"pair_pca_jetAxis_dist_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pca_jetAxis_dotprod", &pair_pca_jetAxis_dotprod_,"pair_pca_jetAxis_dotprod_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pca_jetAxis_dEta", &pair_pca_jetAxis_dEta_,"pair_pca_jetAxis_dEta_[n_Cpfpairs_]/F"); + addBranch(tree,"pair_pca_jetAxis_dPhi", &pair_pca_jetAxis_dPhi_,"pair_pca_jetAxis_dPhi_[n_Cpfpairs_]/F"); + +} + +void ntuple_pairwise::readEvent(const edm::Event& iEvent){ + + n_Npfcand2_=0; + n_Cpfcand2_=0; + +} + +//use either of these functions + +bool ntuple_pairwise::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ + + math::XYZVector jetDir = jet.momentum().Unit(); + GlobalVector jetRefTrackDir(jet.px(),jet.py(),jet.pz()); + const reco::Vertex & pv = vertices()->at(0); + + std::vector > sortedcharged, sortedneutrals; + + const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); + const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); + + TrackInfoBuilder trackinfo(builder); + //create collection first, to be able to do some sorting + for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ + const pat::PackedCandidate* PackedCandidate = dynamic_cast(jet.daughter(i)); + if(PackedCandidate){ + if(PackedCandidate->pt() < min_candidate_pt_) continue; + if(PackedCandidate->charge()!=0){ + trackinfo.buildTrackInfo(PackedCandidate,jetDir,jetRefTrackDir,pv); + sortedcharged.push_back(sorting::sortingClass + (i, trackinfo.getTrackSip2dSig(), + -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); + } + /* else{ + sortedneutrals.push_back(sorting::sortingClass + (i, -1, -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); + }*/ + } + } + std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); + n_Cpfcand2_ = std::min(sortedcharged.size(),max_pfcand_); + + //std::sort(sortedneutrals.begin(),sortedneutrals.end(),sorting::sortingClass::compareByABCInv); + std::vector sortedchargedindices; //,sortedneutralsindices; + //n_Npfcand2_ = std::min(sortedneutrals.size(),max_pfcand_); + sortedchargedindices=sorting::invertSortingVector(sortedcharged); + //sortedneutralsindices=sorting::invertSortingVector(sortedneutrals); + + size_t counter = 0; + int n_cpf_ = std::min((int)25, n_Cpfcand2_); + + for (int i = 0; i < n_cpf_; i++){ + for (int j = 0; j < i; j++){ + + deepntuples::TrackPairInfoBuilder trkpairinfo; + int ind_i = sortedcharged.at(i).get(); + int ind_j = sortedcharged.at(j).get(); + const pat::PackedCandidate* Part_i_ = dynamic_cast(jet.daughter(ind_i)); + + if(!Part_i_){ + std::cout << i << " Bug PackedCandidate " << j << std::endl; + } + const pat::PackedCandidate* Part_j_ = dynamic_cast(jet.daughter(ind_j)); + if(!Part_j_){ + std::cout << i << " Bug PackedCandidate " << j << std::endl; + } + + trackinfo.buildTrackInfo(Part_i_,jetDir,jetRefTrackDir,pv); + const reco::TransientTrack it = trackinfo.getTTrack(); + trackinfo.buildTrackInfo(Part_j_,jetDir,jetRefTrackDir,pv); + const reco::TransientTrack tt = trackinfo.getTTrack(); + + trkpairinfo.buildTrackPairInfo(it,tt,vertices()->at(0),jet); + + pair_pca_distance_[counter] = trkpairinfo.pca_distance(); + pair_pca_significance_[counter] = trkpairinfo.pca_significance(); + + pair_pcaSeed_x1_[counter] = trkpairinfo.pcaSeed_x(); + pair_pcaSeed_y1_[counter] = trkpairinfo.pcaSeed_y(); + pair_pcaSeed_z1_[counter] = trkpairinfo.pcaSeed_z(); + + pair_pcaSeed_x2_[counter] = trkpairinfo.pcaTrack_x(); + pair_pcaSeed_y2_[counter] = trkpairinfo.pcaTrack_y(); + pair_pcaSeed_z2_[counter] = trkpairinfo.pcaTrack_z(); + + pair_pcaSeed_xerr1_[counter] = trkpairinfo.pcaSeed_xerr(); + pair_pcaSeed_yerr1_[counter] = trkpairinfo.pcaSeed_yerr(); + pair_pcaSeed_zerr1_[counter] = trkpairinfo.pcaSeed_zerr(); + + pair_pcaSeed_xerr2_[counter] = trkpairinfo.pcaTrack_xerr(); + pair_pcaSeed_yerr2_[counter] = trkpairinfo.pcaTrack_yerr(); + pair_pcaSeed_zerr2_[counter] = trkpairinfo.pcaTrack_zerr(); + + pair_dotprod1_[counter] = trkpairinfo.dotprodTrack(); + pair_dotprod2_[counter] = trkpairinfo.dotprodSeed(); + + pair_pca_dist1_[counter] = trkpairinfo.pcaSeed_dist(); + pair_pca_dist2_[counter] = trkpairinfo.pcaTrack_dist(); + + pair_dotprod12_2D_[counter] = trkpairinfo.dotprodTrackSeed2D(); + pair_dotprod12_2DV_[counter] = trkpairinfo.dotprodTrackSeed2DV(); + pair_dotprod12_3D_[counter] = trkpairinfo.dotprodTrackSeed3D(); + pair_dotprod12_3DV_[counter] = trkpairinfo.dotprodTrackSeed3DV(); + + pair_pca_jetAxis_dist_[counter] = trkpairinfo.pca_jetAxis_dist(); + pair_pca_jetAxis_dotprod_[counter] = trkpairinfo.pca_jetAxis_dotprod(); + pair_pca_jetAxis_dEta_[counter] = trkpairinfo.pca_jetAxis_dEta(); + pair_pca_jetAxis_dPhi_[counter] = trkpairinfo.pca_jetAxis_dPhi(); + + counter++; + } + } + nCpfpairs_ = counter; + n_Cpfpairs_ = counter; + + return true; //for making cuts +} + +float ntuple_pairwise::mindrsvpfcand(const pat::PackedCandidate* pfcand) { + + float mindr_ = jetradius_; + for (unsigned int i=0; isize(); ++i) { + if(!pfcand) continue; + //if(!svs.at(i)) continue; + float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); + if (tempdr_pdgId())==22) Npfcan_isGamma_[fillntupleentry] = 1; - Npfcan_CaloFrac_[fillntupleentry] = PackedCandidate_->caloFraction(); + //Npfcan_CaloFrac_[fillntupleentry] = PackedCandidate_->caloFraction(); Npfcan_HadFrac_[fillntupleentry] = PackedCandidate_->hcalFraction(); Npfcan_pdgID_[fillntupleentry] = pdgid_; diff --git a/test_ParTEdge/DeepNtuplizer.py b/test_ParTEdge/DeepNtuplizer.py new file mode 100644 index 00000000000..a26b8b37d21 --- /dev/null +++ b/test_ParTEdge/DeepNtuplizer.py @@ -0,0 +1,313 @@ + +import FWCore.ParameterSet.Config as cms + +import FWCore.ParameterSet.VarParsing as VarParsing +### parsing job options +import sys + +options = VarParsing.VarParsing() + +options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") +options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") +options.register('maxEvents',100001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") +options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") +options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") +options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") +options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") +options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") +options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") +options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") + + +import os +release=os.environ['CMSSW_VERSION'][6:] +print("Using release "+release) + + +options.register( + 'inputFiles','', + VarParsing.VarParsing.multiplicity.list, + VarParsing.VarParsing.varType.string, + "input files (default is the tt RelVal)" + ) + +if hasattr(sys, "argv"): + options.parseArguments() + + + +if options.puppi: + usePuppi = True +else: + usePuppi = False +process = cms.Process("DNNFiller") + +process.load("FWCore.MessageService.MessageLogger_cfi") +process.load("Configuration.EventContent.EventContent_cff") +process.load('Configuration.StandardSequences.Services_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') +from Configuration.AlCa.GlobalTag import GlobalTag +#'auto:run2_mc' +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') +#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') + +process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) + +process.load('FWCore.MessageService.MessageLogger_cfi') +process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery + +process.options = cms.untracked.PSet( + allowUnscheduled = cms.untracked.bool(True), + wantSummary=cms.untracked.bool(False) +) + + +process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input + + +if options.inputFiles: + process.source.fileNames = options.inputFiles + +if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': + process.load(options.inputScript) + +numberOfFiles = len(process.source.fileNames) +numberOfJobs = options.nJobs +jobNumber = options.job + + +process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] +if options.nJobs > 1: + print ("running over these files:") + print (process.source.fileNames) + +process.source.skipEvents = cms.untracked.uint32(options.skipEvents) +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32 (options.maxEvents) +) +releases = release.split("_") +if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'pfDeepCSVTagInfos', + 'pfParticleNetAK4TagInfos', +] +else : + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'deepNNTagInfos', + 'pfParticleNetAK4TagInfos', + ] + + +if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] +else : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepCSVJetTags:probcc', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] + +jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') + +from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection +if options.phase2: + usePuppi = True + +if usePuppi: + jet_collection = 'slimmedJetsPuppi' +else: + jet_collection = 'slimmedJets' + +updateJetCollection( + process, + labelName = "DeepFlavour", +# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' + jetSource = cms.InputTag(jet_collection), # 'ak4Jets' + jetCorrections = jetCorrectionsAK4, + pfCandidates = cms.InputTag('packedPFCandidates'), + pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), + svSource = cms.InputTag('slimmedSecondaryVertices'), + muSource = cms.InputTag('slimmedMuons'), + elSource = cms.InputTag('slimmedElectrons'), + btagInfos = bTagInfos, + btagDiscriminators = bTagDiscriminators, + explicitJTA = False +) + +if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): + process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) + process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) +else: + raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') + + +# QGLikelihood +process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") +process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") +process.load('RecoJets.JetProducers.QGTagger_cfi') +process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") +process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') + + +from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets +process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') + + ## Filter out neutrinos from packed GenParticles +process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) + ## Define GenJets +process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') + +process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + + +process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) + + +# Very Loose IVF SV collection +from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix +loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") +process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 + +process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") +process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 + + +outFileName = options.outputFile + '_' + str(options.job) + '.root' +print ('Using output file ' + outFileName) + +process.TFileService = cms.Service("TFileService", + fileName = cms.string(outFileName)) + +# DeepNtuplizer +process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") +process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') +process.deepntuplizer.bDiscriminators = bTagDiscriminators +process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') +process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") + +process.deepntuplizer.applySelection = cms.bool(options.selectJets) + +if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') + +if options.eta : + process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) + process.deepntuplizer.jetPtMin = cms.double(10.0) +else : + process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) + process.deepntuplizer.jetPtMin = cms.double(15.0) + +if options.phase2 : + process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) + +process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) + +#1631 +process.ProfilerService = cms.Service ( + "ProfilerService", + firstEvent = cms.untracked.int32(1631), + lastEvent = cms.untracked.int32(1641), + paths = cms.untracked.vstring('p') +) + +#Trick to make it work in 9_1_X +process.tsk = cms.Task() +for mod in process.producers_().values(): #.itervalues(): + process.tsk.add(mod) +for mod in process.filters_().values(): #.itervalues(): + process.tsk.add(mod) + +process.p = cms.Path( + process.QGTagger + process.genJetSequence* + process.deepntuplizer, + process.tsk + ) diff --git a/test_ParTEdge/ntuple_ttbar_had/ademoor.cc b/test_ParTEdge/ntuple_ttbar_had/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..2f7e593ffb4e91908c1157d6029fcfb3e3207766 GIT binary patch literal 5857 zcmai1byO7Ix*Zr`=uU@_l1>R}q$H#}B!nTPy99=zq*J=PQHCx7=|-e`Xb@=z5%B4K zzkA<}weCA>opsjP-}kM3*4h8;jgAKRvrzupAX#}WHEvnO-&c@@6~xim+3o+WqW@& zFZzE}i(pt4zo$z6bPyN(87+iirJ=#Fl8L)mNzjpAK5oi6#$y3@SeqLKfx|Tl>~f(Q zFO!FquW6AOOlQkXG~NBAWyE*x_{S#vmb2KwWL0wz^kbPC0BZUp{9cx(`t?0VAb@E$ znz5+GNy(|EuECF4KF=-N@(gyg@HTFA=2xDli29W&*>mODmGBDCn0qmEy|JDlzK99VmIJ|N}U6!ys{(58dulwqdc{yRa*SL>8J zXp7Rw1K;)?Nzp-rH_*CXz?q?@2$&X0yfHO|JW zIm^-0gLSJVlq`(hgq8 z>BANXO6AOS=TSWM*f`9nDxKo0+Bw*^mPU{!xQ5#q2uxp{JMN~qJeO9i-O!V}HttSv z4dy4y+Nw5FP$fYiw&1?;BMypP!zpS^olW_#7cjo9To|NLdbMub_7%1gwS%njC`;6? zNh3niC=(JX7G-AhBJ2J4%#|0Om?rYd-9NH_UU_KokS!&YjB8ou$e_beU0mS_IV6Z+B#L_YF*-|3WOssX}*EB-q0On zb_FtP9Z&@{pq+QzLtcE`6yvvJiPP!W%L;ITR9i^oo!bPVAx~==$_ehG1_Wn3p+d6G zKO}DQb@fzxu7Ad3?+QziCuNHfA zqpk?d9C3>sX;0hgdz0KC`Svu(^iFS6iSJb=)fCR!y0T@BU{67YAruioG?VH>&o5R~ zB-o*w-Is(?{im$zA-f24ws`T?5h8H18%oiw@p(mJXI1WzmRV|XDvB(BK85X=fW0+D z3!p8_a?;JAaep^cp+T9vp~bU8OGxwOTb_eJ!fIS}JM|(f_N zalkeUHj!BZP}*MuSRJ-pQT?LcrQs(j)Kl#>AbaP%3-n zlr3&0n8_tR^A*9nG}z};aXaIAi)t{+S&mzvMlnx`EFlf?oU z+;93JTXpaxo}!-8iYybSYtz5Q-3hC78=042-*kG5mz}LSh1Lh!cdulKL7$@SFtrN# z?rs};oky^15&FFmPh(0vi!5NwMAv135&B8p^-$R)MwU~tKP#D~`3t7cot^;96_K*}0n!E}4s6wEo z#zXOJ-DRpeKCI<>{bPocrK2ABdVr}jWz!m4s$z*kIG$gGB8A6tzN;$3gfF$in>wV^ z16h)O`SXfwS?+4vHxNK3C&lJy!a6mnYZEOjLkZX9J2UIcpu8;&f)hinbqzu@J=gWi z%=gp3n;UZFfZd0|y09yu{4yT@!X05^v3mKzUs^0Ud;W; zF@!ug`xvcN%%wJN9!$8~snSt#J{^q9=M^E}(ZLa0=R1mDKMr%I(LMQnetHO#B#oOK1Yo2R%5hsfzMvO z!3eAsWEU@4H1sd2eqHqhLuh2!T%Pc}FJ^NH$WYxchn zfCJinPUP%0a=ZUd7mBP!PfkxAn!qpq@kn3i-&~{Q*&d^dg>OJzhh%q9^YPi|Ps)f%b zOI6+!2+fs+*aK95lSsx|ZJsq+YG?k_MSlV-|MB$aJgqGx#;JN2e ze34FWegwg-FKq2tPA%rS<%F1LTe*gkxJ;gG3qi4GvHhdeChE6ou=QOE#z>wBYtwIHf(g)XGh5}-B3QwQgqGC-&JDv9|Ro-+YYWjYdA|{)oSIa^(>!5*CzB((o z3S)qbA7&kHx~mW>S-xv%iY+1_SwhM32TAlXq<%USf&K`jree?i=rQ-z67Evc^6@A{ zsT+iAbi>u7oO2#O`OEG7cSriC>EApj(8AjNHwvmQ-ue)@is?uFJ>Eg}%rN{2GQhPa;vm6!y=I{2=H~8ot*E{p+LtyHJ0s z|0WcMkDIfzht=-_KE&DG($Ss!UnDDb6KsT4fp)gzV^l@I{`y2!0saImd2#Kr+bFx` z#a#8jlD%&Jzl`uNl3`<8z_2lRVc4kuAsHht{T~da;1Mq+_^(%h|LqOGqr&j-sL=lp z`Otnxh34N;0p4OXktSiqobDBB20nOU7k2kNi-lMwuH_ZI7$LPNod}?VBrUG)q?^%) zXog&^D>@qyL?>n^9>f|8@7=`@)YF6IHT&y1g!YZ$C(@Bevd7Ch0b#!)Rpj!I6gnA% zX_Cl$2uyYu+jkx==cQaQRG#mj&+i|# z`P!81Z)mvDt;vElQU-YtQd@5&!I+!5XwZEf1q9j6Xx*)qnXhIk6>apjJ(GjP^2%Ax zEP5-$re5N~2qwNO()1J46f$&uj_dOdoE51JK(p_?yqrlXwX&9twF+ed5-p#42NXNk zxhsm1&?XP0m+>Qcbg~gUuL9~UeJvdNR=;n;gFr!&_kvVIJ3FD-P$hk5D1SmZ>^WCg z=^AdPY?h4AntL~!?RuwC!o)ot${r|Mefd6s-(DBu>KS#H$=Vs2LSyq;4g6K! z2nqZ3SZgE=`LbBDGnk##`Uj~f9*2A#oY@%cGKg%A&$zi{1?WhGA7MT<_cl&AtP5bY zovai*z*2^->}RKsf7c|Hdx{T>vs$|5Kha*=(ZTZPxR7Me)<(y66su_p1V=Xwa7%R*0p`s{& zBHylW&F}LJ4R9daijx&lVG6~J z;l6pxYnXODHp?M0FD85FxG=)ZQZ`~oB7hFz`d}ql z1o`!qdQhk3=y**Ii9vhs_3B>pUbB?M4NgFq$CE9VVVWSK1P_yf0BgSaC*4T`N_+Np zWg&Rc$jw;4^}a$o#yY!ECtUlpkKq#`!W{eNpBBzuIsc^euur{pS5KAwY5cM!pG4+D z${!DaoxJ&mVw*8;M#YJ$Q{Tfj{u3r;$4psP?&fo~3i>Eg$!%`kCjrs&s>55qbIZol z*H(x(4CDou!BbP1gq0E@EJ62E)NIslw=9_NLSNGd1T>jj?~M)e2VZi(Ez;XvMY4@3 zlvUzM`xOwL3gz+vR%1SFc;-P$SIU)^5B7~H<03bhdb&=r00+|@u9deX)StL1ctjN! z*|!!r*Dk;r;=tUD5}$Ws-^vqnA5@20qz1p=b?;lAZ>0>Tl`v&h;RhV0DY5-*Nj81N zn?6n09PTCOVwHEEc&#w;qk9?`A&C&W#}d%(a1IuMJY6xY92bdmXn$vla(K1tQm_r5 zpER%Z;P=ckRnSd)XYv8?XqHPKF#yj<3DwC;x@oXGnir%3Z&JCUEi2F>jv$d#EObzL z6cD*JX&_cXa8FRzt_SDmrg^~`xjs8+McZUXL!z-ghp)jL8nHF@1uX?|#w-A4y)v9! z-lA{q>P5Y|p^TB>GFJ4xD0G9AD;7TCW-XGDWa`kv>9UV*^YmBiYa#6w{AR22KtKi~ z4kvy5MLy^VMsDRJsuy@q@{!vbaLMH>R03^%fk``lDPO+9bt`!0^x3@i`iYt2S;}Gp zF(BT7&W8p)&6oZ#Rfv6`W$n5wS+LpVdM-m;F)JhUhKqNc8v|I-HzN8oJ^qEyQ!v?# zm{&8{k;b-jMZx;ZV-vqGW3viq{eTKg!KIkvm4TdUc0G$hvo9xMMdBIpOzOiESS0(Hw%x^D3FrR{-jDs&d^=7!{xHwGZ+UM>`WSUQDVu94nw; zpXRRXiPI@O&8ZQtvb$(|dYdJDmg>A%tfy(Y!9W%mFaw;NF!LPIG(Gl=>g9@VJhRU} zB&KrZ9jFmK!ka%C=W%Gu@r;egb~$%KnGy4qiy_G8>r_|Gm@D5jvu!sXo+STrMHtht z`>Ff|J7=Vvs0Rt+(6{(qD$x}|07BEOuzji14Dqsk zeg~~Xrpnm{6XiAOeS@diUM)j(UVWkvvG!Ur*bL=bCEIK(%>0s%+YI3p0XB_GQs)(X zwHyr^XRcS~P-Gp({A6xi@Hh&L&QT$=Z~uMpyMGN*CIf!L>3_TjOnRx{__>jhql&pB zxBQGqaG~}bm}ay^h~RNSwSUV7T+!XbXqdsOcxu^M+vguq`r$pr2JbOvq-9T6BVR*R z;p?Y0Zx7H*K^P)mG#-au??sLfsc{PhOEA1?a?F!^v(|^4P)b`k6?QmJK~YI?;G~$x zjjnkvzOuV=1YbAM`6>X5=E;+}iLix|?axvrG0(d>NWSIg^4=}F zsh=^~W{ShgA~D`!)3q~_fc>brPU-6uRH&i07OScoh+AsqL)lFK_!3-du%eCCs62Q+|^37R}W$e%bSFC0&{;o;p4gk z>sj`rq+TRON9hwfRbS{y7rA7$zoGF{F0}}fT);BbW|O@zsUU?c{brpqZ_ThQ2MCu_ ze*!2Vs2Xb-nxZC6uRLz6FB&gHKm2x73v2pRHMu5favpq~ZHwxEaAY*tq}QcO*~YKw zaqJgP+^gLo{KEWwb2Oc|Z%}_T*KPi+9^Wv>G7b19qUtMNf+qUvYwDqHGbW+b-N6#* z_*A4S9CsMUGjovUCs4XmIg+3gxD9=_YBc|V=KncckbvqNgZD!3Yaz-vX>1_|j5=Wr zpUHW!i`o`s8LhLqi$j%cmyE~vW;AgHLa&@=>aLv4JL=gexLhnr?D4+SOTK-eJ{_n1 H<52$xKi{l# literal 0 HcmV?d00001 diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub new file mode 100644 index 00000000000..ba1d981528a --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub new file mode 100644 index 00000000000..ace51ce3051 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub new file mode 100644 index 00000000000..dfba8c63979 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub new file mode 100644 index 00000000000..2977b31addb --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub new file mode 100644 index 00000000000..ed6e9494e47 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 b/test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh new file mode 100755 index 00000000000..e298979f23f --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh new file mode 100755 index 00000000000..4eeb3cf7d07 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh new file mode 100755 index 00000000000..0d0c9f68ba9 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh new file mode 100755 index 00000000000..c1b606f8e87 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh new file mode 100755 index 00000000000..9e470fd4387 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batchscript.sh b/test_ParTEdge/ntuple_ttbar_had/batchscript.sh new file mode 100755 index 00000000000..9c4e1fb4cb3 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_ttbar_had" +cd /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/condor.sub b/test_ParTEdge/ntuple_ttbar_had/condor.sub new file mode 100644 index 00000000000..8e9fc48039c --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 15000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 5 + \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/helper b/test_ParTEdge/ntuple_ttbar_had/helper new file mode 120000 index 00000000000..8da80a583a1 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/helper @@ -0,0 +1 @@ +/tmp/ademoor/18774/ntuple_ttbar_had/batch/ \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/output b/test_ParTEdge/ntuple_ttbar_had/output new file mode 120000 index 00000000000..cc603bd28d6 --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/sge_sub.sh b/test_ParTEdge/ntuple_ttbar_had/sge_sub.sh new file mode 100755 index 00000000000..bd265cfb0aa --- /dev/null +++ b/test_ParTEdge/ntuple_ttbar_had/sge_sub.sh @@ -0,0 +1,5 @@ +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh diff --git a/test_ParTEdge_small/DeepNtuplizer.py b/test_ParTEdge_small/DeepNtuplizer.py new file mode 100644 index 00000000000..d2f66986fdf --- /dev/null +++ b/test_ParTEdge_small/DeepNtuplizer.py @@ -0,0 +1,313 @@ + +import FWCore.ParameterSet.Config as cms + +import FWCore.ParameterSet.VarParsing as VarParsing +### parsing job options +import sys + +options = VarParsing.VarParsing() + +options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") +options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") +options.register('maxEvents',5001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") +options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") +options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") +options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") +options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") +options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") +options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") +options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") + + +import os +release=os.environ['CMSSW_VERSION'][6:] +print("Using release "+release) + + +options.register( + 'inputFiles','', + VarParsing.VarParsing.multiplicity.list, + VarParsing.VarParsing.varType.string, + "input files (default is the tt RelVal)" + ) + +if hasattr(sys, "argv"): + options.parseArguments() + + + +if options.puppi: + usePuppi = True +else: + usePuppi = False +process = cms.Process("DNNFiller") + +process.load("FWCore.MessageService.MessageLogger_cfi") +process.load("Configuration.EventContent.EventContent_cff") +process.load('Configuration.StandardSequences.Services_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') +from Configuration.AlCa.GlobalTag import GlobalTag +#'auto:run2_mc' +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') +#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') + +process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) + +process.load('FWCore.MessageService.MessageLogger_cfi') +process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery + +process.options = cms.untracked.PSet( + allowUnscheduled = cms.untracked.bool(True), + wantSummary=cms.untracked.bool(False) +) + + +process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input + + +if options.inputFiles: + process.source.fileNames = options.inputFiles + +if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': + process.load(options.inputScript) + +numberOfFiles = len(process.source.fileNames) +numberOfJobs = options.nJobs +jobNumber = options.job + + +process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] +if options.nJobs > 1: + print ("running over these files:") + print (process.source.fileNames) + +process.source.skipEvents = cms.untracked.uint32(options.skipEvents) +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32 (options.maxEvents) +) +releases = release.split("_") +if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'pfDeepCSVTagInfos', + 'pfParticleNetAK4TagInfos', +] +else : + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'deepNNTagInfos', + 'pfParticleNetAK4TagInfos', + ] + + +if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] +else : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepCSVJetTags:probcc', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] + +jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') + +from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection +if options.phase2: + usePuppi = True + +if usePuppi: + jet_collection = 'slimmedJetsPuppi' +else: + jet_collection = 'slimmedJets' + +updateJetCollection( + process, + labelName = "DeepFlavour", +# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' + jetSource = cms.InputTag(jet_collection), # 'ak4Jets' + jetCorrections = jetCorrectionsAK4, + pfCandidates = cms.InputTag('packedPFCandidates'), + pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), + svSource = cms.InputTag('slimmedSecondaryVertices'), + muSource = cms.InputTag('slimmedMuons'), + elSource = cms.InputTag('slimmedElectrons'), + btagInfos = bTagInfos, + btagDiscriminators = bTagDiscriminators, + explicitJTA = False +) + +if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): + process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) + process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) +else: + raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') + + +# QGLikelihood +process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") +process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") +process.load('RecoJets.JetProducers.QGTagger_cfi') +process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") +process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') + + +from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets +process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') + + ## Filter out neutrinos from packed GenParticles +process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) + ## Define GenJets +process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') + +process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + + +process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) + + +# Very Loose IVF SV collection +from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix +loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") +process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 + +process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") +process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 + + +outFileName = options.outputFile + '_' + str(options.job) + '.root' +print ('Using output file ' + outFileName) + +process.TFileService = cms.Service("TFileService", + fileName = cms.string(outFileName)) + +# DeepNtuplizer +process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") +process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') +process.deepntuplizer.bDiscriminators = bTagDiscriminators +process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') +process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") + +process.deepntuplizer.applySelection = cms.bool(options.selectJets) + +if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') + +if options.eta : + process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) + process.deepntuplizer.jetPtMin = cms.double(10.0) +else : + process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) + process.deepntuplizer.jetPtMin = cms.double(15.0) + +if options.phase2 : + process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) + +process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) + +#1631 +process.ProfilerService = cms.Service ( + "ProfilerService", + firstEvent = cms.untracked.int32(1631), + lastEvent = cms.untracked.int32(1641), + paths = cms.untracked.vstring('p') +) + +#Trick to make it work in 9_1_X +process.tsk = cms.Task() +for mod in process.producers_().values(): #.itervalues(): + process.tsk.add(mod) +for mod in process.filters_().values(): #.itervalues(): + process.tsk.add(mod) + +process.p = cms.Path( + process.QGTagger + process.genJetSequence* + process.deepntuplizer, + process.tsk + ) diff --git a/test_ParTEdge_small/ntuple_ttbar_had/ademoor.cc b/test_ParTEdge_small/ntuple_ttbar_had/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..b4b91754aa82b3c9754ced905f2184db39c5eae2 GIT binary patch literal 5857 zcmai1bySq^x*fW^1w=p^X~Dsv2PC9hkes2UJET(@>24$kVE}2QI|PUB5*Xs{Y^_wzh!KkM87?2Uy9_;b+yx;S$3T55c9ioc&Y<`AfZlauTJTSfof z@#p^2EcP2$3wLYxe+J2aKOT*^<6hTKtTgs<<`9RxIq&!oq(Ja}t(y^c{18`%#B&Mq zif9&M!~ujDN5COwrFsD8!rx>6ICxv;A$V&7A$Us#80ctNg?RLT=PY6nc<={9FQgD4 zqyLNkAJyUzyo%pbrGGle3;&E3h2W)QhTtWWcXCo-p*+1^m2-{8{BQ9#)(ZoMYZSP_ zVVN(Jhm@}#qOc#IE5&{)V4fgem&H4DW$l&t}vXFMS8;b^K~`^Jg^ zc#Mc)EpB#Ha;&Ls@MV+Fcg?Xp4MEPojUS!4&-VbTUz$+KC?l35x_NuUNqLhkpCTKQ zrnN>;Yt#th8KtV0UW3!E%rroBH>-kF*T`Va|DdGv_b$)XskmrTXR*G9H=+Y(9>R7 zu<%eB@#gNAn$mqzzVZ7dvXpnA>w7+b*xHCun(WHKpd?y{dj+e%Ntr%UsnzEdAW1&Z z=|g8PSqSlFb43w>>H^cMqI&e<3wXPet)M+;&(24bJeR^A^#taZ;92Dm6EDA=z~sv{ z+8xXVY1FF<%C2S4zh_=z<2z6*M~Clsby9D+P(Z`pQv^L=%rIuTrmzmIpu!UcuTa6UT@V<+tH&2(o~Qvgcomb3L&Fd3ToE z=;w3$@I?aCc(dI26;IsP4>GIDrk+&o>~C91Z&D_@MA#aLe7QVx*iCVkkyeDQ>w&L~ zJ}0^a3sGfnRhufPQfzK+!F>`&>=iqQQ`8=JG!t!)@?-=22R<&Ci(>rh=X0@_C$GQ%3#R5o)W2 zhL>Oww#}3rIBN&tpp65|$+BOxA-l(0F0X4I2c$vAEEo%eZqD{lp=F$(Ufd&J z=f>9L#qxEUwLWwv#mYF!YgiA10-7{B9e z*)i>Bbq26$?bG=;V4k(#L0{BuJQuR%h}UWVmhJBhtu~j)KeGmaXk!QcdBswKGTVRfsT-VJJ;xAmgO^ zkj(kAiUfDi#^(!Css0mA_0Zi-EUpC5$_N>KvMXBgjnP>}Qb$!DQp+^0Bn?eYsDQ?1 zOyrFfR12Uj$8r3bN8|2xrb2@@d0mTt`5`Ie^!I#wk;Ikwm^Ow5PJD!#Hc60IVS(<> zH-2di%G~Oy<#!w&Bs7)sMAAyi*_oezG%g0|Y%2dTV_oNY)}StRmjh+vSUFzB{_JFqPt&;Gx3-$~ zYA#v0sKE&u+S7EGf!LRs$ytsHY3k*KV%iojww?j=7C%`d^r|QiHswv;#LMzzB|azO zZoOYE_h}LmBMoqlQM059)ntlTi{BS&n><`PhNbA&D&EqxGVZFKxUdJZc-rgOAdFf4 zoMU-^L9V{WHZ?(qcJ@l6c>>iOdZ9DAfGx%jOKM|WI9rWn01|D~$Y*^t-RV>noB?tj&Qur?_NFWlP99{XYY>*@ zv8MmQY%k-;%w2s9SCA@8_zctXCg8#fLjY%g ziXm`|OsOrfwAsWi(lU*A#QcU~iJ=z_CV}JLcB76=c01~3T7e2~Y+v}|Yfv_GOd6V2 z(D5x?4i(adNoZDRKOW*l%jZ|g7vw^= zLqc5@*3sRlj;^uP8k5Yua+zx{$_Vzac~VL}N_i2EildCl$xwGR>Ad;PX~6W1v39Nl%VoW;tk%s8Q!ja>4m_ zLWm#${5*)^J>Uf=c_|0yRVy*nPV)?4Uy9XNv!zi>uf_bj%aRXLPAV6S@}wy0vq79ANjlP5jvi`^K)V5x4dGU7a4LS8@{vVozEPTqF2 z2+~i-w?Nx79Krq6UFbWRqltX%9)CAXke$L#Kb07;t_P?;O9w04%kqg^vBLOOrtTO2 zqs7pF|KT1l3UP(n?!VOyLcy?-Gt!18h)aGv(APOWfnTjlxpcqXl|A2mbfIu4YO8zf zz_qm*uQM<|x-}+R`xw&?%nBm1_X%}aFHzH8K}6{K*>9 zEa;rAs_%gz<@+V`E0`HH2W`r0u0`><-2&0pM#*+hhHRdi$T8KGb>Aq_cqS`hzIROY z_-0>no?v8s;OfgTK%7p|iHr?8-c*d^S@&Y)b$gPg&&Mfps##{WY)sR3MmX*3 z)56Pe7U=jv_Q8gm3aOH1R6|o-F$u*YTDBjKL?269*8wo-M*ssIcV3{m;;b7^xO zGF0g^4&ke7j{Gc`O$C(F@CSzq`S34AD-7SsgJ{}Wr}5*z+}?k8q<@ExL8O4>(b;;xR$irdvb-&|1_MXfARnA zgGO&2f<_|{f=2NlhLcW!<_`uaBo!d0|HDoHcjn^Y9f9D@e|SxtqF@AO@N~0Abg0G$ z4p-#Hkmv{oV|AhL3TfnlsGs;lhlf+};Erl{EiXFz7;dB&<7C+Iz~so5)L=i=oC@(O zG#LIlnwAI7ZQ{v13(o@@l&hsuPpq=>GP0UJP9<4l6-~JIZA|5_eK7o!S`}Akj?XLL z;N1nCH1vQb?pA(5X=+$_J;f`H`U#}rHW)a`Q;UWEQjIIz@L`OiHz{#gPZ4?)o(lRj ziPoji?pVM9Db~AYfo@-cS`9baHTeW^*o*9dui=|#?Hpe-{@-@^9TkRu zM}_`>$cOnmDt!7K72t@YJ^@z^yQh^?$;vuU7a7e{cX8A~Y`I+%AB*FajF`|WDfZ;< zXIOLQMb^4AH_>|>szq7f^F=*8mZo5l)ZZuB7&7)R&7`w5ic<915hvhjMiXr;$Y=uT zlsqz5an$q@o2HS*sSJH?y_r4l$18g?Z-bbK3g3BUYp@V;PKk{#ToikREK*M{|74Gc zJoSm_l<@vF#_G=$h!{(HL(=GhEAw&l%vfmlBPq&grt*{pCcQ+b1CD}m z!hLMtXy&VZ^e*S!g{#vdENN&BrymrK@tp#V3SIJsJsaNX)AkWmnFieTKDc32zwi)4 zU)3CDYV3SDF8G!GZ#Lg$J8`@WBWm6$>Z>$-8 zumiGJus%JAyY;BqiyLhT1723$?F%mQ}?k2@u-B-KB-RmOP+3BiG591o9cQGpzYB>zR<_S z-kbIKdptfC^wpz_m-?ddr7Q8?O`07A1zS#*dUBzc(KFdV-bY24#2sa zSHU|vHJP(f08ohr=zJFcEpLyhy9}F3Z>* zQGLL={ipIB^&#Knz@4M-XJ5`yj+?*OG$vnaoXD;oC{RkqG_lW+jS}EW`tf7&EUj-% z@$FYxl;^_INI&w(z?u|u;;BRNKr3(p$(EN5QvMxUl+v$xk1c>)Bk zuFt9lymqCaLJzrb!`!eHnYl<)2tAaZwC{R1{`g5z8og<57akOy6jAB5R>MV!>tmj0 zjK*$kd$T$4p0xOw`qN;6K05B!5m_}LVNLO+%F(qQ`1=owu zia)Q zlFS{_B>k=#mt?ln$TF(wfbhs@`9)!2R9xND?E_hQp4b$bb$=&Q?ut0`#_}&yuczBUr2R#=DCjW!pVj`87WBz0_H2}kBOSSN{lMWXIozX!ff?PV=E94#GkFR6!WQD)4v z+6p4pK~lkh?dtk5iLmKTh>4wg1kYU=8|Y)Vj%iS#rC`6vqS}|?xweW9Yq8^FRVThY zLNI=qEEd^G-SS$l{I_6}uC5Ny&T6|})bvNu_hA3%9)}H&_tM6C=T*sg+vyqZQS zJBxXt?3nhG&ha@wA{iUQz1GIDc`vxD{-Xmds(zUQQrzQZ zQ+|trh@w-7=Z>h9Jx^h0jJjA-v>SV+Thtfp`g2?+!PWycxm&LBKo*=xG!l`%`KUSX z(_cd81dc|xw^U@RBaQPPmnISi49AiS5)P{?tTD;h@^ZUV6nHW=Y#h6>ppvv@v8W4E zZE8EuOMiAh%|r(>wKcK5jd_0yt2gZZY3O)|wy0?eRk9>(2Joe4Huk zMD2np4sa|zb~q<`LCznH`K%3b$(*iI)@s263Q^C0jn+h@qVRgcs-WRjQ#6a6`f0e? zo2Mp(EFK+&Yr5e$X{m767imGAD1x)x1{ql%Dqqx-TL&e&>>r}$%Z3?58(RdK>dD8{ z#BxK=F&~JZ;-4uV8nD}n=Ma%6Y}Q5^|VOcMBn+(H$#Pg|Mgbz9{7Ulp^d}R>D;t`Rr3n z%Td4|0xod)+$IGVcrdlKk_ya1-Oc72zlm)EGLhk~`+A*i9@j6gbb{__!}!XiGlR}J!rAj|hzWH^|vTd$+PKrpUpCaE&s%)?^(QD1^otOeYh2u873 z_`xO6I$vwtBO_L|{K4J~zx#j(Af2?qPv_9oVAZ@5zdkbP$4ELkiDKlE>-ta*xbp#` z1+~?(YT|P&S~Q?;<98~GZ??8qu?pIXLuSgRbEn7FR7F2u7h%C@nH(Ahe(SaXHZX=g zy}EbFg$MD1hg-Hu7&ypb9}~kCCHD8h-fhhN#eTy|Ax`3Pbf+!y(Xe+LW4+Ibp2SSX z=Rv-QS@A4$3Q<5kSv82Cq;fu9i9MoTs5KliAzDRV<{E8CN~+5om)5mnzBMgZ{lW=H zljIRjXl-&GJBc6yq@k~pyuO@esU9`iex{v=GZjfDsf_$2?b0kJUQyV3+*)o721$X+G{?Ep`z4)w$xtBfLvh57-Rkt4Fe@7h4=7`yjdBG?0ldq0ggS*j*4 L4-a8~9P0l7`cBn$ literal 0 HcmV?d00001 diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# b/test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# new file mode 100644 index 00000000000..f5fafc77f1e --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# @@ -0,0 +1,1748 @@ +JOBSUB::RUN job running +/cvmfs/cms.cern.ch/slc7_amd64_gcc700/cms/cmssw/CMSSW_10_6_30/bin/slc7_amd64_gcc700/cmsRun +/pool/condor/dir_265802 +Using release 10_6_30 +running over these files: +cms.untracked.vstring( ( + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F8EF0B3D-31D7-9E45-B50B-166D567BDA97.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3415E9A2-C86A-D241-AD8E-4E1D3031A0C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/25D8AE62-9290-FB47-97E2-854AD135CDF9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/37983382-27EA-714A-865B-67BBE97435A6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4BA006A7-D623-B745-AB14-CED343D79CD0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/93BACA19-F896-2D4E-89C2-225422B3FA16.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/76FAEA84-E853-164E-8D86-22232B0EC975.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B001D3F1-F308-1648-A813-BE91A319695E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/04EE97E4-FB63-C74B-9694-3EAB8D898A77.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D7218C05-478A-1A41-BFA0-EF21591F9E14.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/20134C5D-F473-3B49-B550-58B35854AC8E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EBB28D04-5C40-6B46-ACF3-90B11B516C0F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/167173B4-FAAD-644F-BD16-A110C0C1B1B1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C61BBC9A-E56A-9341-AF1F-F68D3586D8A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5FF872D8-D6D9-9243-8456-CD4207C755E0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/BFB83DD3-DF0D-7D40-8534-F497F2F57B7D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/8BA04A2B-41BD-5B4E-B941-198033C916EF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F9F3B8F2-4C8F-E94B-937E-4AD5E913342E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DE29D5D1-9BE4-3B41-BBAC-889A1887D6C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DDF882B9-93FB-FF41-8EEB-633F4956E708.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3209B4EB-FADE-6846-B9C0-EB7E75892BF1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4EF94842-8073-E04A-A7AF-6E1BDE216924.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B188232F-CE74-3840-B21D-944D1D56B878.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AC6AC631-D4BF-8F4D-9ED6-DC61ACC7AE94.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8AB21B4F-2520-7C43-955E-CD00ED90B111.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/40D07783-9A5B-B946-872B-ADDF3A57EA70.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/62C4BDA1-58E1-2E4A-AC5A-923D46FD1190.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/93C21B5E-D793-CC42-8E21-A89EB9832CC9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/349A83EE-C309-D645-BBD7-1554FA0FE561.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E5D1D63C-BF27-6041-BBA8-AF97F82EAF08.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/22967C4F-AEEF-F740-B4FD-DCD770B5C254.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/55A3845E-A88B-144B-A864-7E244AA265EB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/46C0F206-F436-794E-8055-E0573B1E0A26.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/22FC3156-5370-0742-83DB-7FC7C119302B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7A209E68-B308-8D4F-B88B-8AAC69F8FB97.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6F6F7A3D-39B9-D546-B25D-824154C523F1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/975C41AC-070E-8C41-A72A-F45A2FBD0C2C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E761F248-53CB-BC4F-8631-ED12C14D3255.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EF6AF06A-D7C0-044B-8387-49E76164AC3B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F187B028-2887-D54E-ABAE-14FB3B151B1E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D2F747AF-6D5D-8E40-BD26-FE4B848EF4E4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A3A81FE1-F70D-9942-A8F0-FA79FBBFED69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AD383CDC-16F7-344A-AA7F-78CEECB77DD9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/22F98CCD-D88E-6247-A07E-FAD0150489CC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C88C15A2-37F8-0F43-B8EC-2416541A097F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FF96B399-1828-0041-83A7-15274383F48F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/551DDB2F-D5EF-2F4F-8646-B3AE890C07FA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A8DA8942-FD3C-7643-A8C1-1508EB083863.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D98B3689-9691-2E43-B164-7D1131C55FAE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1BF06623-0AD3-BC4B-90DE-EBFF447C24F3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/14406A87-0047-C143-9D04-1A4121C6BC9B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D3670638-3E81-4941-A091-015C503B2D7E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/62CDE87C-82ED-6346-BC21-456D0108BDD8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2191CF6A-5406-E74F-A488-42C15DB581DE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/62D07772-933B-F54C-994A-BBFBAD810A67.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/3F3D4E4E-6FE3-2645-9C35-A7C93106C311.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/9359A925-4E0A-5940-B765-B55D6E089784.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/0BFAAFD0-B0A2-4E4F-8CF1-8A89E512610B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7CCD6FD2-EAA6-BD48-9177-C22D0C6CA4CF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B5589314-263A-8345-8E08-F2147C011117.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EA5E2F6A-268B-C84F-A14F-79856C6F3B35.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2F7036F7-D2A6-E84E-B4AA-920AC365DFF5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D4F03A0C-66EF-1447-88A6-825A56F20A7B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/74F41B63-6031-884A-ADD5-F6F9CD7411EB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BA882125-5E35-254C-83EC-A1F0B192D42F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/736B56FB-DCD6-5243-9A0C-F8DA023B9D59.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FA244E88-8A92-3440-BF49-D62868B45246.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/345752ED-7E1A-C642-9B68-833A6AD6E3F7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1B27E34D-DED2-3D44-8831-365CAB475E40.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2DD15DC2-0A6B-3D41-BE97-4E045ADE5789.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5D16087C-50B0-154E-A22E-0C962E898239.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2DADAAE3-AFDF-5A4A-B2C7-8F8D917C4212.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/576DF2D1-3EC7-2446-956A-EF0AF3639465.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CF768375-E14B-7D4A-905A-633FEFCC7D76.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/211449BE-07C8-0D44-8E22-771D6C77F0AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9DD27F38-46E4-DC48-91C1-CD59CA9AFCDA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/CB7F36AB-AE63-054D-A5BE-0C2543037F8A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4A0F8595-2CAD-9E48-94FD-94D5367C4C29.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/39D3C911-C1E6-0142-928E-3044C372C294.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B3D9BA34-731E-A449-B610-5705E364DBAE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C3FFCD46-F36D-824D-9690-7C5D424F7F29.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/15017D09-ADB0-8B49-80FE-07AF4C3E00D3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/71EB7C14-3A9D-CE4D-BD25-15BD11AC2753.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2CD39A76-CAF8-D04A-A959-D5E10057796A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E4F719D5-F357-8741-BBB7-9F65C74D1DA3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DF7D68A5-792D-5844-BD36-901B8AE30DF5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A18C8A93-DCCF-0C43-9256-F94B790D61A9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9350973C-56B8-C244-91E6-C0F83A8108B3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/93372B2E-9E46-664E-8316-72A7950237F6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/84F25E17-632B-6445-B627-242BDD93018F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/883BC781-1288-3942-B76F-048EBD22680A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9BE12F8C-57D5-3B44-A119-DB2E187E458F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/12A8DC95-A51E-AE4E-8024-61D61E80A372.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DDE61B81-6742-4542-BFEB-FE38959372D6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3A6040B3-57E4-F243-996D-4E94EE2219E9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1478C821-5247-2743-8205-E8734DD269CF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D5584BFE-0E4E-3043-AC02-5922D3C06259.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7FC386EB-CA62-0548-ADE6-4E88C3DEF422.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C911AA40-9817-4F4B-AB19-B93885B76CCE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/9A04E7C8-B9AF-F44C-9684-CCF27B265F6C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/7C19BD87-7901-1749-BF29-F27191149C2F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/FC727BD7-6F26-894A-A580-518AAA0184B2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/096C79EF-2BBA-7541-A0E9-FBED488866E5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/DF75F413-7284-D843-9D41-16ED1B555E98.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A7C04A99-2D87-DA44-9D86-31859A71CAA1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A2E030FC-032C-A847-9271-A39EC678CB5A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3CA58C61-7ED0-8E4B-B700-7E7908452059.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1633ECEF-5128-DE4F-9743-36175D16E501.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/52ECF716-42EA-A146-84BF-7E00A1C7BD3C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/BFDB8263-6124-914C-93A5-71DD9571A67D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/66D7A0D4-8C21-F049-B59F-D1A270177E60.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B4EF9D2D-A52D-4845-A184-C2399BD765E5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F9B714E7-C857-1D44-8B26-A65276F214EF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CA3E0925-E9FC-0249-ADC7-4106A17B8DCB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D3FAF26E-4EAC-5148-AF12-3A261469843D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CD79677E-8CE4-9447-B3CE-5287F687853F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7DB981B7-E2E6-9942-A3AB-FA79855FED21.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/C59ADDE6-8358-2043-89CB-80D12FEB95D2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/3B7337CA-7A49-4A48-954B-EFC4ADD760C7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/56CA5136-208E-DB44-A9AF-A5FC80AFF84B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A90BA744-AD1D-4D40-BBE8-D190ABB3F537.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/21B0A5F9-89F9-3842-A0E3-D3A8A4064D83.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/3E65D4E4-9A4A-6C48-A88B-ECCFE90E1EFF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/34531E19-98B9-E44C-8BAF-E00F693886E3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/188B5377-B327-1247-85DF-1FBBBEC7BD28.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E3D3281C-AEA7-8F4F-A63D-9518A5F0AA60.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/689857DD-B287-C94D-AB3D-52F92F851754.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4B6241D8-EDB4-A347-B20B-896FBD574938.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/563BEE6E-CF60-B940-A2AA-71008B4D2BCB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7B741255-F914-E64A-8CFD-10A66CCB095C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B2F3F422-4D01-824C-8AA0-EBDD979E0A26.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/5E6E3F0B-9AE7-E543-A44F-04157CB7609D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/3BED0C18-19BD-A147-99A1-F6B8B285C16F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/767D8BB4-5B9D-D743-84C7-8782250E42DD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/4D76D5CE-B49D-8D43-B106-1BEA75A29C69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2212E175-B2EA-B647-A66D-91E1E5650843.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F6FAE3A9-717D-194D-BF2C-276EA17D3AC9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7DE35218-1072-5E4D-994F-92C2E1DA6F12.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/780E7309-0021-FD46-91D8-D2A0AEC994F3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9C0B4ED0-7F94-DF46-9679-6CB31D96B37A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FADEC613-060B-784D-8389-066D211DC795.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FC2103BA-47E1-3F44-9E5B-D05AE7EB162B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/467148AC-CAFA-874B-BFA9-F7F49C2967F9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9407A270-EDCA-C641-AE68-2DAFBA55033F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/35714466-9239-AB42-B03C-2E0B698A8FC4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2D37447C-2D66-354E-888A-96673BFCBC63.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/48E51B44-D4DC-0843-8CFF-7D3884130B97.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EAB474A4-12CC-C64E-882E-B69BB49FB0B1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7124EBC5-0887-4247-ABA5-2D8B2301906F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F69F7673-E4CF-C740-B95A-C754272ECD44.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CECA6068-378C-164F-B8E2-D1C2714C98C5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8E47A06E-0A41-2F46-B1DA-500E596307DD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/08910AEE-EA00-2D4A-B71D-7720E74FA411.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E15EBE53-AB8E-DA4E-82B3-AD4750843BE7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A419E98D-DB58-D34C-B249-F6AF0FB67226.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3D7BC75A-F339-2549-8DB7-300D36E48D0E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D932215B-A127-6E44-B512-C75F08053E53.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8A2DE90C-D877-284B-8C76-66520ABA0DB5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2BB83818-C845-4E4F-B36C-13F09272DA51.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FA32E39F-F742-B342-8721-A5D5A308B08E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1B8EACEF-994B-F445-BF62-BEDD0E20B09F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/80E00B6B-5F9D-1E47-84F7-0B92E0AFA22A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/007AD102-123F-C048-9A6C-DECE2EE9D455.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/045C5879-FFFA-DA48-9FF4-60C2A0AA3BF6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/CD5E3F2B-7B97-C543-80EF-855017962174.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/EC9CDFBF-F941-354E-9CEA-7E8714600FE2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/FA4C37A4-9CEA-2547-86F6-98F047C7EF08.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2E2B007A-25EE-4241-976E-8ED6FA6AAA44.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6748334B-23C7-3743-A659-E57349BED528.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F9B1A80A-07AC-EA4D-BD21-8F78446959EA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7DFDE5B6-B839-D549-9A20-F8399622920F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F9D53F42-B1ED-7647-9063-3AF81393EFF3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D5C93A16-5B33-1949-92B1-876D82A00EC9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/16A3682E-1A09-F746-A0D2-8DAADA12C5F2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/30A6627B-1752-DB48-82DB-E880A128AD93.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/02F9EAC8-79E3-4541-922E-58E931864E72.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F3AAB51F-58F7-BA4D-B09B-419DDFF2E5B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CF8DB6A1-767F-E14B-B866-328A8BF1F09F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/05F137FB-85BE-C54D-9F90-8BB87E26B7D0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E76C7AB8-132D-2040-8039-42904A9D0F64.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F3DC0328-8C7B-DE4A-84C7-BAA5AAFE6143.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F6495DB9-1139-5940-8EDD-2D75A6C24DC5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B210CD75-A929-5043-85B7-13B2DC9FA0AC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/566402C2-F4A3-9F45-82F8-C6A587BA9217.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/902CFF5F-E4AE-C747-9666-EC5E985EEE1E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/636C3E62-91DC-CD47-9176-BA297AD9B11E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/64777609-3796-8A4C-AC59-696D5E4C8560.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/381104BE-B915-3743-B414-415A6C92AC00.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/60B69C71-48C9-B141-8412-F11453B37622.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0EAEEAD1-3409-D34C-AA33-EDB02B6905C6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5A98D351-82EA-7347-894F-E4B0E1ED492D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/9B549D38-52A2-F144-ADD7-387847243EF9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F0333309-DE0B-D449-8F3E-A7839FEE5D79.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5869777D-1B81-3B43-939F-32FAD93279DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/05EC657A-52DD-1C46-B4D6-27F9B4C91940.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/33D5CFEF-7175-7F48-8E69-29132CED954C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C8B3C54B-44E7-C548-AF54-B1AE6C802540.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E033AF59-7587-324D-BF32-9227F6BD86FE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/AD65A79C-FED7-9247-A360-ECE6E15343D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B0307F8E-EBCB-C54F-BDA4-E9A434A3AA44.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/07AC897D-5162-1C46-A6B7-BAC0CD4D42BA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BA8AAD0F-AB12-5944-8EC9-7535B134AF07.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B7FCA044-297B-3F44-AC5E-DCF4F0654B9D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/030A1F79-08E9-8146-B7B3-643C33B5344D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E033C80B-68A8-0F40-8666-6E2A5FC67C7F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/173158CE-FA59-EC4E-AF71-34195BF10805.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3E28387D-9B4A-EE41-B5AC-49932973CB69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BEEE6D47-8282-2441-8D9B-CE5FF072A513.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/731C19B5-71CE-E74D-A1C6-864A29AA45D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/055EA6A2-6F84-2C40-9C58-4D9B5608CC4C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C55821AE-5FF4-314B-AFC5-0484C7C23708.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6C65F758-6812-6541-B30B-4B61FC25259A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4913A6C1-CB35-1E4C-9C2A-0BED75514850.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D10008FE-09BB-4A4F-81FF-600119286553.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/54FF7ACB-2210-6B44-AEAA-292D53A57130.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F69BC40C-69F9-654A-A439-82CC357A63AE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FC1D1F38-F37D-B441-B3EA-500AF7EF626B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3D03FC44-69ED-0E4C-8FB9-0AC9B64CDFE9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A0A5CE21-847B-034D-86DB-AA80F986BF21.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C61AE37E-7D74-E749-B139-2FC76AE2360E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/EED7577B-D116-4F40-AB45-C69BCA937CF5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/203BF799-C6C3-D547-AE15-7915AD0F2A16.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/766035E4-6D76-6D4B-B54F-5F10059FCC73.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1EACF5C0-7A52-9042-8812-4AE6E1CD09F1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F14472F2-4EC7-9649-B3E5-9A5FAC5AAF7E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CF76B102-6B75-CD42-98A6-B2A466203E80.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E228F114-5390-424E-9C0E-CFC191C2F3AC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E531F04A-48AE-F842-8212-B9F98B997F42.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E445DC6B-FD07-724A-B6A4-A66F638F6D52.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7CDDB2AA-C2F8-0645-B4F0-61C552013BCE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/DCB95BFD-0486-D24E-A7CE-C926F6667449.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/56D0BECA-8B99-1C4C-8D29-2763EC0458EB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/107BD514-FCCF-594B-9CBD-CCD14965FD99.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/786B2A7D-3E43-1142-A320-AC473B7515AA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/61FCCA17-4196-AA44-8F27-B3E14AF6A449.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8C6EAD8B-7BE9-CC47-940B-68E9B837661A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/87E1A10A-754F-E54F-946A-09C3E2908E8E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A9ECB63D-963C-C046-9349-1A0A913937BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/47FCA358-61F4-474A-8C10-4C835AB4E5E6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/04A18105-0FA7-AB44-A4CA-688F8A98DB63.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/993677C4-C866-C644-8DF1-50578A6B0B27.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/582EA58A-9112-C240-B577-6C276765B6E7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8FFE0218-6790-7442-91A9-B9BC02A0305C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FCC2B16C-0154-DC41-8600-32C5B2CD8895.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/11C7EF89-6776-3E47-91DF-AF648498C217.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BC14AB35-0B58-5441-B2D9-7877C89FAA64.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3F9F5506-6725-B44C-B515-DF8261822226.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FFB2EA88-167B-C149-93C3-5B5E200D2557.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4E42BA0D-F695-9043-AF8B-E5D08FA2F80F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A7B236B5-2378-FB4F-8F31-2C5737E864D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/52554B8B-FBC0-7641-8D72-635C3284C027.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/11597342-5036-A946-B40B-0FF9AE9F1530.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/75A70671-09CB-2141-9A1C-CEA00C9AEF23.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/34C8D9A4-50CC-9845-91EA-4FA0B4C0E5E0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/094FBE4F-CC47-7547-907A-1900DCE9D100.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/BD29AA8F-FC73-7842-9B87-0EA9E3C43B3A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C18A4C05-03E9-DC40-A298-1D7EC438378C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EC56E612-5DBC-264E-BADA-59BE45D0FDF4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DBCC1B9E-CA3B-464D-B849-FB7668F202F1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/79678243-CBAF-2849-8E22-8ED5E3CCEF24.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C936F090-7694-104C-8977-5547C4B1CA8B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/90A5C319-2195-494F-8FF1-6E599EE92EC4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A0FC6B83-809B-634B-B303-29C2EA4ED4AD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/107C4E39-001A-CB4F-9542-2138DC62EDA2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/392F16F5-1E5C-7B40-9483-5B54FAB23635.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/80CB7F88-8A57-9840-927D-5794093E9186.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/01DE3AAA-48D3-D94D-9D3B-712414BA7708.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BA0C3EF9-F9E6-3D4C-AA84-D0E9F5FCFD8A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C2424043-EC3A-8447-9AF8-A3226FB8A3CA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/DE40E678-511F-7541-AA8F-614ED4D41D69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/70834B86-0A22-0541-879F-71DB50DC3ED9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4A786DD4-CD7F-4448-A879-A0409B9AFF57.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E631D6C1-CB6F-B542-B8C5-A86E384DA34B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/12192CE9-05A7-E24C-960A-D529DDA0A015.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C8867D73-CE57-3947-82A3-7032F5116437.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/67C47015-CC69-424E-81A1-9BC9905C633A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4A1CC235-A3FE-9540-92C1-8161546E1C65.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/76329217-8DFC-154E-BF7B-8724705741F0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CDA1B7C9-58EA-C84A-AB5A-3C2465DE7C8D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/79317D7B-ADA1-1B48-B0E9-65775013553E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C2642A66-AE97-E940-AD2B-634ED71798AE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/CD0568C9-59B4-0247-A2A1-A6458C44E493.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BE634514-89C1-DB4F-A2C7-886A79F7FA42.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/94E82C64-22AE-624F-A665-3CC9F068AE2F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/40627AB3-880D-3141-A0A5-51A4F3439E40.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C72575E9-43C0-E642-B722-8624A2C69152.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E3BBAD71-F693-C04F-B3AA-7AF8C7CA1BD5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2795A353-8926-8340-910C-3D349C235B6F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/AB41502F-378B-CF4A-BE7E-3D25320329CB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/94D8F89D-9742-3244-846E-82E7C5E87FF4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5B0587BA-1412-144F-AD0B-DB84D7BB268A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3E5E44C3-EA9F-8644-992A-2E09D4E8A2BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D0126BDF-337F-FE45-956F-7BD7D7C4A6FF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/64D313B6-F0D7-6F4F-A2E9-3CA21197431D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3AECE097-18EF-5A42-8E5D-02E5FE381B50.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A00E3417-D62C-F743-B7B6-389ADA168F48.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E2B9797E-408D-E24F-88DD-983989BA1A7E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/175C45D6-F3D4-9C4C-9E7A-CA0B20D8D162.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F19CE2C9-2E6D-C54E-B033-7366994EEFBC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/184744DE-D1FC-F04A-9AC2-1B3C6DBFECD3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CCDC70DE-E2E8-3543-9F2E-03D158E2B213.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5975CFC6-9F10-1E4C-B886-CF2078C80B49.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AEF0F040-3975-954B-9D5A-7AE0548710DF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2680AB12-B42C-804B-940E-0567384D2151.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A3473E53-4E1D-7D46-8801-D9911ABC5079.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/25AE53B4-927B-BF46-B86D-1A0AEE069C57.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/05AA9732-EBC8-254D-8D1F-BA7DCC039B56.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/940E5BC4-8180-AE45-B6FB-8808C8F040C1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/45B88290-A2BB-6947-96D5-739FA0E5E779.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BA45F472-3725-AD4B-981F-16C3927A73BD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F666297C-48A6-204A-8A4F-58D511245DFC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5D7BF345-A184-C541-B139-4DFEA5D19128.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9CA122BC-75C1-B044-8951-2C7E90E88B8A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BFE5A751-A1A5-884D-B860-C4D6A68BFCB1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DE9DD5AC-FA0C-E947-9910-A38A6401D989.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D7C6D8B4-9BAB-5342-8363-35AA869AA09B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9A17413A-DA49-F449-B574-AC808F811B97.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0CEC099B-037D-2E4E-AA0E-43CB3AAC8541.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3645A0EA-8740-104E-AE5D-1E5F1E7D1D2F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9206FCB3-A406-594E-A08B-03B769512F85.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E85B5412-B15B-D94B-873F-640DDE985171.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/71C3C44F-A327-0E4C-B805-F39844C7BFD6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1BE20D82-DF50-E649-AD0F-DBBFB20B029F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C08320BA-9412-A147-8AE5-4035066BE1AD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D321BF43-86B0-AE48-8C4E-03FD7EF973BE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7005A0B4-6380-C649-BB52-429C8030D83A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4E0B0A90-CB06-FD40-9164-1EE901037A7E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8A38949C-28E3-A94D-860C-7E88A421A0B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AC0D78AB-5E42-A44B-A600-C1F4CDD21600.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/05330AE8-8807-F946-937F-F09ECF79C92A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/60C1AA0A-BE8D-E348-A76C-798BC73BFF86.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9EF66546-64A8-C14E-9BE7-E7E74EED19B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E22EAE90-A887-3145-A302-1DF69F7838F2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DB573C3E-48A0-B244-ADEF-9636BD11161D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/74269A73-0D77-1546-AD31-43338C1E7776.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3AF908AF-6AA6-084A-AC2D-B31AB6D3551F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/662F957B-0E41-B04D-BBD2-D8759B04FD91.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B1AF1F1A-9E4F-9942-95DD-95594C0FA4B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BDDBD3E1-CD0D-3E42-88AF-C1C9B1DF37C1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67C3CEDE-DD40-6546-BBFD-C861499822A1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B962E43C-0A2F-D346-AFE0-9CD0F2AC98F5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5CF6E4A0-CAE6-9145-BC6F-62E020954252.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D52A0C99-92CE-3041-9E3E-1A317EE00304.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BE14E969-758F-FA41-96DD-3E355D831415.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A544620E-06B4-FE4B-A379-B57D22D9F733.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5E542583-064D-2847-9E3F-25F7E618B2E5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/46D8FDBD-EE73-874A-BFCC-F47DC042049C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5E2FC349-27CD-D54F-9279-12F9D92DBBCF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FEE97C7C-DCB4-304E-9188-B9CAEB6EE9D1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8EAFE3DB-A06C-FA40-BA59-098B4482B0FC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5A3AC528-5004-8D41-A622-3767F93DC252.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/92826852-6522-154E-9218-EC1905096EFE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/93E0DB42-BBA2-ED4A-B8BA-CD45DEDB3AFE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5DD37DF9-6656-1241-AE0B-C0FF093D834C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/326E5AE2-6F10-7D48-A4E8-7F39EC8C5031.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7B8C3C1F-EAF0-C043-82CD-F40BCDD77909.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/50F63CCA-585C-0049-BAD7-BA4A44E1EAC5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/407E3518-27B6-604D-94E7-5DF4E2FCC238.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C0E630BD-D7BB-1D47-BDC4-4A7A9C98C727.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/96ABE073-B259-8A46-84F3-D4E500634E59.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8D6006AF-D7D3-624A-92BF-E39550DA964C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F70C66CF-23E2-0D45-BDC8-1FD0ED5069B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EF2026F2-5074-4345-9C4B-F4BE394B144F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4B4BB8F9-F7FD-A549-9DE6-C1ADA8F9297A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6A9BC710-F06A-804E-9F4B-398204D70A20.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/8BD4F4BA-FC29-DA4B-A5DF-F3E90E4E4E3C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/24B4A1B9-1DBE-7542-A5BB-D91E0F300BB9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/0B56C931-B7DB-B046-B2C0-E5626A88A655.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4158F030-6451-8945-B8A3-AEF994A103AA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4FCA3401-3A6B-B24C-A485-46C3575F91FB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/211B8B26-5A6E-AB49-B431-16AD84DA8B2E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F483428D-6415-064D-80D5-30FBE12AD826.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/51A6B9A6-3E96-CB43-8EB7-CA6ACCE55FFC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/050056D8-6D95-EC47-87D5-ED5496EECB91.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C814E3C0-2692-0643-82CB-7F472BE7B7CC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FC13E3E7-0946-E544-863E-C0D7A63B493F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B2084D29-8B60-1F4C-8D93-0D74752854FD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B5E06CF7-0FDF-0447-8090-2B510B8D18A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B1D0C39D-E627-2E42-9C99-6640F28AA5CE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B8B1AFE8-A764-DC4D-A484-FDEACE725B93.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B131E87C-CFCD-B149-938E-E71DCCC7B359.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/42A17CB7-5456-2146-BA67-D51AD0A10D30.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/97210360-60C1-2B4B-9BF1-8CF21B132465.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/CF02A086-6745-4A4E-906D-0AAEE3BA47AA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F5E287CF-E16E-A64F-AA40-DC282E7F033D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B5B7EE61-92B1-3544-8518-AC81FF8EFC27.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3D179800-193C-0A4B-B2B2-E7671EC48361.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6908946E-8920-6B41-A4DC-E99F182BE87D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AEE70008-AC2E-ED44-8821-B699D803AF3E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8AEACC31-EDC0-5B4F-9549-3E5D8CAAC72B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/192ADC49-3C05-A54F-A0B5-5691A8F994B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/23B763DB-1163-A34B-BA03-50ED10A5586A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/841A9442-70C2-E243-B4F5-8688BE19318D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5D6F9424-41DE-C34A-B6A1-A3FB63EF8447.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/46F5CBA2-1D1C-444B-8F31-B28E1897F307.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CAAC4818-3EAC-B349-B9F2-823ECA9A2E81.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FA289D0F-C7F5-A74C-A778-7EC7B5C4BA78.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BBA737D1-6F8E-684A-9B8E-5ADA8CE4EDBF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/44D8BD9B-EE49-C74E-A948-FFB4BB4FA45D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/124EF91A-4712-6844-8FAA-84E312663F37.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0DC9D2F2-6216-7440-9A81-D26EBEF46ABA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FDB8108D-9066-7A40-A429-185D3A4213D1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7979D578-8B7D-9A49-A499-3909C38D30E6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A37CCB15-EF56-734A-BE64-B092A4AEE502.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2751DCBA-8D7E-7A43-94A7-465260B3A221.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/EFCC61D1-FB1B-544D-AA60-9DE439EF7CF7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2989DEEC-6084-5D4B-87C8-CA0CF8140695.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6732E764-F424-1C4A-957B-4FF49458D864.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/D87D2D44-7341-D643-A798-2F263CEF9454.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/23AFCB86-AEAA-3244-99DD-C2B68FE213E1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4F5CEDF5-93B7-0440-A833-F126A2A61F54.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/EACB0BF3-516C-7A4C-B814-6B324F9032A9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8F0C561A-5247-6C4E-9D0D-A9C8C4A70F2F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/46309D30-9CF0-134C-9D7A-18E7CF0167DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9433FDF4-7F03-064F-8567-FDFA266833CC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EB2F975C-942A-094A-9CC6-34C505AF86E3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/59D916E5-E0C6-D246-9739-D5AA4E61CE97.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8C44CC8E-D8AA-CC47-81F9-98D0C3D7600C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8503C830-82D0-DC41-8F76-22FDCB07E885.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E285E21B-21F7-1E49-AF8F-C35E417B050A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5D593C4F-BF53-E849-B028-31165E8F7F26.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/EBCB596C-39AF-904C-9CDB-94FA0EFE1AB5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/40E070D2-9B7D-A847-A24E-9CF0993F6B63.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4636222D-010E-314C-9F6A-826C34A4D284.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/7CB0B1F8-B391-C946-B3CF-AF6005580EE0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/9A88F109-9C5A-1942-B2C4-BD810D1873DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B929EA63-9CD7-C24C-BE6A-9671C685CA0F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BA5B9775-7371-A347-A366-3213A7B7075A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/21CFC349-9CE1-2548-9FE2-F76D37F6A409.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D8C830DB-25E0-4144-84DC-69E54B2147D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/637EDBEA-79E6-3347-8D3C-08347C69B4C8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4AE859DF-9E39-5748-9F8C-076723FEF7D8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/71B00F11-FAB8-9A48-850D-5E058B1B04B3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5B46949F-59CB-FF4D-81D3-F3B79CC6A1F7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4D94F781-03D3-0D47-8FDC-E21AA2FB2FB7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/283F6D96-F33C-A345-8DA9-92EE6A6D83B2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3B583177-AC2F-7D40-8885-3C6A78042C47.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/503BF92F-D293-2248-955F-2A3B0B714EA6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4495696C-3672-4E47-BCFB-2EBD0532579F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9C9A3A63-2154-EB48-8D7B-3AB3DEBF8415.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/955B5BC1-5A9F-B54B-9076-C4C394C9F3E7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B63A0099-5C6D-E441-BE45-F6956A573B7D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/636CEADD-B4F4-F344-B50E-BB5B63526542.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/30E639D5-E710-074B-8812-E682B89A2F1E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F7E506DB-B36F-2C44-95F9-29867A001EF7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/36675E43-A52F-B94A-AC85-EE8677FDA419.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C3C38070-8B90-7145-A444-222599446E6E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/33D07D81-EA92-F74C-93A5-772D0383D765.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1C33D546-513E-4E48-9635-370264F17FB6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6053FC08-7F1F-744F-8E9B-BB75135F7FFF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C5178457-935B-AD4F-921C-4FEE4D1AB4C6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/873AB988-89AF-3A49-A208-7EF2642D6FDE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0FF24956-4DEB-174E-B06D-0BF0F1A9CF3D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D5D1FEFB-3BC0-7E4E-AE18-8387AD401393.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1263FCA8-653A-464B-AD75-A869441BACAA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1A916A25-E7C2-B140-B791-CC1252630D0E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6F2C505B-FEA8-154C-8B8E-E4BEE268EB88.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/EA1193FC-1EBE-2D4C-9FE1-E39A06043A44.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A67D8648-28AD-214A-A0EE-C291441FC32D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7A125D4D-982B-2942-BD59-04C3960EC60C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4DC937AF-DE17-474C-A912-6C779B4A154A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F2647B7F-DBDC-EE4E-BD51-BB5069ECBB1C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8FE335E0-6944-6647-808F-24CF00886220.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3A343E18-A776-DC45-B0BC-4C95D8E3CB6F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/140D20CD-9ECF-CB42-8D6F-1D9C8D7D5046.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EDA51A0B-94F5-4E40-8036-AB41813204D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/17BC565B-8C65-1C45-A343-BC65AAA02776.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/343DFD90-DF48-FA49-B5AC-0742CEF694F0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5C9BB2A6-CB11-5F43-B000-E45600FCA919.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4B939D48-6A3A-5E42-B31F-94EF7F22DED6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/97F677A0-DECB-9F44-ADC9-2FD3334BE6A6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3170E3DD-F848-0843-AF34-F69CD89894F5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/66FB7724-184F-B242-AC75-09BA3CE1695B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A3CDD351-77CE-2943-8EF3-BF6692D3398B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BE0D2AC5-762D-5749-8463-C79A0AD355F1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/85FBD0C4-1A02-B34D-B90D-C6CEF911C4D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/293C0AA1-9298-B346-A891-8149BE26BC8F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B6ED5189-CE56-F04A-887F-B49FCB6ADFC1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/84BD03A5-56A0-F944-8E2B-5869D4E144CB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D5308196-AC42-6B4D-B861-7426A5958769.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0FE4616D-EDF2-5741-B751-D618D8B3A7D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/494E422C-5FF4-684C-877A-37B0B6E0C0BA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0509FAFA-F30C-A948-9107-DE9F4EA43A17.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1D8C76C5-6CA9-A144-AA9E-8E1542B0F888.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E78AB5F6-955D-B644-BFD8-1C0FEE87402F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/1BD418FD-942F-074A-8337-E88DE22A7F50.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D3889070-88F3-6C4A-BB0E-B9E1A47887B6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E5260BCA-497C-3C4D-B81C-09E8F935E39A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C9603DBB-EA35-FC4A-B195-18092F72BD4E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/95301DC3-F29F-234A-B21E-E1E0D0B94754.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4BE711FC-5220-534B-A46B-F4A8B528E4B1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/50790D2B-BE3C-5A48-8BF7-5F8FBFFE7E69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2894E78E-1805-5B4D-A9DE-7A697B45FD5B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E743CCF2-F412-CE41-9835-EF395C6AB754.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C7D4C687-8C6A-5C4B-A895-20601659F297.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/8D282709-B313-D842-9911-117DE3F5F18A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/982D4648-32C8-F948-B361-E174C19CA1B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/003B7F76-92BB-E04C-AF83-66B71587149A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AC5D0178-42D0-854B-93F6-143BF6C3ACB6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/405F052A-ACEA-0149-BE2F-0FE9247F7012.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/71A6523B-B307-EA41-ABB2-140A8C5945D0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4F47DA35-F6EA-A345-B14E-6EB2A865C219.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/84B1C2D0-E692-7244-98DC-EA1AB7A87EE2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/E287E9EA-594B-2648-BDFF-87A2BFCFAC16.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/71ACA87C-A456-694B-AF51-294D14EDF807.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8D6F14D1-189A-5144-AB23-952D29CC7361.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B372F490-4C7D-CB4B-ACA4-4E0CFFBBF793.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B5D22699-5E07-994C-843B-E5EDC767B5DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/14A46675-5359-C14D-8010-CF4C82366146.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4B445997-42BF-8B45-85E6-B3A3F3621F42.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4717D375-748D-CF4C-A9A0-1DFB3AEFEBD0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CD3C02EE-2A0C-5843-B6CC-EA80030E00FF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7843B9F4-06D8-104C-89EA-01F12E3C4253.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F398E7FD-D50C-FC41-BB6F-80BCD880BF83.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B7EAC370-A31E-E245-9286-92E69C1B5A44.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/86992BBF-A44B-BF4A-8979-A3F7F392AB70.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/58D4A182-D1C1-4947-B0F8-4DBFA77045BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/1D6B1733-8B61-D146-BE03-3E17056235B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4F8F592D-C549-D247-904F-DE06865BBE4E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/591910DE-4BD0-C247-8000-8AB544E36186.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/11D4F681-C6AC-F746-A517-AA0C385E0276.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/14E69F6B-F461-F445-A7FE-A0C674A95937.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/0DC81BA0-1E32-3543-AFE0-8AA366BA2707.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B1831D47-9CCC-6A44-A6DC-3ED4DA67A8D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/34936110-125F-6545-A27F-D8E1F3B0AD19.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4072DE9C-EA21-FF47-A324-2A76699E3D80.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D03293A8-B3B7-0149-A483-E2C7A2DDCD49.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CDE66181-EE51-C341-B8CA-A07BBB9148B7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B157AC46-23CB-6D41-AD41-8FEE40530B86.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/2E95AC33-2B78-4F49-8EAF-A700B9126407.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E7941243-9415-C146-9670-3A17F394BA69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/2882D207-E666-234A-BCFD-93060CA6F510.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B0BB8B78-CD0C-8E45-8BE3-19564073D51A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F2A0A696-587A-9146-9F7F-803D2C79DBA9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E683A059-A628-3049-B908-6C433301CED7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/35C95545-41CF-8A45-AC18-8F481D23AB33.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67EA368C-FE18-F943-986B-D5B49D8255FD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B88A4105-98D8-0E41-90F3-30EFFD02BBB0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/35DF8DDB-D3F3-114B-9AB4-E8D1719061E4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/ADD9F4C6-97BA-2649-8739-41C50151CF1B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/D2A5ECA4-1B21-1B43-A091-2978656A9FC1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9277ECBF-2DB1-744B-9FDB-DBAA7BE705AA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/517E00E0-2F6E-754D-9536-2D798224E027.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CFCC11E5-11DD-A546-91BA-04396421C57A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A8A70769-03EF-7841-8EC0-5DE1779FB328.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A4968EE3-7AA2-314F-B1B7-588E2D37ADBE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0D20C843-34B5-E349-9D2B-06FBE8C94DA6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EAD0AD30-2754-EC4D-BF72-65DCB780180C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/68BF75FB-922B-2647-A1C8-F3C4106831AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/FA97A69D-995D-9C4B-9AA1-DF507B87D2C8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/188DC635-CFEE-724F-B056-3E14C76EC368.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1EB58A76-A811-914A-A178-4D4C6F3E5FBB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A26F5871-DA11-F445-8B79-B2B8F9217961.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/82256CE7-A812-AE44-B052-8636CA6A1FB1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0A6D0C3A-7307-A44C-AFA9-4680B678519F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A792C007-2004-E844-939A-7693F0BF1060.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F5806A63-5BE9-1B4C-AFD9-43202B1B0CE5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/90168FA2-A210-6E41-9752-A0A3984A8C37.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9F276884-CBDE-D74D-A3B5-F024E68AF820.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/60D802A7-934D-3247-98FC-303D4D498F41.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/785D3C97-F803-AC4E-A407-BBC7FF86FF1A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2E4EB9AC-8A12-BA4E-8D7A-193849E78FD1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/51114242-C41A-D74A-BBE4-4A0A31EED1C5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/563DC78D-2144-0C44-8A0F-367644886D17.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/71FE6127-6614-0C40-AEC8-61819BB26584.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1478CB69-2A45-E843-A8D8-422490059F4A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/57FCA47E-71C9-A145-BA5B-D443C76F5713.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1C4D1D82-80D6-4246-B81C-6837A3E27B01.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F7EB487F-DBEC-DB4E-B8B8-DA8BB133D65C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E2026BDB-9CE5-0C45-9608-E1AED56A851D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/867C320F-6E30-DE4F-90C2-AAD6B22839CB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/37F49FFB-0E23-3E40-B8FB-2E8876BF1285.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FCA016D6-0A02-634B-BCDC-5895D358C5DB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AA9B872B-B81C-D945-97CA-B22A27803245.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AF3EC915-C029-5141-A69A-DC572340BD30.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C2E45025-F6B1-3440-AC2A-A95011BCECF1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/82E9A280-6380-8D44-8DCE-4F8595390D88.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6B298F70-DAB5-224D-9C4D-A93F7FC98ADD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/6E4E98CD-B267-9F43-9C6C-08F8B7FDCC10.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DE40A115-F7E5-BE42-A75B-B1282EAD7293.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6BBB2DFC-5EC8-304F-9D7E-335EF604E819.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/93EB0DEF-0E5A-4442-A26E-5698B0C78D8C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9C457657-1B93-9043-8FD3-7AB12C3C3643.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EB307431-CFB1-2D43-AA72-4E21E1AC47CA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C5D7661F-36B8-0949-B5DF-4C7376FA5920.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BCF0EA6D-48E0-C641-8E8B-0534DFFA2FDD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/601437CF-AAC2-BF40-ACA7-2963A8AC5BE7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/04D0D206-47B7-BF41-9E65-2AF6B4E8F20D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B386198F-6782-EF45-92E0-EBAA6D5BD4AD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/C2770AC1-1DCC-2F45-9730-ED25A7DD6EB3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/E8EF634D-CF80-BB4A-9D07-B893736E238D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/77B888EE-15E0-F14A-ADDE-88DA4916DF2D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FA92101A-5DE9-8C4E-BB14-60A2C3E3BCB4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7737A4E3-AAA0-A04E-A2E4-5DF40F454A10.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1AB7C6A1-A1D3-014D-A9BC-4BDC2EE26C25.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FDC72F67-3337-1D44-9FD3-8EA362DA6389.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/A8777B25-159D-F547-A38B-91B1BA661625.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/14028B98-66D4-8D4E-B7F5-ECD522E0BE18.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/23ABF8D1-8A89-C845-8BA9-1F05C8622B72.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/45D3FE2D-601C-6449-9481-A19D75915F02.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/897FE4B8-D15B-5F44-A452-5693B8FBC720.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/918A09C0-10D3-0F44-8C1B-2BAF313B7116.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A8F988AC-F26A-C14C-AA75-8A504EE95D6D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/87ED9795-1731-DA40-BD99-52DC7E0F3451.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/98397637-8025-FD48-A932-3D7E51F6A1CD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6B9E45F6-2E4D-6A49-B961-98676AF21175.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F47C9351-5EE4-2F4C-ADE9-EF6AA428BF88.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/585EE6BB-BE6B-B044-A409-A3FE5B0ECC3D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/99B5A26A-2742-6346-A123-9D6056D3D1CA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/38D5895A-CC78-6D44-B90A-33C648591EF8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/29F51748-48BC-B94F-83BA-9649DE76F171.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CA2EDD72-E71B-D54B-BFDA-724AB84A2CE0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/18846E46-C88C-7D47-9D7C-C046F041F597.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0C40397B-1F23-1743-A73B-01F869565B9D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C97C03E8-F3E4-E841-BDC7-C4F990526265.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0AFF9E4C-5045-4940-AD02-73633FF9F6CE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1618CF64-255D-8341-A62F-2A49FCCB3F0E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67A2C037-1F56-B848-B7B1-B62BB54F837C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2C522AEC-D275-734B-9FDB-4716FA31B7C5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1680D93B-1C23-E24A-90F8-15B4D6AC7BF9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C04763A6-428C-8747-8FC3-9689D7588F66.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/10FDFAE5-4A9E-B043-9E11-F196AFAD5835.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FCEE40D7-1797-9044-A577-8F8C3E881ED9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/99A0C407-A11E-DE4D-9AD2-607F6B966B9E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/78D5F9D3-4605-DC42-9722-A9CFE5889F39.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9739BB13-740A-8A44-9BF4-73EDF3FCA257.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/158CADBE-112A-1A49-93E9-7EB0AF017FD5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F9021D29-FA30-9148-B324-A38D96E1E786.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/599619C5-8F05-B24D-80E8-747305A83FFB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C556D7EF-2A1C-5744-89C9-93DB42088060.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A99D6260-081C-434D-BFDA-D26B5DBFDE74.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/BEDD5E99-A767-A040-8545-A9C0B75BF497.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C1125D9A-A203-3F4C-B25E-4F7BC5938ACA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CE33887B-4202-CC43-A11C-7927BC6E8077.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FB77DE39-E6EC-6B44-8AD8-4391D3488CE8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D43AAFEB-5E63-BF49-91F3-4B18EA81B7C1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6A360170-85C9-1F43-BF4C-CFA69BFF16BD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D49EAEBF-A859-4045-A5B9-61C79659A432.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CB3339FF-4475-D442-95BB-ED119285F5DA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C80EAB8C-94D0-AF48-ADC9-76E80678EFD4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A0E7246A-2670-214F-97D6-F9B6CEFA20B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F0271B72-1DA6-2E41-AB1B-10B60BCF69BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5F80EF80-57EF-934D-8D4B-784C81878C2D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AE551287-220A-3841-88B5-4E394BA6CCD9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/38CBC530-CE45-834F-82B2-22206229DAF6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9A6786E7-B129-DB47-BFF5-66B1954FA791.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3732ADEC-A3F0-F841-AC56-79F06CDFFDFF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/935D677D-FA00-8744-B014-FB1B3444FAFE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/220C3CA9-A1D0-9F46-9EA6-1C7E32FC5546.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/54561B9F-9CD1-9D41-AA0F-F4B8AD55BACA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AB4BC887-3557-C043-825A-55A24AC4C5D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5EC1C523-289D-CD4D-8B7B-8FEA67E27746.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F0FC72EF-4E85-F941-B9BB-919B8E4C1D3B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0B12D4C8-9D5F-C74A-8C09-59029EF9E565.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9B5E78D1-0229-BB4F-89CD-25DC15D8C84B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/8F70B5A8-7A12-9641-B859-57A7824F8A9F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FF248450-2A44-CC48-AD0B-FC3EB44F7237.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F15D8B5D-2ADC-4242-B1E3-D9A6459BC862.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/29279C2C-8829-E14C-A41C-E2AFC351CC18.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2D2DC95F-A5F5-474C-A082-581567D8CEA7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1E694AE3-AB3B-9747-989C-8D019F867D83.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/271DB2B7-DC6A-344C-BCF2-4366E512F745.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FEA4A20F-6C01-7D40-81A0-462BEFD7DC2B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B62C047D-1EB4-864F-AC3D-464BE8FE6987.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8EB11153-5505-9F4B-A8C9-8216D3C1B59A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/783C5D28-DE1F-624E-865B-DC17711095D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/06549CF8-EC3E-8349-8FE0-85FA90145C52.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5CA5A56F-0519-4944-96D1-12A52C7F2D63.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E5C7D142-E513-C64D-9616-3B29BBEB6BBF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F7E6807F-F415-9546-BEB7-DF9ABD5B62AF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2552A3B5-4456-5944-AC5D-830270645073.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CE4B130A-4823-7E4B-BA73-A4296907B999.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/00CA643C-2AAC-C34A-BFD8-7717CFFFFFE3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5593A7ED-77BE-EC44-98FB-3FB904FBE152.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6D143971-5DC5-5043-9388-DB36DB84CC9F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E5604B5C-24F2-FF4E-9BE5-B7BCA1E4B0AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AE8E6927-64F9-6A4D-BA5C-5E8998E8D0BE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3B689813-6F05-3745-B711-2CD0DFBB9412.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A730870F-24A5-2C4F-AB5E-738F2FD4D89F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/714A3BA9-49B9-9848-A488-D25E51A3D653.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4124A855-4F8A-5145-97D5-FAA1C5B6CEDD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/618F2D98-6147-7B45-985E-B99C5B85EC03.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/61BE7336-5033-0A4B-B424-659FEAE7BA62.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6E6CF666-82DB-CC4F-85F3-98F012651E7A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/82AE80B9-0248-7748-91AF-BC75B09C2C8E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E89ADBCB-5BB5-194D-891D-BBAE891953AC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D1913869-092C-BB46-893B-E739F64FFCE6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F799F661-DA2A-E040-928F-F0ACCC41DD81.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5389DE4A-3EF9-6347-8642-22F4111F6D17.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/06BAD26F-109E-2A4D-BE55-88662538F047.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F3DE986D-6012-C34A-8487-03A83A8138AE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1DCE0BDC-E837-0942-BDB9-10D1B7851C9B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7E8985FA-7FE2-0E4A-AC65-1195B4FA1EFC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A77DD838-379B-124B-8DAF-319EEEE5C6C3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D71D157E-FB80-0444-A1E5-7B79C17692DE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5A371467-AD0A-D74F-A010-5D1FE1A932E0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/686846DB-0083-9D46-99A5-8C71B7D3588A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0B37630C-5EAA-6745-9A77-E70EF487F7AC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/45F726C5-A0B2-354E-9CA0-BC220F1C6E4C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B7136C6C-0F76-314C-8A6E-4BC781FA1800.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DFAEF108-D0C5-E64B-9CDC-C676254C3BCF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D4EF7AA0-9C2A-5047-ADC3-18EDF61C1867.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/72D1ED31-3510-CB49-AEC2-F76353A12727.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/80FFB703-528F-EB41-A618-90947272629F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E61DA7D2-DF7B-5444-BC2C-A948499A3F82.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/11B3E3A6-1629-594E-90D8-59D85ABA4557.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7F1E41BD-3CA2-084C-AEC3-45FB1A70C638.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8C98E0A1-3324-2847-9364-71F8AA6F784E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BD3EE3EE-B14C-2F46-8F89-4C7901F03E1F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4A15402E-DFFB-3B4E-9F7E-462C715B2BF7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/14B29244-9342-BB43-93F6-193C7A618CB2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D1F69298-7537-CF43-AF45-6FC5A51A2163.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/90359FC5-4455-D04E-864C-156ACE7069AF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2FFF484F-C48F-AC42-93C4-025E5A53506F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/84611A85-44AC-CC40-824F-DA28ACC97DED.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9959570B-32C0-B048-9C5D-460C55CE60D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/758F4478-AC2A-7048-870D-7C88F09F9C48.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1EFF0F57-2CAB-C04D-B946-395F751A654C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/02197CE0-DBA6-894B-BA24-BCE4E9353C9F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6950AE2C-5F01-B34E-9984-61112F8B3C18.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1D146755-0DF0-5D4D-8C84-526392CF8AF0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A90CF5E5-4513-0642-9368-7B5A1AB2535A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5B2DE71E-593A-944C-9D45-87223922317E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EBAE2BC4-8436-664D-9358-60BCD4B576AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/03D9689A-2964-D74B-9C31-974989CCC36F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AFA9A417-A07C-654B-BD85-565FCDD86E06.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/794D0108-C9B0-F44E-B583-B37DBE24238D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9E563E41-3419-EF4E-9913-FB47D6774C14.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/08DC9872-1ED1-4542-A77C-BF9A8238781A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B62BB5F0-DFBF-554A-AB90-8C236A252F7D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8631FBE1-46B9-6A43-B788-F6C83649ABCE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A4F6B8F6-3BD2-2F4E-910C-E873A7E14E1B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/81198338-9CF2-0141-8028-415B97B6286B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B5E6DFFE-CC2F-474D-84F6-712646315892.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/740B5E8E-CC8D-0448-8D81-A58215DF3189.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BD0DF0F9-7DE6-834E-BA57-C4C05C185D14.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/85EB919E-9C94-A94F-87DD-18804A06CADF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/63A899DC-D6F0-FA48-B62A-43006DC1E028.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/94E6990B-52FF-C34B-84E2-57627F7B43C4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/58408946-087E-5049-8518-1DD09FC96ECE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/84A7E314-134C-8447-9758-707A9014D38A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B1954852-4CE1-1D48-90B1-B4C1D319C945.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C1F5BE43-02D2-4A43-9339-566451A0935A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3D13037D-26DB-1845-9844-5D8B988A6FFA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67E8BFEF-E37C-8445-B04C-DC946195C18A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/DE111D07-0372-5041-B950-39F6B7C12BAB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B82F96DF-6D21-0244-881C-EC1EB9F3C550.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B496C0AD-DAD7-C543-9DC3-122A6A25ED94.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FACE9551-896D-3F45-B199-65BB37DDB495.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/69D4180F-D1A2-664C-A215-0C5A2647347C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2941838A-9C01-B147-9E2E-3EE33CEB53DB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B7164E8B-16E5-C24F-AF40-1F92F9D751FC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/58F5668F-DED2-7B45-99A9-FDD395ADF58B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7733EF80-4CB5-5D4B-832D-2C8D4C87334A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/52E692FF-80C1-014C-9E7D-BA18F4BBF282.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EB0623C3-E86C-0F44-BB27-2448D80FB0AF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/219AC8A6-FDE0-764A-AF67-FCAE487ADA64.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/341ABBAA-6C32-814A-8A51-47714161E1FA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/6E2304BF-BB49-CE43-AB25-2635AEBDA9E1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/E03E518E-6DD4-F642-B086-F1E9E06A0090.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0883B540-3F32-344F-B2C3-33A224BB4722.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A4FAB4BD-27FF-FF4E-92BE-00D7A461A7DB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E511285E-0712-4141-A078-419DDDA185EA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E071ED82-B8AA-CA47-AAF4-25D0C9A855D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C19D58BA-96D1-1346-B965-BA0E8B09CC8E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/756FD869-E6EB-4945-8E07-3D5B217E3EF7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BE04E34C-7B60-9645-8573-E484F46CA049.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/59C191EE-7EF1-A241-8565-967A5CB41DB1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2F5A433B-D488-7F4F-A4F3-8D6348C3D749.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/1F942184-A2E0-7048-A3FD-67F4EFB4147C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9CAA5E53-E75F-2E4A-B23F-26E0D5FC1038.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8FC05813-F7C3-884F-B883-23A2D7FCC38D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/61AEAF92-DEAA-834F-84DF-0040C00BBDF0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FBFB91C3-CFB6-D44D-BA72-432ACB8C21DB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C0B91AE4-76F5-3A4D-BFCF-D42CD25578B6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/28D21726-390A-AD49-97E2-CD1697E4C754.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/1B47C6D9-F2AD-8344-B0E4-02AB50D62002.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E0A9BA9F-E1CC-FE49-B6AE-20ACD6D2BBCD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C8746819-DC52-DE4C-AFC9-C8CD094D50F7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4B9AB787-7BD1-C44D-AB76-2EEA644EE003.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/CE63E44E-A747-784C-95F1-0C9FA7C1DDE2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5E3B0A83-ECA2-4A41-B480-686317B92373.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5E5430F8-E835-F541-9F71-2939BCEF4CFA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A555B9D1-5A88-124C-9C12-BDEB2B5B3B36.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/82FC37D8-9D8F-DD49-98C1-8E1F29C2F81C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/638482E8-780A-B645-A50A-8A0916147D3D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/6643CE43-7745-D14F-933E-4E11A4A09530.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/02FCF82E-33E9-B94D-8A0A-6A26B6B1FA81.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/738FC664-D60F-5B4B-A7C5-228C1DFB23FB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B46BF793-B32A-0F4E-9E5A-0693E1873A7C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/94D7B39C-6F2E-2240-820D-56E93F1A1358.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F97D1C81-41D1-9B48-97C1-749A6F330D2C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/92DA5546-18DA-2247-8132-A99F2A0E7CAF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/92D79B6A-1D3E-0B48-82FC-D9EF1FCD77E1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D0CDFF3D-1F54-DA42-9403-C22CB3B65744.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/88B75987-F5A0-D64C-BB30-5355FD18543E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6A6920F8-ADCD-FB4C-8B41-7BB9C0586219.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/036B0B1C-62CD-8F40-BDF1-044BA3D9795A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/51657E90-210F-6D42-B2B1-A15A45AD3572.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5586A160-4F18-9740-8711-4578674B813F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AA444609-C9D9-AC43-B716-583642DAC156.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/03DBB61A-0B33-3B46-B3BD-54BCF050BBDF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E82B71E9-3579-C542-8949-EE1F164CA693.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/17CA3B43-4A80-CF4D-A47A-94B0ACEF8971.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3E5FEF03-7D63-D04E-8A76-3A73BECC730C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/088D3C7A-F9E9-5B46-9BAC-6C6D62B8FAF1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F4DB1ABF-0804-6D41-A3B9-CE8B3744AA46.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F47F7F8A-60AD-4C47-A802-45EBDF3E2983.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EC87DE8C-8A5B-0543-AC1F-955B9C59165C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4B000BA6-25D3-1143-B960-054556A26DC8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/1A92C626-30D0-564B-9DB4-76C78FD5A65F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6C85C622-D1B8-7440-BF66-B1DA79E6F6F7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/698E0681-3372-3446-B8E3-CAD2EF268813.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/21C83D10-6060-DD4A-8290-04BD35B9B486.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0113A8A5-3A10-1949-9A36-E7FDDA68AAFB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/18B04032-3E54-CF4F-8079-33701CDCF40B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/DC2EAA3E-578D-F249-B236-B23BA7B0DEBD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D209BC1C-55E5-2E45-B7F7-85184A19FFB7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/3F2E38DD-49E0-3B4A-AC4E-B3A64188986A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CEDE222F-98E6-A748-9EA8-8AB01F8BEBDC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0068ACB4-22DD-5E48-A24A-27BC514CECEF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/3AE56059-C812-524C-BD07-3F62A695F068.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7FBBF44C-CFD8-1D4E-ACCF-E06838C17706.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D39BE4AF-FA14-7F4A-8872-8413B5606F75.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/00725E04-3734-194C-A4FC-BD759DADF79E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DBAA5939-B52A-1141-A068-BB02628AF04B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/977B919D-0C6D-7E40-B393-AA7CA20962B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2E623A40-7BFF-C145-AF47-4362B1BE59A4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6786260B-AE7B-6B43-8BB4-924F2F30B461.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/68F58866-36F1-B64A-ABFF-BC2CAFFA49AF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9906B104-DB3E-1C4E-8771-04ECC70AD193.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/560F11FE-DC98-1F4F-A6EA-08E84FE4ACA2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D86B011D-1C53-094A-8816-7CFAA5CDB6E3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/29220649-22A2-E145-AAE0-DE370C3E678E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FDED43D1-58A9-2241-A787-23CE75C5A920.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EB76E7A0-C201-3246-8EE3-6AD824B38D10.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3D2F4A59-0407-0843-8D84-F0732E0DDD01.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D3AD2AF5-9D80-9B45-A795-E82F44F6B103.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C39B1FF2-C60D-7C45-886E-57F286589755.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/206E0AA7-1CFC-F64A-AF15-5CFC8E1D29BC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4CC22F47-30F5-3E46-B644-90A1A6A9CF75.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F17E9BA2-9C4A-2244-BE9F-4758EE2DDA24.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E1AAB463-0747-EF48-B157-7FA88F20F636.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/91F15761-AD63-D548-806F-C9DB0CD31413.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5826DA5D-6EE1-D94E-8E1E-0C017C78DEAB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1D2EA82B-A34E-2A46-B7EB-175F895E1171.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/60C65398-FB8E-EB4B-BA4B-6DB7664ED9D2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C25B068E-77A4-BB4B-BEB1-096D96857DF9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A5060EB0-1BB6-AC47-B074-4B37A39A9F22.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4E917CED-250F-7140-9B08-17C168DE66B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DC5FE121-B855-3646-BE3C-4255AD427A6C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B4BC962A-B415-9547-AC73-EEC0BE26E1D4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/CD7966C3-9BF7-9E44-AE50-DA443369B29B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/040DC1AD-619E-D64C-B6FF-A893AEB2F313.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/92EB03F9-F1F3-AE47-BFD7-552E5113775F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CF6F08C9-107E-474E-8AB6-45A98F81944B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5836A4B3-E473-FB49-B440-E17D84F6A386.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9E426B0A-FCBB-1745-BE09-AEBC5FBF418D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1C7091A7-9C6F-C547-AEB9-D285E05DE808.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3510EDF6-A6CF-4A41-8614-BE85E0E4E343.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5BCFF365-8882-494E-A3D5-B89FABE32462.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/11AA41C6-A257-C947-BA51-BEF9996E3095.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1AD84D92-E16B-8447-A811-8A088B0471B9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9705EEA7-4F47-6345-B334-E5176B105DB5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FDE39C12-1434-9A44-9607-D818C5B2A4F8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CFB2D8EF-F55E-1049-B380-B36FDA37AC03.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4BCE21FE-58F1-4A4C-8BD6-ADCEC173FBA3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F7D60622-82D7-064B-AEFD-9EEB70F26FB4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/EBDEF94A-FFAD-5C42-BF5B-EE9A847B6A84.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C89B5A3B-2D79-D04B-A55B-0C51B3ADBBF6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FFAC907F-2EF6-1F49-B92D-65143A8A4001.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AA6F9457-DA53-174F-96A0-E72B78E246DD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CB26CD63-4408-0542-994F-67486530F941.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F3CC94C4-DBEF-BF41-A2C2-3535F4CB7AAD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C850DE1A-8E65-2046-A81A-627E34D9835B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F5568889-8882-2D4E-8094-6C3CCC528712.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AE185CBC-7254-184E-84D8-0F9333670181.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4B02665D-18DF-E34D-9092-CB5A096E6EDA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4D07377C-2254-4C46-AFF2-844AFCEAA775.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1E250264-8E8B-AA4D-9E74-593ADBBC5607.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/30902AE4-9DF6-334A-A2F3-7F4F9AE1F4C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E43720AC-D9EE-E449-9DA5-360C028405EE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DA015AC6-C5D3-D940-8172-12F9961EE975.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/17EF62CA-0C95-014B-9DAC-4634EBF85C8D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/847F13A1-9405-FE4C-A126-AAA2514E4A51.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6E23BA13-8AC9-A64B-95A0-F67CD099BFF7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C1FCB1B2-A50A-2149-B881-60E5D4FC88A9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/38A59AFA-B5D5-8E4F-9C49-DA62C871E86D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9FAE651A-FBAA-E946-848D-9CFBC07BA5B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D2737A90-59BA-B640-9D39-143B83A25DDE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0ED46D7A-8F63-8A4C-A8D7-B67738FF5B0A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/57072B8F-EEB7-B54A-B571-3AC4A9DA9943.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4F4F9E65-0E97-1643-885A-D480F1865765.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/78AF9C94-3173-434E-ACA6-DF28A234B46B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2A427C54-6501-5149-BC60-1E69E62EEA56.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/82E0A382-0722-F94F-98D2-270E54B33D15.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/495899B2-2204-6541-AD49-5722FFBEDEA3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A3D5ED23-EDED-F846-9B97-9E8F8DD23948.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6CD853E6-5CAA-F147-B561-73B5825901EB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/7C520731-F9B7-1241-9F5F-923EDC23A012.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AB3FE712-213D-AB47-8097-C14ED4A44264.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/11091228-6C05-3C46-B423-20FFBCDEDC13.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/58A74301-77F3-6247-87EC-F05FD46AB14E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6AD06E3C-289D-EB42-8E60-7F5CDF93A3AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5A3EA4AA-351C-6D4E-A05B-519DE5ABBA16.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4D70B0AE-DBF5-9A41-86E4-A0FBBA15CAF7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F8681982-E622-4146-9367-0CDC24B5A8AA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6D026537-3441-9B4D-977A-6CDC539D8EA8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2E69DE27-1629-8344-BBF3-253EBFE1A5D0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A397F084-78BD-8E4F-B7F6-87C615469D57.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/83EC796E-BF17-2E49-B7F3-39C2290BE100.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3E06E6E7-9202-2646-ADCC-0A2DAC9C7C9F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/218B6B81-CC5D-B643-BFB2-0EA214746D92.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5E58C86D-43F9-A64A-8EA7-1E5A91F20651.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/852E9981-CB1A-884A-AA15-65817F08A386.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FED094A1-67E0-B640-9041-A50D270A1EA3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0A1F7116-6599-D34A-B165-4C2346298AF2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9BCD4287-76FC-BA47-A1A7-A5A6CB3F9B5F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B8B45C53-F93F-E043-BE36-013283AD94C8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B94D1290-B308-3C4D-A759-951FFA185E86.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B6C602DF-9626-2743-A8FB-7B894F0E257E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A64B3136-70CE-7947-A059-6A3B08D9B6FE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B926A124-BBEF-EC46-B514-9AFF955FC505.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FB931048-DA46-4647-BD2C-821E1D566F92.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2DCAAFD5-C478-8143-BCE4-0EBC42A7ED15.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D415F6BA-9041-954D-A7F8-C391D5C61B98.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/94807645-7B98-F847-B70E-CEA3D2A542FD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5C528A18-3EF9-314A-996D-6087323A187D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9FAE77DB-75D1-104A-AC29-24139DD182EC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/461A4BB0-310E-1B45-8102-401B808E34DA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2EEFAC79-5149-A147-84C9-B06CA455A4F2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F8134F62-2B25-0942-94BB-2C73D91774D8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/931A6F69-B47A-A44F-AF02-0FC53BBE5EA2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F6AE9A6B-70CF-AA4F-93C4-A10B8F76CBDD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/929FB996-CED5-9E49-B61A-87946DD09D9B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/34546A03-C7C3-A843-8643-DE620710252D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B453F787-B76B-894C-8F68-AFD2618E91CD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C5EC4C8E-1C76-4E4B-B897-2528CE11A973.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C5D350F1-1461-3142-9770-E00B36604C26.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C4BAB64C-E793-CF46-8559-1DC34000DA9C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DCDAAE34-90D3-4643-97B7-1601DCEAF54F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/95FF4427-A18D-9E4A-8A78-2965457EF3EA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/8219878F-9EAB-2B46-8123-94A03E0FD5F2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/BE1D3832-C6F3-274A-870B-9441D0C4BC56.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6F5155A5-44C4-9043-8408-D5BF93229539.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/056D4F4A-0681-1A4F-B209-A1B1289A3779.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/05847310-6845-7244-9FE2-53C167E8F71F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/11110FDD-9EB5-524E-82D4-6482A50993B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/6AC7DEF0-7DF8-2E43-B259-19D5A78778EC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/41B480AB-381B-784D-8DA2-24F90FE8CC1A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7BAC1160-1913-FD42-8248-216A4CEA3B2B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3ECCFB77-9547-0649-9420-B5812E82FA4D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/7EA29D31-6264-A34B-8260-C91CBD14F032.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/6C0EAEDD-2BE8-CA4B-9F20-2DE601C3A97C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1E91FC36-D120-8644-BB13-9133EF000402.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6409E624-05A2-DA41-879F-893682828F4B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/202C0D00-036E-0441-BA5F-669A64CC3AD9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/61ED54C0-08BD-E84F-974F-C3C7400BB8A8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F12B887D-F58F-DD48-86C8-5D420BA6E6D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2DC3A84E-0AAB-944E-8CA9-075A4C3E6227.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B9C4FBD7-7D07-A545-8F95-BCC8F053FE6F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/50FA6BF7-C42F-4B42-98DE-31A993E274D3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A159C855-446C-4B42-8526-D46B6875AF62.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C1F83518-7603-2C49-AD4C-86D7753AC35F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3C067FBF-875B-FC40-B043-0E034A54AAF9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C77F7464-7650-5948-94F3-F9E32FE67589.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/0AB124E5-0814-2946-95E2-47D891A9CD65.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A68897F6-0BAA-F34C-A914-13276B69AAAA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/532EBA6A-77C4-F140-AEFF-A8809C05A286.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B29F8970-6194-6A42-805B-553984577E61.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F942D8A8-874F-5842-84F4-F2FDBBB56216.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D1AADF49-BC54-104D-996A-9DFD7C59E6B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AD3DCAEB-BCEA-CC45-895E-2404A23D8D2C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/7B6F4F96-C839-8D4A-B81C-35A835CF13CE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DCBF464E-2584-4B4C-A362-69F2EFF894DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B9A09808-63D9-204B-BBC4-C1949D91ADB3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/85DF66CA-A6FB-184E-AE96-24280AF7F83A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/62AAC817-AB68-0946-B5A8-FBE37D71F2B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/64102155-1DAA-FC45-A048-D90E32CF48C1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A8CFB008-A281-8C4C-AB7A-17E487777D08.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/41F29282-4C14-F347-B3A7-CDB8B1B33C9A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/872CDD0E-B15C-DF4C-A98C-6568CC65BE51.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/97A20839-E0CC-DF49-B4E9-0C34B774CB28.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4CA8C145-5017-2542-AD30-26F5AC7E301E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/26D6CEBD-5F4E-6344-84D7-985A0AA2D461.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/61579EA0-FE26-A446-84A4-9FFDFDE5DC24.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E6801BF0-693A-1B48-9093-EB80562C7D05.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/69363C8D-13C6-8E43-8A57-43E1812D7EF8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FE072233-E927-1447-B1D6-FC3606B73B08.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DE8D2D0C-3013-5346-B56D-110C5B5C2EC2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/863112F6-E5C3-5942-A593-01714B3FBE66.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/727B884C-C1B3-574E-8D75-023460E91C02.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FC5590EF-AA25-8D41-A1A0-42A65F5C245F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/15A1BD74-EF88-F541-B8CF-74D001F86911.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1A20C4E3-8549-D24E-BD9E-B559CB3EFF85.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AD5F387A-4FB1-5C42-8192-AE3AE546FF74.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DFF35944-C2CD-EF4E-AFF2-99CBA673620E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D173AE98-A69E-824E-83E7-30A4A57CE49B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/42D3D6D5-0EE8-A347-9F8E-8524804618B7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6ECEEF6A-64CB-584C-888E-79D020A30384.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CFA66B55-B055-A54C-B7AA-3892E84C3E62.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/880C391E-CA39-2943-83D0-55FA41FECB2F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8EA76B7E-6DA6-794E-AF74-BEE2F4E844A8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9860BA78-0100-614C-B187-EBCC22CC080B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AF199E06-DEF7-F344-A2AF-E5942308C604.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F62F884D-9727-BD45-9083-EBD895DB2F99.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/731059DD-4F3C-4546-997E-EAC6745804FE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/916F4A78-A70C-DC45-914D-1BB71CFA4A47.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5A3234A9-7675-5743-9C6C-A5F5F8539741.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9FB84C4C-D590-4444-9A58-C87328B5D83A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A75CD84B-D08C-F94A-A68B-9647DB9E0B53.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AAE7F72C-B4C0-1643-9221-CD30D70B3FD2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/141CF603-61F9-474A-BB27-82CDDDF38179.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/96822A4B-A45E-7C4D-8D6A-951D974C7E20.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5DFBF134-CEFF-0F4E-8179-AEA67ED6B32B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CA9F4A37-5D69-C648-A8C1-09D04E1F8D06.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B8446AF7-B608-A246-A6CC-A3B4180724DA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BE498FC6-61A1-724B-B2A8-2248C7F056E5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A1021226-0E4C-024D-B6BD-B0FCC3686C65.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/FBBA8697-F180-7140-B1A3-447E44F4640F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4471AA13-8AF8-374C-B0D0-C337F0D5AED2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/84B228EC-7C40-F743-B08F-F10B7D06DCE4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/86D64D7B-A727-5E43-962A-6E7AA1F8D2A9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/771A1F2E-AF59-BF49-914F-2566D62B0A0C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/873DDD91-63EC-7448-B36F-CAEC15938CBB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/38DED7C5-E65D-AD46-A573-FFB7C93C6F9D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9E1818E1-5532-C04C-8040-14603316D9B6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/00F34E27-7CBD-5C4B-9E17-9E7A1F2BA04F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9A5A5C6E-8CAE-9D4F-A7D9-DD4E561909AC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D4DADBBA-EE79-E747-93FA-9A3AD00D844E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/24B7745D-F22C-684B-B5BA-44635A0B42E2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B5E1C109-EFDE-7042-B093-B043866634A4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3D469706-52DD-5C48-8E8E-028A868CC4B3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/81557DB6-991E-5441-A2CA-66B1D18C7F38.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F1450BDC-6C3C-3B45-9B34-7810688AB281.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B1021E56-8C1B-874B-AC38-25FA9BA3D512.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DF6B947E-A9E4-4A45-9FB0-F116D44A1FEC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2FE95690-30DA-5B4C-99B0-B17963305766.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EBF11993-F9E7-BD47-B2E2-02779EFF8436.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4BCD7686-95A0-9549-82DE-AEDF6B1E4933.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/65CBA6C3-5FD1-384A-B16C-30A9AED996C5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EB27FB6C-63DA-6C40-B0DB-8714EF714D1C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6946E399-9291-924E-B8FC-E575A9EDDA3C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7FC9E41D-EEFA-914C-BFED-CD3969E867D8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/86F87633-7B6D-5C49-85C9-E8B37CAEFDEE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6BA82F88-A993-424F-8ED5-0A887A4A1383.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/58EEC413-3BD4-544D-8B3E-1BD21C0D0830.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5EAE7685-A516-654E-9764-09E96250B4A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/66314DFB-A1CD-BF46-97E4-C84439D4C1D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/97BBE02E-75D3-3C44-9061-900C06B5DC93.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4CE7BA53-223F-C94A-92C8-8D877F96276A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FB67C125-1325-F246-AF71-75301FB31F73.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/02EF39E6-DDF7-6843-9264-37C92D158AFB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/82CF5C79-3810-A246-84F1-980ACCC131F1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5B7DEF49-4925-944C-B93E-E2A5BBBB7AF4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/80910760-E6FF-D44F-9249-384F691AF85E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CD92DB45-2216-DE42-A3A3-D206DB747DD0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1A0BD6DB-56D4-DF4B-B89C-0F8237B02589.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/90919CEA-9C82-A04B-809A-BC5E8F4A96B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D63AB2A8-6C34-E441-838E-E9D8BCEEE930.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3E4988F1-6202-1746-B038-F4E4EFE5CFC4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B5E65ECA-00F7-4D43-A2D2-B85DF9538D06.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/44AAD7D2-65CB-7143-BF43-616DF76E88BA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/067A0DC7-03D4-454B-8488-8BAE6B9B48B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/DEB9AC71-E027-794B-98CB-F104D394A947.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/56414192-9C65-9545-8F05-1392A5375925.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4B9C3619-0B6B-0341-B089-A5A12091AC27.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0962598B-857D-2C4B-857E-75F21A1EDD72.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/4BB5BB81-4186-7C4D-BA36-9C0F1831957E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E06A68AE-1DC9-A847-B353-69E5BC55DA15.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7DDBF7B4-AC29-3042-8EF4-7F4D560E8B06.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/681CCD29-C984-2A4E-AED2-9575D3D13A4A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/48B509F7-D73D-144C-B170-60F04D780690.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/C119B309-878B-CE46-8373-2E7DD495E7CC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0684C14D-482B-AC4C-85DA-D55CAB8ED69E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9561903C-A2BD-9A42-B83A-B810C9D972C0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2F49367D-B254-5A4A-93BE-928F1DBACF3F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CD36F0D4-A4F9-2B4C-B1F6-D673029A8B34.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/06925587-EEC5-3744-A83E-B7D34A59E71A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CBB89292-B61F-7840-A8C6-5EEFCD92E4C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/863B7B2F-EC72-9545-B3F6-BBA1ED80ADF0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/95A1CDFE-9002-0B41-A4A3-4BBFFBF17504.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F6E14136-C118-894E-A363-3FE185ECB5A8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77B89A0A-53C4-514E-953A-FA49BF2D9242.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/5EE8C40A-BF76-B449-8386-A5310700D838.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FB5DE455-6E00-D24E-9AA0-D999D2E595B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1DC20936-FDBD-A848-A266-3AAFE73EE92C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/09B45E2D-2C25-EE48-BB9F-19421B271EAD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FBD30C1A-DE23-2545-84D0-C6FC3CCD4C9A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B0A15E14-914A-BC4B-B4E7-744E5D9E9238.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D10D366B-DE2B-324C-98E6-AEB102AADAB6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B82AB1FE-F426-BE47-A718-5F19B1996E04.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/687D2B70-2C20-5D41-92F1-C2D5BB53437C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B3D72ACC-5023-BF42-A679-79DF2C9F8EF0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BF8305D1-71DB-1047-B4C4-6FB00FB8F8FC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/3713324D-CF12-D64E-A3F6-D4B2D8BB6FE4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/42AACF28-2161-0A41-BEBC-8D4400E91F9A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/458AF352-864A-2B4E-96CE-51953B8431E1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/385BE71B-75CF-7B4B-87A7-C4CEC7D5D57F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/308DBBCA-2F1E-B444-9669-EB4AD8C78A70.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DF3E263B-6DDD-7B4C-9757-597D37F17BCF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BA62AFA6-83FF-DA4A-A5F5-B7BDE1E5AE6A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4DB21415-5C94-A346-BBC0-431217C02889.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FB305152-477D-9F41-9563-0A4C84F5CCD4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0D7CA920-990A-2544-A7B9-4D155A7AAD8A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E6A9154B-B359-AC45-BC0E-7CEE578E7C32.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/3167B6AE-9D17-484B-97FA-B8357B821559.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2FDA9B15-2F37-D840-AA2C-01121C1E9011.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2222EAB4-0A26-424E-815A-5171C7CA602B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/00A3D61B-CFD5-6242-AD81-29233FEB8739.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/33501D76-BA06-F84F-8E0F-59457C7C4B14.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/26D15FFC-420D-A346-82B7-A45441EA27C0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6CEDF581-B913-9E4B-ADEA-038C48617DC7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5EB2059B-2C70-5746-B098-1860D08156E4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/853D1985-4BEA-714E-A610-124888755731.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/48373C5C-B662-EF46-9364-DBBC9C311CA9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E6226D97-143B-E446-8DAC-DCF5523F3505.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A36047FD-0BDA-D046-92D8-4901BF47DE9A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2F8A5155-4A90-5748-A54C-A4A9D278DBA6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/912DFC47-FAA2-E348-819C-3F77ECE0775D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/7E1DB701-05A2-A04C-89CB-0C74139E876B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FB0693F3-9753-5D4D-B020-CFB2AD0C370C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/75A9E6C3-ED0F-7B40-B5C2-597FC00785B1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/25DDB915-04CD-7E4D-BBA4-D47BCD3748A4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2B3A44CE-94E0-4547-9406-186563481CCA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3388D764-E73C-8941-8EB6-E3DCE93B70EB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/AAE7BF15-7221-A24A-9D8A-49A1C363599B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/FBAA320A-01A5-214D-BBC2-52A62E8BDFCB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/97764962-2B02-1D44-AB5C-4963373797C0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/77D599F2-5354-104F-89A1-6ED4AEBC5682.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C255A5E0-9D14-4740-A4FF-7D03BFACE991.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8B28AA25-74BA-3840-844B-9474BB2D5DB6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/1E16BB59-D129-1049-8A87-A1938EFEF6CE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/00844E11-9269-A048-8DA4-501EBA66C055.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CA81EFFE-0AC9-FC4A-9090-A4AE56D55A86.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0327366A-307D-9244-8D6B-F4002E1E0271.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FA931567-243F-F544-8745-F89126E3BE9E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F13BFF47-A734-CA43-97B3-971DC48342CA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/72A89E96-BC7C-F044-92C9-DC1882EC628E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/171AE920-08AD-5A48-BFFF-9F08760E8D50.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/402D34D0-2FD2-2141-A872-AF05922F42C5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/605380A7-D76A-A14E-A732-E4E30A06C520.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/ACEAAA1E-D1AA-4F43-9D95-BB0210C5BF1A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E72595E1-9B3E-6F42-BDEA-3890D3E3AF9D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/19ACF611-D02B-1245-9D58-92E7F341B836.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CEC166F7-23A5-3342-A3C8-1CBB18CC908D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E34DCC66-44D7-2748-8AB9-A05C5BA23C6B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A42BC3AA-BDA7-E94D-9DFA-651584B17DC2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DA26EE36-077E-5041-8F85-9F41D2DB361A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/46A66F2A-B5E7-E74A-AF0C-2D27E522146F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3112156D-537A-AF42-B574-A07B83A0D1C3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2D326C51-30C2-624E-BAA9-97138B9C9BC2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F95B8301-6765-5D4D-9D0D-2B7BA256837C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0E29F6DA-4AF0-6D43-BE10-2EDDD78EF726.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A892E058-CD4A-354D-AED2-EB3B85EAADCA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C73D9BFB-D0B4-8D41-A303-F2ACA796809C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B8F4012C-A169-CE41-9480-225EAC1F67B2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/05CCD4AB-54CE-704B-965B-17893F377755.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C08F9C8F-917E-1247-ADC6-A3FD2F771F54.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3BCE4383-3220-2C4C-BBB6-31D2019EE5B4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E39CA095-42D3-7F43-B521-13DFE177F4F5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2D407997-3CCD-6247-AEB0-F66BC2A7FB83.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/5B14C2A4-AFD9-F847-B193-D17DCF878595.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/D6496737-9F5A-A34B-9D5F-5DCF1A528113.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D321C2A4-8DA3-3B49-864A-EF4B22BFAD51.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BC56C017-BBEC-BE4C-8969-C17022F16CE7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DCFC81AE-8B0B-7B42-9E96-B2E172180C31.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4CCADE8A-A24F-A042-BF59-44CD3C51BE6F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/80C949EA-6649-F541-BD12-10BF65F94056.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/61443A45-07DF-BD4B-B23B-140EA5BB1435.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/283FB61D-864E-FE45-8108-082CD7BC895C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C8305C3A-F37F-F645-919E-0C434CFD1AAE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1D966269-FD1D-C04B-B5B1-A59F91E469A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9A6516BD-4FC8-A94E-B881-F640B8A254ED.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0A806CFE-3906-7447-8D81-406F949DF2D9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F6AD8170-1AC5-5A49-859F-E0830D22C024.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/46A8871F-113C-D946-8710-1CE12CD9FC82.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/81145CA6-1F55-CF44-B6A9-D596D5D26EC9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/752D90C0-92CA-8B45-9309-2713EBAB00B4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C138824A-0FF8-3143-A45D-BA4A5422842F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2D6B5C7D-8EE1-1E49-BBEA-6E966C8462F5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/4D1CBC25-0897-C447-B7D8-17482FC70F60.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/8092B09B-5D7E-7341-9A04-703BE3FBE14D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/99159A0F-8732-3D41-A469-163337B1E2D1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A8E633E3-1513-FA41-A994-C98445B10134.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/6EE898D4-BA0E-6B4C-9EB4-42C7405DF408.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/352027EF-9CF5-164B-B484-F0511B97B5AF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E2671A4B-30BF-214F-AB09-F1A6EF2D3FA5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/783D35C2-BCBF-BE48-8165-83BE1753EC54.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/8261A1E1-3131-454D-B623-0BFE58750C75.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/D1B25BF3-1A23-0842-B6AE-133B319EB379.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B78295EE-7F69-1A49-9FF9-0C389E09D1B6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3148D315-B668-6348-A792-01CD4087CAA1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/507FD7EC-7F64-CE46-9AF2-1613C07A408C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/3B0199E2-5DD9-9C4E-964E-FBCAEABF8298.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CEF177A7-9FE0-D447-8354-A5E2678D186F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E13CC6CA-33D5-B24C-9B2F-2E9278429C6D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/5A13EFC5-7A12-A241-BEF3-1CAF9D507AC6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1EE0AB73-4586-904F-AE1A-57B30EE8F73B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/164992C0-4341-594E-B995-8524170A6EFA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C3101430-A981-344E-81FA-569723891CC9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B0885E45-AEA4-354E-A262-4E67B0164EF4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/50A91701-0F2D-0F4B-B8EB-371FEE14E1C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E1D9B041-9AB1-1449-AE5E-384C8F56B8D6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B66B281A-C24B-A145-B039-267752A463CF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/84C5C27B-A1BA-1247-8D89-49DE633E8944.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C9AB2666-70B7-5640-8BD2-991922712155.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/002A913E-5E1B-A246-A20F-D04F6D12E7ED.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/50B30C9A-6E2F-8540-AB2E-AEB62C767213.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/EA46B1BD-B19F-FB4A-974B-97CCDE57655F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/65FD540C-A002-3746-8E65-13BAE7CAA414.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/817F6807-43F5-3D4A-9BC8-0A93BF689C82.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/74C52C54-0230-AE42-8584-F807FB28E037.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F6E351EE-B683-3743-9C98-B2C1F0ABF697.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/630C263B-1108-9E4C-B7FD-583181CA8AAC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/9DA6DB65-96F9-174D-B756-E069DAEBCC93.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5F278847-6142-A64D-93DF-9437B05897B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/0931F969-4857-1440-9954-794ABA8BC05B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0CC027E5-BB4C-9D48-9E1C-D156E98412AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/01000B33-AD14-4846-B6A9-B489E869D456.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EEB2A9A6-63AF-8949-82B3-26FDE4167B38.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0324E538-3E56-1745-A4E7-5E778E98D74B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CF0ED8E7-CB4A-E742-AA33-87BA1E9D6DF4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E82D35E8-2DF3-8049-A63C-C85AF8E59A91.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8B5F5CB9-7226-EF4E-BBA0-F9197ADB6F83.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F770B281-227C-5E45-8339-97C085747F43.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B3CFCD46-75C7-2349-A181-D95791F46540.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B894B046-1C38-7349-8D53-96E23E2A1976.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EA1CF9B4-02E1-1042-9CAA-B1A19BFCE788.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/F33E2F4C-6D4C-F34D-8512-7AD3A4F1514A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/366C658D-DF71-7042-9232-33B223EBF1D6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C6633002-6C83-F948-A466-C3DC6E0678B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2BCD8F86-2C51-B048-971B-C391A3602096.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F19EE90B-B25B-BB45-80D9-8F6A58CB4893.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/147DEB74-D103-6E49-94A6-B7D58821BBC0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/546CFDC4-20A1-2047-B138-3D457391C501.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/724BDB6F-1042-A04A-B796-93B0934550C0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/22A1DCD7-4376-2F43-ABF7-5C3B547971BC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3EA4789A-9A6C-0D4E-B84D-3317E70C69D2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EE11B966-8D5E-3D46-89BC-BED2717D7FA2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0CF90B41-9039-5643-AFA6-5BDB50374BE8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E064E35C-135A-1248-99AA-B586D3B4B55A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1E58A88E-0D62-B74B-8DD8-A105D4C7238A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A3EEAEDF-DF6E-DD4E-9741-43E1037F874A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/47CE6E13-EBC0-224F-8E6D-D44464DD737B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/14128D1A-9500-904D-B9BD-1E18F962E187.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/24265399-0AAE-2549-9712-EBD3C08EFF65.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FF2023F5-3F31-3141-B746-26334DE6369F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CC2A9623-AFDB-7F45-A0FD-8F76367BC4A5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CC062D97-876C-FB46-B16E-6BB2C9A5BAD3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/733AA59A-89B7-0941-BD6C-9FFBB0F82481.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/265EF61E-DB0F-104E-BCC9-5014B7E9E2F1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/75773DB0-F7A1-0647-8EFE-44D3369C3C5D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/14FA441B-67EC-A34B-8A4D-C48D177B3B5E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EEF105CF-0D88-804F-93AC-0728C04B7704.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C5E0B84A-9C68-7742-8D51-757C9FCDDB84.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E5BA093C-7978-3E44-8637-D09D9968CBCD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/9CD42BB0-1C26-FD4E-8A03-2A217D231F7A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/EC634768-3DDA-304D-B8E3-F337969E6662.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/83116E62-A9D2-7741-9523-C7EFE8ADD20C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/68098345-55EA-3746-85CF-D52DCA11322F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/21EE0B5A-E100-6548-8EDF-39337021A19A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/7BD7EBA0-E1A2-1A4C-9073-CC2600D1821E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/12CDF336-16F9-A444-AA2B-80C081176AD9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/69F08CB9-0F3E-EE45-8E75-F9356D0B55E9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/01DF1BC1-A738-C242-A45A-CF03A3476E23.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9118878E-1218-254C-BA3A-05003DF95A9A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/07904DCC-B6C6-7C45-B4FE-7E716FE984FC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B6751566-55B4-5A4B-BCF8-3B77F81435F6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/DE693B4B-E394-7A47-BEE5-D7204D37E95C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/BA4E20F8-53DA-3340-999B-28DB3F085BC1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/DDEA822E-4BE7-5C44-A8A5-B3D19BAE21EF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F5FA6779-3605-E048-9B0F-D065D07C36D4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/964FC4BC-4E38-834B-A932-2F1334B3B6BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C5F4042D-6412-C149-BEE0-B4B05A0BE497.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/9BE3B38F-8525-354B-9C5F-578C590D7F49.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/DC565339-D698-8A46-B7D1-CCA7C88662DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/2A8E9E09-6B4E-5A46-A37A-F7B77DD5BD69.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7EB530C3-D486-E742-9F81-725698DE7054.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/7E3CB71B-7952-324B-9F6A-AE81F77DD189.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/59E27CDE-083A-6E43-B9FA-C6078E4BB4D1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/6289A825-3FD7-614C-92EC-A745A9221AD4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8B1A366A-9B93-B74D-A388-131BF273DF41.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B9A0CE52-250B-2242-9495-362BBF7CE05C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7E6224C8-A804-954A-82D7-E81A4A136969.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8EFD2047-5916-4F4D-9A88-308BD12D0263.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E2C2D571-D251-B44D-8AA1-D8B9E9E5A9D1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/250E12C2-F59B-A444-8C67-7D36E56D1B50.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E7EF2729-34CC-7F48-9AA7-AD176128FC1E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/BCE9A15E-4CAE-D64F-AAC3-9242BC94718C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/8D36BB12-A0BF-3040-B7B7-BA742840FAEE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/711F7D25-3569-C048-8E93-CDFF6001DA09.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/4A29C451-6EC5-2F47-B423-B58478C21886.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/15600FC7-26FA-CF4C-84D4-396C3B76195D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/05F886DA-D996-8B4D-96AC-FE6165A6833E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/086BB238-33F3-B94D-9B77-339B563040CB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/25DEE940-48BC-194E-9006-F41A65BD25EC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/11A000B5-84BE-1C46-BF50-853141AA9B0F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/ED0BE7CE-9CEC-D847-ADAF-D6D46F729621.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/152CF812-220C-344A-8215-B9A52C0CE5E5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C6A2FD05-6E56-D242-A3A3-34DD78677126.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BD1FE852-5E13-F042-A2EC-7989EC1DCCC4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1A96D0D7-26FF-DE4A-A5C8-0B42AF5B7080.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/18676DDB-A3E9-334B-B3C5-9A500A438193.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E06E29CD-E94A-C747-AA21-BFAF74400D1A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6357B3C3-0E35-1641-8D40-751A7DEB3D63.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D9AFB17D-E2AD-1340-B9B2-33F5EA5CDE4D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DDC04ED9-ADEB-C34F-90C4-EB906A635A63.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/51F19093-BF2B-2942-864F-5A683CC39BAA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/7770BDC5-E360-8349-B0E6-5D6983C8D0CA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F9A645A5-15C0-0E45-ADFD-8E9C90B5E757.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A4C9AF19-0EC6-8B4E-B323-5626C5232451.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D4383744-3A18-E446-998C-8D0336849E16.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/55D3B406-0983-D64D-8908-6997DAED8F44.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FF5DA909-83E1-DA4E-A310-58C21BDF5471.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5225DFDC-26A3-A24B-BB8F-EDB629882952.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BC674AC5-91B8-B242-AE95-077629E8F104.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A6376E75-AFB3-A941-AD5D-87F273954EBA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BCDD1E3D-BCA5-E244-BCA2-1D9A21032E5D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FFFC85FE-A632-B14C-9626-82FCD1E55E87.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A232D1B0-327C-9A4D-8D48-8E15246A74E3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/001CF3AD-26E1-214A-96F6-66C001C4C5BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/86FAFB91-0D28-DF47-850C-CB6DB6FB290D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/64E8541B-2102-324C-B488-3428BFCA327E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/6ECF942A-A70F-0440-9BAC-B43A00CD6DE3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/42B8B483-1605-634E-B1BE-3D9B6E1ABBDD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/64FD87DC-AC9C-8B4E-886C-5FEA5111E3E5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0049AF09-628E-434A-B0C6-49E34A6DD5E4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F9FD14D1-C3F5-2546-8C16-26DA7D8AFD0E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/D1D0D3B6-F0F0-BD49-9BB8-51A93F35A957.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/7BD74C44-47F3-DB4A-823F-A2F0F911FFCE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1C235811-07CA-5B46-8B1E-BB0C58FEBF18.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/ADA5EA86-9436-624A-9586-128272695E5D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/80EC635B-BDA0-0542-997A-B8A93EB33EBC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9CBA92B3-75AD-1D44-A8C4-6EDA51CAF832.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/53EC5F41-1E10-6D4C-B53B-2CB3734C072F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4F8E3D37-1228-6C46-B249-79C46EBEAE66.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C77A045F-3FE6-714B-BB76-44FFF8808BD4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/67857F1B-6230-7245-8E66-0F9959CFC926.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2F99A960-93D3-B24A-87DE-2B6627DD0232.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/537C5628-08BD-AC45-8A3E-7C2BB4F65F53.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BC1BA67C-78CA-B444-9744-12D9F248692C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4DDBA80D-0078-3149-B1CF-BE28A828C03F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3804CE24-7D6E-3C4A-9187-F7D28D29CB19.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/FCA56EC6-B934-DE44-93A4-26EFD762573B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/85439206-C8F3-E040-BF97-0DAC95F8D02C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/9E58B446-A429-6F48-8C53-6F899F09981D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/DD318A7A-EF93-7945-9EB6-DA5A781FE32D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/22D85A5E-4BD1-7247-90C8-72E20DB9DB22.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C01DEC82-CAB0-6D44-9D87-75442C1DBE20.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/AC0967CE-1A2E-3D48-B771-AD663876CEF3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9EAAAF54-2090-5449-9BEC-92FC6A8E2B78.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/D378260C-9157-2548-A3FD-E4CBFF0D1F94.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/771FC10A-42BD-1443-8304-0B2A3ECC5B1D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/105640FC-BCEF-494C-B2C7-BDE28E4F9FC3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/8590714C-6AF5-D748-BA37-39C2F05C42B3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B3C1A86F-1A21-4D48-8FEA-C83024866EE1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/7EBD2690-4EDF-BB48-AD47-ECB6EDC388C5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C3924607-C79B-FF40-9C9D-6F853C5057A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/383646AD-2DB3-8645-B913-70E6646CA7A2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C43649CC-1E20-5346-86B5-D6CD5200E22D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/99470F34-A39E-254A-BC17-74FBC575B1E7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/79F1AD85-B561-7848-92C9-51A4CF380636.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8682000B-7740-9647-A793-2BFC93AE129A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/EE8D4FC0-7E79-B647-ABB0-665B37743BC5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5C439DE3-7BAC-FD42-BDF8-101F116C4621.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C8CBFCD3-34ED-2A4E-AF37-A988B3772241.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5B01A971-9F0B-C44F-B0BD-2050EBDB9F09.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2C9FEEE7-3A89-9B49-9544-0FC23B19A8FB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/989AC556-A737-884F-B27F-FDBC5C19F8B5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6629A0C9-706B-374F-9BF8-C345CA6437BB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/1155FEE1-C71F-8541-BC86-6EC4205E3873.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/287389C6-EAA9-C349-8921-82CEEF34C8A6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2BFA29A5-EBDC-0B46-8353-A9EFA1861074.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A19CDF7A-95A2-2843-8293-3342F2A85C0A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/AE17D4EA-5FBF-9A4B-A118-3F0BB5F49596.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1368F025-1F35-1845-A72B-2B9E05CB4081.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C96D769D-6CDD-7E4E-A561-E33FDAE82E61.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2E6673E4-ABE3-AC44-B76E-205FE2D0504B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9637A0AA-97C3-D943-8AF2-4837321F1138.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/61C45FD9-23FF-D64F-82C1-966C86C8283A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/DF2BD401-00BB-F944-A6BC-90D1B49AB98F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/94ED63F1-A83C-D347-91DC-D1BD599EE657.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A3BB572D-17ED-2F48-AA40-1C4431D9627E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D33671EF-0463-074D-A514-6C9F265F1475.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5886B6A0-BD12-CD4B-8B2D-706C872AA574.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/D5B8DB3D-47AB-E548-A86D-EAC9C64E1294.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/3FD14192-5148-404B-892D-DDEA70C4F9DE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/52FC6356-9CD0-3947-9F86-1CC540278997.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/73A204C6-85A4-5540-8567-3D7A13A9FD70.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/97786B40-FAE4-0546-9E6E-BF9044F38CCE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E05F868D-7347-D844-B0EF-40D9C8161995.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0E02B969-4DA3-7A4C-A73A-375C438C302B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1656CD23-97EE-9847-80A8-59D6B18A1DDC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2C3AD5F4-0408-BE47-8FCB-5280E38D8F7F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5A403CBD-D0E6-CD49-BA89-11BF59582554.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/65EA024E-FBAD-E34C-96DC-4D6C55AA156D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5637242D-5855-5447-8915-0451AD799038.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/295CA7CD-2801-A946-953D-C07B122F289A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/D5CEB374-EE87-BA46-A487-94FA58B5B173.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C1F9E67C-5252-6443-A024-E0649708AD09.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/89DB007B-D0CC-B04B-9411-040D8774C727.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F65FA8DA-A517-D74C-9A64-1D21B442E947.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/99B94ABF-3F24-8A4A-A8A4-2770278DEDD4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/8C581888-F973-D64F-95C5-3CCEDC45C2B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7F193056-5726-4E42-8F8F-1570775B64DF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/08F6E200-D2BC-ED40-B681-63CF2DCEE5AB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/123F30B1-987A-A349-A5A7-DF6A7CBBB168.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/36A3DC85-9299-C241-A05C-524517108E0B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/751A0922-B215-874F-878C-9E334800D808.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D26507C0-97F3-E84B-9B5C-C42E93C16F70.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/887A22D5-F72C-974C-8FDE-DF091D28DA1A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/233367A8-C935-6F4A-A563-AA7E3B724BDA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1F49FDEE-87AB-C742-8E38-58B1AB8CF7D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/664F51A6-0233-8B42-94CC-D4AA3CDC81B8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A2393D58-467E-4642-B630-DC691361F49B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/03A56E4D-A168-434E-8DB5-DDF566EEDD08.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3F97B67B-4604-744F-ADB7-1F28504267D0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8261ECB7-1F16-354C-98FC-005A1F2F4AEE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/8413574B-AC59-7545-A977-7DCF4A0A6E4C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/918F029E-D2CB-B044-987A-D6CE30BB970A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/809FF934-D03D-114A-B129-48987175AFF0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C7B428B6-2727-734D-A21C-ECB9F1B23A1B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D6146E97-B172-5348-A119-86EB24D6956F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9663A922-87D7-8C45-ADB1-63496EE69BC7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/009CB42D-7E17-CF49-ADCB-1CC420327EDB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/80A6B8FD-A021-9345-A73D-7457CD2A6919.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E3A7A077-0B24-C946-907B-88F80F4874F0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/41AA210D-56D1-6243-B7C4-A34F12289D9D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6C6224CC-AC50-6041-827B-FAD3C40AEF8A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/05D0B8E6-E1E2-9F43-A4F6-A46CFE9D335E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6A5AFB87-B1C5-864B-9A13-91FAD9119A7A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A9759D90-7C4B-594A-B75E-564669D4DCDE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/18BCBFD1-76EB-1B4D-A832-6DB2923D8CE8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/876768C2-341A-CB43-82E4-ABE270779E77.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B1E15BA9-29BF-AC46-8E8D-FE8FEA066C52.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E426976C-98D3-B640-8FE1-791494E6FC35.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/48931432-219E-3E42-84F2-5668A100CB46.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E295D5FD-6337-3B45-8E1E-F55685D089F2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/94751379-7EDD-4C42-9551-EE55FDC38D91.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DA450E78-A929-2545-9F10-2F491447E68D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/859C0138-4DEB-F84B-9E70-9E0129AF31C7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/D573EDC0-7CF9-AF4D-8EEA-C25E76BFA0AC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/44A848B9-5D93-6B4F-8939-23EEDB1ECEBD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C2AFA819-5978-154F-9F9E-84684CC0C573.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FAEAD13D-6EDA-B541-9F3B-E8F3CFEA036F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B05BDE76-49A3-6D4E-956A-774E656FD66F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1ED00316-1F0C-8E4D-9AFD-D84B88083903.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8B0B45DA-CF42-D942-9FE9-251D6ABFCA20.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B842DB67-1782-704F-A065-9DF5E578D784.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C88897AC-EA43-1B49-B3D0-0DB41F72ED43.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/28B9A139-9C50-9B43-994B-01F2A725FE67.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F510C3DB-7070-704D-9AD1-8B3F0879F747.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5E1CE12B-69E9-D243-8F0A-EDF5854B333D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2C50B72F-CA81-E04F-8176-4551062D015D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0025DD29-85F6-DD4A-8B8F-580EBA03AB3C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F2A13461-BF79-2543-B718-D05A6F33CF5B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9BD3789E-3A9C-EE44-B7EB-099687147ABE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/75B8F8F1-3F92-F14F-A1FB-4F8E7257A5A6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D1B1C535-83DC-3143-9328-E2639C24DD7B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4CA322B1-7635-AF4A-85D3-909B6FC72736.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C5BE6AE2-FA95-6442-8572-D806CE355C4C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D6FD215E-8EFB-514D-B0DB-53A3CE63681D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F5D2F8BD-4F39-B24D-AA16-1FFE74959759.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/CD737071-F96D-CD47-B897-B900E32A4409.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0742384D-C1F3-5D46-98B3-FDFF9D26D157.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8505B544-0F54-294B-94E2-147AF81072BA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FCACFA61-90BE-8F43-B22C-11A971D4A398.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3B9CEEA1-E25D-9640-9947-CA083A6F1D4E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E32F4884-908C-4643-AD3E-5C9986ED2922.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3D9059D1-D775-C346-B146-44C4A701C3DE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/F9A911E1-3E5A-2743-8325-061AAEA19E35.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/CB2FC999-8385-F54E-998A-1D0F0533A5AE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/25FA3BB4-966B-104F-9325-6A4A1643FE2F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C3169424-B9B2-B948-AEBA-85D460CFE0A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D8EB22DF-7898-434A-9BAF-CA8D50FF97C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/CAF479C0-1738-DD4E-BB6B-136461F0FE7B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2142CD86-087E-CB42-8974-0DF109D96661.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/41C9A9F4-A292-1246-8998-A61E3B9D9481.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/246350CE-8816-6D4F-A7CA-ABCB4F6220E0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CB047EA6-4295-3040-B9D5-BE5C9A7EE5AF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/48C19607-1FEC-5447-94D4-FD20F76F450B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1A386D35-27B6-7045-9D3E-8954AFAEB310.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/EF1AF08B-3862-374C-8EDF-D13E43EF1925.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8778C00A-6733-3440-93F1-9246FD8B135B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1FB1C56F-82BF-D844-9F64-A365D0623B99.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/72E78F3C-12BC-184C-ABD8-E780D59F388A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/4431AB05-EE7D-1B40-AC59-ED1BDCFEDDED.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F7BC4A18-7145-6C47-ACE0-004570458147.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/408645DB-1A29-F447-B281-11C062EAB996.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/6F5FB5CA-75A2-BB40-AFCE-1F9D0D923E40.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3EFD0969-68CC-A941-BEE9-DC84FF0BCBD2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/16B91C58-76B0-EB4B-91E4-3C13CB6755D4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3F657945-D79C-8B45-8CD2-661518BC516B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/59D2AB49-F068-2D47-AD1C-72A7396272A0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B0757525-59DD-F84E-8299-099CCEC6D70A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A2E09EBD-48E8-5F46-A94C-7DDC832A327F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1A40A182-1577-874C-B169-EC25ED2001FC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B9882B10-F832-654C-BAEC-F82D449C5C06.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/33F4A6A6-6E30-8242-A622-AD4C19593D52.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F325EFA3-BF53-D74E-B836-3AEE7E4B5480.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8387353A-9A61-1645-8DF1-443183120371.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/245DA370-3D6C-4F49-98EB-AA428BC92EBF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/49BDD7F5-4249-AC41-B1CA-7B7398B9EB76.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5F2EC035-3633-454D-9C03-5EAC75B6A39C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5A7A721D-FB07-9F45-84B5-FE172B0B7FF8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/AF724927-3355-8242-A4FE-3994E7EE99D3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E05151E1-61AE-EE4A-AA6E-275AE3C2F10F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8BE5EFEB-BA8D-054E-AB71-8966D7473C4B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3C7FCCD0-78F8-4442-9322-383F15233082.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0CAF4AB9-8C26-C94C-8364-6197C0033A7A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/110AEB31-F122-4843-8008-EDA1AD2F8C30.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/08288514-EA11-5645-A1D6-2E981848441F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/389BD0E5-2FB3-1A49-AB45-8461C781104F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/412DA1E9-1746-824F-9AA2-34469CF41103.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/69A2B01B-842C-1C47-A494-B8C5D87D943A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/9AA26416-314A-414B-89AA-EAD38247EEA3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DB9C3969-DE61-764C-B8C5-B608EBA492F6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B0F3084C-A808-1041-92C9-CF4565A63550.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/289EE10C-5AA4-4C49-980F-1FFEC7DFC2A5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/672FC457-5095-4A4B-B158-3F0CAD9E5CD8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B033292B-1095-5647-9F1A-2B1E6EBAAADF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/442834EB-B1C7-3D46-B761-AEF56D6A24C2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B9FBE325-41BB-6941-82F6-A513FD56B3E4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B133F449-31BD-0442-A9DD-17EADEC61C30.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C7193FF1-2388-6546-AB8D-D815DFA89C8A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E741BC42-B656-E844-B2AB-A623C9670541.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/8B36524B-D87A-6F4D-BDBA-4D2FD7D6C5D5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/280503A9-7401-BE49-824B-213C1FA90005.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E966AFA3-3215-D641-97A2-E25807C2C0FC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/9BD76C38-3337-8341-8A71-A26D23327C9B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/46510BCF-FF5C-644B-BAF2-3F1F46C16AC5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2FD85EA8-8EF3-D245-9063-6F0F7E90699B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EF864FDB-CD50-044D-A8CA-3E387A5F3CDF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/17DBE8DE-F712-AB4A-98C8-B25F5849E631.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B9604B33-8B49-DE45-BF64-03458E197AE6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/02F216DE-CF40-F34E-96F3-35D430FCCA19.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/796A57F2-BBCD-1849-A632-F0F4B484C9D6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F09B7962-6CC1-8743-8143-271B3D72B72A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/ECE06C12-2D9C-9F4C-A721-87EB9948B025.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/4B515F29-16E5-0342-B64C-E23C108584D2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E5F2C875-D80E-3349-A7F7-9A7D39F118B7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/0728C399-4406-7B43-8D67-10D7AB4A3EFC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8B3B59EF-DEF0-0441-89D4-1C8B98B07938.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/7FA7224E-E677-D74A-8E1C-BB2DF88427DC.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9958C7EB-17EA-7944-BCEC-FDE58E25241B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/52B0BD97-2176-8C46-9BA8-3E4667246904.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7988688B-70CD-7944-B593-17C0288F9590.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EBEBE115-B2DB-B243-87D8-94061418C68C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FE414685-5833-D148-A9C3-03FAB25A25DE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/12EE6123-A2D1-ED4C-BB39-D2CF407BECD1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/91836656-08D7-B948-A175-0C441538C6EE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B23D9FFE-6984-AF4F-90BE-1F1AA4A21193.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F2A7B178-F4B6-B34E-BFD5-6CB97D34C058.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F4319AA8-B967-5E4B-BDE9-68EF2CE5B043.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A388FC7A-6D5B-B54D-9C83-844DFF2B26B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B8B304A9-3F95-214D-B1E4-849CCC395E92.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4BE7D390-3BBA-424B-BA2C-0FB0FD16061F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/198F8AB5-1072-B246-A51A-5D114D02D899.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F6227331-D78F-8C48-AC7D-2E06F3B76CFB.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/28B58A28-1B4A-994C-BE55-45D1578D607C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4A62A9E5-0B41-B640-BA6F-71B3E9BC202D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/700BC591-E680-D44D-B3FB-30067DA1B7E4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3DFA2339-61DC-C040-98F7-DEF4CAF13EF1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B08A4DF0-F144-4445-B174-30F7A1C761A7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A24C9754-0F7C-7F48-A64F-8B5DB34890CD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/AD69DFAA-FA1E-6847-B84D-BA7FCA693E2C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F955F4D0-9B00-AD4E-A68A-72C67CA4E5FD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/39080C79-5C9E-DC41-989D-085452C9A4F2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F41314C8-2210-7E41-803D-503C73E8534C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/141A8AD8-B030-F745-9009-9B5E919BAEFE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/6D3D2D64-7F42-1440-82C6-9304F42B0315.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B85BD861-9C98-4E4B-A759-53B5DC927F1F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E2607FC8-ECB2-F340-8078-268994A1E68A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FD69AC1E-12EB-C44E-90A7-717C1A9C2311.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/65E29A5C-2EC8-6543-8F9D-A57B3105C625.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/66C26723-994C-C04E-B321-4FD98022145C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F7433B5F-7882-8344-B023-2621268BDC3E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A4B250EC-8070-5647-BC61-BD60B61783BA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C69B6FDC-0844-664E-970A-59EBDB9CF69C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4074F667-BF09-7047-8A15-B03FB616F95B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D3755D67-7925-E34E-8ECD-C0170CB9BA7A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A271295F-4662-534E-8C05-F588E5B7DA46.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D8712BD3-FA0E-3149-AD8F-1663CA50AF5A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/593569F0-C23C-134D-9930-BEF3587E3EB6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/088AB980-69D1-564E-AD82-9D0C424CDC72.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/097D50D1-5854-E648-9ACE-92C5CC395615.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/BE41EF12-19FC-E84C-95CA-6C20F93CD092.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2452806B-0329-0B49-A3E7-5A3ABA2DB79D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/43E58C9D-10B0-DD4C-B251-0AB806E52C1A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2822E9A7-1B22-8745-85F6-B86715384499.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1971FA48-00BC-EB4A-8230-BF8B78FA7073.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FB51FAB0-3EE5-4249-A7EA-8BE2EA7D8B6A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/25FF1F51-6179-9E44-9E99-DA3AB0076B11.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0B1AE5B6-5EE1-E647-8F89-96A950BF6EDF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/87761DE7-B5B4-3349-A0ED-2F3EDF23EC87.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/06B1491E-7308-9E4B-92CB-4E47C3CA712B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FEF1AC17-C544-1547-AC60-40D9F6912953.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/5B56F170-D52E-6841-9869-869C9F712E17.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C0FC69D2-402B-8D45-A7FB-D20AB21B0636.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E7194745-D7CE-2542-9112-6CF6EDCCD28A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2861E484-0F42-234F-9F28-7B57F849A287.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4AF1052B-BF28-154C-9A1B-8104721BE4B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9BA01C68-2007-784E-B651-E6AC7C22A26E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A78D4ADA-A64A-7D46-93F0-DB409E60ECC0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/640D81CA-0072-3541-80F9-DA9DC19CD9C8.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2724A203-0E88-E74B-86D3-08A5A226898F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/910AD872-7CFE-414F-8965-5AD4977F8D6A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/9F57F591-0E62-4D43-93E5-6EE4C9F34A2D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/43050C7C-F168-F641-920F-BBB0DD6327D7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/AD5EC9F0-89EE-8D47-B469-9F18E15C5DB1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/5E850E13-B7C6-7D47-8561-95436090ED8D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/0711B924-9F4D-6F41-865F-E6381ADAA549.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/90EB09D6-5B08-E14E-A5E7-9597D4014A5A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/44A260AE-2AC2-0045-9EF1-D294ED27FBD4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EEE2C9EF-D137-B942-BD6B-3C325466F783.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/209132D1-13C7-B74C-AA42-C65B5B1044A5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/47363091-45C6-454D-841A-E3AF20032239.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A8922960-D954-5A4D-B0AE-D7EA7FDA46DA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3C6E064B-182D-E44E-8748-F5429BADA557.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/03325B73-1E1D-1D4A-A9C5-AC893B05F7DA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/7F6186C9-6D76-D048-9811-B2A825A91848.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0DFC1A55-CC41-784B-B19A-BBCD36416638.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/51E6DDA3-CE86-1246-984D-204F70E38EBA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0D9B68A5-1C8A-FD41-9FDC-154865588A72.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/51477D31-E14D-574D-847B-67BB386B4A24.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/50D675BF-B4D9-3948-9565-F1453A09D4D6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A981A27A-99EB-9345-9790-8F0A2F005F3E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F44968D5-E6FB-9240-B676-CECFC9F7BFFF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F85B6BF0-A26E-DE47-AF9A-8E6269E4CA26.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/822BE5E0-E026-874A-B3E2-D795174C981C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/17228B7F-2D55-C04C-A3ED-6A8AFC2C1E56.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E45FEC3B-1637-CE47-8D61-D35F4BB7EAA6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/933FB3E3-2E29-EC40-9DF4-A7374FC68373.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B68C393E-1758-4240-A1EB-687481D920D2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F58EA112-5CDD-A14B-93E3-072C667B0C3D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/66D66DD8-75A6-B04E-9690-37166ED9915A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2FDB5A6F-F09E-EB40-A6A4-7E7D493CAD10.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/7F9C71E1-7BEC-534B-9EBB-FE6D6A8B304B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/37F5B783-0F73-CA40-BDCA-C82E9A4C3796.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9189ABD5-8EC7-AF44-8053-0558EF919752.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/39B24E4E-B728-1345-B692-B570B47C5D65.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/AC6C9E7C-C9E9-D944-8207-EFC92C8778F5.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0BF8E96B-0708-D24C-A12F-096FE67DE2B7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/80EDDAE4-C556-B644-B4AB-D0B3CCD0D559.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/EFDAD2AD-8A5C-0745-AA48-ED7188778767.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2A1E6309-61E0-D04A-B98D-183A20A2EA03.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/2D490515-2BBB-4248-9403-8A93941A8000.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/199C8452-E155-ED4D-80F0-21ECE2362D4D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/965B8504-69D3-1240-87FC-A42C3426E2BF.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CF00ECC6-4C3F-CC4D-9E37-139AF6B42761.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B8706CB7-5FAE-EE45-BB30-D677D7E781E2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/CAB22FC3-D8B7-6B49-90E4-05CB2AE3E605.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/7763EA85-DE63-A545-A2F5-0AF4743996AE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/05D5C3ED-123A-5A40-822B-E5DE6411B04B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/BDB5550E-DBF9-FC40-B9AA-D9AE7FCCF8F9.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DF5227CE-4371-5340-ADD8-7BEF2B182C0F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B5087840-E292-2245-A999-E35226EB0708.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/DBBCE594-44A3-0342-BED2-142E89503477.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/5DE6852B-185F-A845-A183-FB38D7D4FD47.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/15ED900D-8C2D-564D-AF23-9B37C85A6DDD.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6F9EAC3E-CFC5-1B42-B11C-7028693DB1C1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A4108D6B-9375-DC45-8443-64452D5B996A.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C7F4AF77-685B-0E44-8446-6E07B5EE97B0.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6E955A22-A175-9746-B993-583510B00468.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6E21780F-CC36-D544-A1F9-A8776A02C5B6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1DE9F256-A646-064C-AAF1-8EBEEFB1BA59.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CBEB475D-E1B8-B94B-8ED5-3398A31F7A4B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2E0B0DCE-F072-C84E-9368-3C917F507AE7.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B6366696-AA23-CC40-86C7-EB07ECED5DDE.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CD41A210-524B-B149-9DC4-8EA18C7577C4.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F5F1183B-69D6-EB43-8FB4-26F62B936F56.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/05BF8921-313************************************************************** +b tagging needs to be run on uncorrected jets. Hence, the JECs +will first be undone for 'updatedPatJetsDeepFlavour' and then applied to +'updatedPatJetsTransientCorrectedDeepFlavour'. +************************************************************** +E-D64A-85E2-12109E7BC91C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FCC1DFB9-48E7-9643-B0DA-72BCD8FFF4B1.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FDFC8BF7-A98E-D84D-81A4-ECD4D092E3E6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CDAA22C1-C916-FA48-808A-A1EE12FEF686.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/08FEB930-307C-EF43-B50C-BC02B38AEA3B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B52B81E7-9DC9-E248-8EF0-C554662AF10F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/D8E111BC-FBCC-3341-A6D5-8BEE84BB47FA.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/5DCB9753-6BB1-B84F-83B5-3983247019B2.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3F308119-5D9A-CE4B-8CED-732166413E5C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0462F8BC-C63C-E542-83F7-D19AFD33FA88.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/C7BCA203-8A95-D247-828A-95BAB41D1673.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/CB062C1A-6E11-6845-A90A-FCD4C8E7B8F6.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1FD52C9F-FC3D-3240-9DE8-6133816FBD71.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/23D44465-0114-0949-93E6-3C8C9922E448.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0A8E7258-D830-6C42-986D-EE7DF20EAD7D.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/16B5DACD-8E7B-0446-95F5-F1C7FD29663F.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F01B7D91-17D0-0A42-AF81-F6B0CE77317B.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/9F6CCF3E-44DB-B948-AF36-C9FE224B951C.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2682C6B1-69EB-0C49-B981-E36792E45468.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EE05F1B9-956F-394C-8021-8E4C0B95CB99.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/51C66239-35A5-A145-8CFC-B41045E8617E.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FEE8B689-4314-024F-8AE9-784361BFBBB3.root', + '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A56FA8A9-A8B1-A04E-A777-7977695FADED.root' + ) ) +Using output file ntuple_ttbar_had_0.root +10-May-2023 11:21:38 CEST Initiating request to open file root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root +%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:40 CEST pre-events +Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root. +%MSG +%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:40 CEST pre-events +Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=. +%MSG +10-May-2023 11:21:40 CEST Fallback request to file root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root +%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:41 CEST pre-events +Failed to open file at URL root://cms-xrd-global.cern.ch:1094//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=+1213llrxrd-redir.in2p3.fr. +%MSG +%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:41 CEST pre-events +Failed to open file at URL root://cms-xrd-global.cern.ch:1094//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=+1213llrxrd-redir.in2p3.fr,. +%MSG +----- Begin Fatal Exception 10-May-2023 11:21:41 CEST----------------------- +An exception of category 'FallbackFileOpenError' occurred while + [0] Constructing the EventProcessor + [1] Constructing input source of type PoolSource + [2] Calling RootFileSequenceBase::initTheFile() + [3] Calling StorageFactory::open() + [4] Calling XrdFile::open() +Exception Message: +Failed to open the file 'root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root' + Additional Info: + [a] XrdCl::File::Open(name='root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root', flags=0x10, permissions=0660) => error '[ERROR] Server responded with an error: [3011] Unable to open file /eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root; No such file or directory +' (errno=3011, code=400). No additional data servers were found. + [b] Last URL tried: root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried= + [c] Problematic data server: eoscms.cern.ch:1094 + [d] Disabled source: eoscms.cern.ch:1094 + [e] Input file root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root could not be opened. +Fallback Input file root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root also could not be opened. +Original exception info is above; fallback exception info is below. + [f] XrdCl::File::Open(name='root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root', flags=0x10, permissions=0660) => error '[ERROR] Server responded with an error: [3011] No servers are available to read the file. +' (errno=3011, code=400). No additional data servers were found. + [g] Last URL tried: root://cms-xrd-global.cern.ch:1094//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=+1213llrxrd-redir.in2p3.fr, + [h] Problematic data server: cms-xrd-global.cern.ch:1094 + [i] Disabled source: cms-xrd-global.cern.ch:1094 +----- End Fatal Exception ------------------------------------------------- +JOBSUB::FAIL job failed with status 92 diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub new file mode 100644 index 00000000000..55702924669 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub new file mode 100644 index 00000000000..e7f2ea77d2f --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub new file mode 100644 index 00000000000..36cf883208e --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub new file mode 100644 index 00000000000..ac03cc8f242 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub new file mode 100644 index 00000000000..7f1a6c1dbbb --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/nJobs.5 b/test_ParTEdge_small/ntuple_ttbar_had/batch/nJobs.5 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh new file mode 100755 index 00000000000..1c985d24bf9 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh new file mode 100755 index 00000000000..8a1f70d28f8 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh new file mode 100755 index 00000000000..f2dbfc20298 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh new file mode 100755 index 00000000000..bea299489ae --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh new file mode 100755 index 00000000000..7fc60816351 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh b/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh new file mode 100755 index 00000000000..9c4e1fb4cb3 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_ttbar_had" +cd /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/condor.sub b/test_ParTEdge_small/ntuple_ttbar_had/condor.sub new file mode 100644 index 00000000000..4955480caaf --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 15000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 5 + \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/helper b/test_ParTEdge_small/ntuple_ttbar_had/helper new file mode 120000 index 00000000000..ce84a6bf548 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/helper @@ -0,0 +1 @@ +/tmp/ademoor/19652/ntuple_ttbar_had/batch/ \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/output b/test_ParTEdge_small/ntuple_ttbar_had/output new file mode 120000 index 00000000000..918f415f4ea --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh b/test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh new file mode 100755 index 00000000000..a1bf0e88c10 --- /dev/null +++ b/test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh @@ -0,0 +1,5 @@ +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh diff --git a/test_ParTEdge_small2/DeepNtuplizer.py b/test_ParTEdge_small2/DeepNtuplizer.py new file mode 100644 index 00000000000..d2f66986fdf --- /dev/null +++ b/test_ParTEdge_small2/DeepNtuplizer.py @@ -0,0 +1,313 @@ + +import FWCore.ParameterSet.Config as cms + +import FWCore.ParameterSet.VarParsing as VarParsing +### parsing job options +import sys + +options = VarParsing.VarParsing() + +options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") +options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") +options.register('maxEvents',5001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") +options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") +options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") +options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") +options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") +options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") +options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") +options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") +options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") + + +import os +release=os.environ['CMSSW_VERSION'][6:] +print("Using release "+release) + + +options.register( + 'inputFiles','', + VarParsing.VarParsing.multiplicity.list, + VarParsing.VarParsing.varType.string, + "input files (default is the tt RelVal)" + ) + +if hasattr(sys, "argv"): + options.parseArguments() + + + +if options.puppi: + usePuppi = True +else: + usePuppi = False +process = cms.Process("DNNFiller") + +process.load("FWCore.MessageService.MessageLogger_cfi") +process.load("Configuration.EventContent.EventContent_cff") +process.load('Configuration.StandardSequences.Services_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') +from Configuration.AlCa.GlobalTag import GlobalTag +#'auto:run2_mc' +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') +#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') + +process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) + +process.load('FWCore.MessageService.MessageLogger_cfi') +process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery + +process.options = cms.untracked.PSet( + allowUnscheduled = cms.untracked.bool(True), + wantSummary=cms.untracked.bool(False) +) + + +process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input + + +if options.inputFiles: + process.source.fileNames = options.inputFiles + +if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': + process.load(options.inputScript) + +numberOfFiles = len(process.source.fileNames) +numberOfJobs = options.nJobs +jobNumber = options.job + + +process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] +if options.nJobs > 1: + print ("running over these files:") + print (process.source.fileNames) + +process.source.skipEvents = cms.untracked.uint32(options.skipEvents) +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32 (options.maxEvents) +) +releases = release.split("_") +if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'pfDeepCSVTagInfos', + 'pfParticleNetAK4TagInfos', +] +else : + bTagInfos = [ + 'pfImpactParameterTagInfos', + 'pfInclusiveSecondaryVertexFinderTagInfos', + 'deepNNTagInfos', + 'pfParticleNetAK4TagInfos', + ] + + +if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] +else : + bTagDiscriminators = [ + 'softPFMuonBJetTags', + 'softPFElectronBJetTags', + 'pfJetBProbabilityBJetTags', + 'pfJetProbabilityBJetTags', + 'pfCombinedInclusiveSecondaryVertexV2BJetTags', + 'pfDeepCSVJetTags:probudsg', #to be fixed with new names + 'pfDeepCSVJetTags:probb', + 'pfDeepCSVJetTags:probc', + 'pfDeepCSVJetTags:probbb', + 'pfDeepCSVJetTags:probcc', + 'pfDeepFlavourJetTags:probb', + 'pfDeepFlavourJetTags:probbb', + 'pfDeepFlavourJetTags:problepb', + 'pfDeepFlavourJetTags:probc', + 'pfDeepFlavourJetTags:probuds', + 'pfDeepFlavourJetTags:probg', + 'pfParticleNetAK4JetTags:probb', + 'pfParticleNetAK4JetTags:probbb', + 'pfParticleNetAK4JetTags:probc', + 'pfParticleNetAK4JetTags:probcc', + 'pfParticleNetAK4JetTags:probuds', + 'pfParticleNetAK4JetTags:probg', + ] + +jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') + +from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection +if options.phase2: + usePuppi = True + +if usePuppi: + jet_collection = 'slimmedJetsPuppi' +else: + jet_collection = 'slimmedJets' + +updateJetCollection( + process, + labelName = "DeepFlavour", +# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' + jetSource = cms.InputTag(jet_collection), # 'ak4Jets' + jetCorrections = jetCorrectionsAK4, + pfCandidates = cms.InputTag('packedPFCandidates'), + pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), + svSource = cms.InputTag('slimmedSecondaryVertices'), + muSource = cms.InputTag('slimmedMuons'), + elSource = cms.InputTag('slimmedElectrons'), + btagInfos = bTagInfos, + btagDiscriminators = bTagDiscriminators, + explicitJTA = False +) + +if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): + process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) + process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) +else: + raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') + + +# QGLikelihood +process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") +process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") +process.load('RecoJets.JetProducers.QGTagger_cfi') +process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") +process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') + + +from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets +process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') + + ## Filter out neutrinos from packed GenParticles +process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) + ## Define GenJets +process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') + +process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + + +process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR + src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) + matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) + mcPdgId = cms.vint32(), # n/a + mcStatus = cms.vint32(), # n/a + checkCharge = cms.bool(False), # n/a + maxDeltaR = cms.double(0.4), # Minimum deltaR for the match + #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) + resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object + resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first +) + +process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) + + +# Very Loose IVF SV collection +from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix +loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") +process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) +process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 + +process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") +process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") +process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") +process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 + + +outFileName = options.outputFile + '_' + str(options.job) + '.root' +print ('Using output file ' + outFileName) + +process.TFileService = cms.Service("TFileService", + fileName = cms.string(outFileName)) + +# DeepNtuplizer +process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") +process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') +process.deepntuplizer.bDiscriminators = bTagDiscriminators +process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') +process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") + +process.deepntuplizer.applySelection = cms.bool(options.selectJets) + +if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): + process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') + +if options.eta : + process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) + process.deepntuplizer.jetPtMin = cms.double(10.0) +else : + process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) + process.deepntuplizer.jetPtMin = cms.double(15.0) + +if options.phase2 : + process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) + +process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) + +#1631 +process.ProfilerService = cms.Service ( + "ProfilerService", + firstEvent = cms.untracked.int32(1631), + lastEvent = cms.untracked.int32(1641), + paths = cms.untracked.vstring('p') +) + +#Trick to make it work in 9_1_X +process.tsk = cms.Task() +for mod in process.producers_().values(): #.itervalues(): + process.tsk.add(mod) +for mod in process.filters_().values(): #.itervalues(): + process.tsk.add(mod) + +process.p = cms.Path( + process.QGTagger + process.genJetSequence* + process.deepntuplizer, + process.tsk + ) diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/ademoor.cc b/test_ParTEdge_small2/ntuple_ttbar_had/ademoor.cc new file mode 100644 index 0000000000000000000000000000000000000000..c6fabd0db16b780c657c7bb15c3a3bb887ce41cd GIT binary patch literal 5857 zcmai1byO7Ix}}GZ?v@ac1_?(xC8WDS7)p9Tq+w`KS_FpfuAxgxVrXHg0cj)zq*Hi$ z-|yacW3BtnT4$Yg_V;~jpLO;>dt+jt{8^}fZGfDDwmPqz((fz4$_C`@>gw_TR?&WU z{Mr9Bi}l9iwWpouKZ7K{FOT7#*jM%A%Z>dUnFNqGr=2Ciig-U(dg!Z<7_fB--y&^{ z@n>yJ*nu{t5ilFeB7GFMyx(L0SU4M25S$f$2o5qA9Ss#T4~O>eocVP8G=DI(JW_sQ z+P~=kQ7wSrl>MG6`qM#@_h&R8g7XOjf|E?r#X*XB`SzWMN|woJz#Y!oYF^-Ql_IBn zSo*8vA(ab;ODxu7BrARQ7qSwPJ21h4sh~9iH-x-m7KC{qTZMv_Mnllc-c-Nxodq3* z6%or)(Bh)(QdQI7`$QqfBh&gAvOn)1H!}T@;|0_>Hz$`-K`ce|aQB51aVJ{~?>8iV z)rMcLP#_4Vl|Q^Hu0Q@3L9e7#efQM`N=Bx36kmhAWTTA;Pd>Ms01y%ne z7X3Y0wRn}CQF5RF9t@}}Ejpz&9v>ZhL_s9k5>ZW6RK|}gINB)*)%qq&0@NR9=N}_gpmaznw7aQy=xA_>OBq{{C zmUQ(ILkQMe%JT8l78t)NX~Z17gmt(&2sm-{Zq;5YJXPGG7{{0jnN@+9d;4t#C7-WQ zZDA}(U+(&}Z%MuwG;|EE=|wp<(gM;_*Y+}YyRbUbnw33o(Ie6u$I23ylJ2ZCBCc{Z zQOiQcP7T&97mamN2M?AiYIcE@I}5JL1@LEl?S$rXqmNcR-L`r9*%<`88#236nbW+BT5O5X$@OA`o;CQjvOhMLL%pmTqrFPo+ ztbSafpj7S*FrU&-&(*#3isDJ0imlyETj_PO1osFBL!qhj6X)#|HyLTA>Q#OD3zO~y z_YgsH=tiZ5q8jP?`UcD=9`2;nHJqZ(+S!!*dLHY?(y8Gms<*A1_Wk*-#O(lEe5xY# z3$n=2PgDtsl+0UK^>lDchvBJ4rc6#lv+2jFQ2X2I6vo`GqtbammIb}RdpL#dLc=S0 zp(pDpnJ|{lM}zjx%oE)!D_(pQ8T|%cI7g8Q&l{W~@9hxl!9FH6Jv)3xsNjd-C+7Jm z?$h>8T6eL!rRX03b~3OmEW#zf7$Y_>|EJzpT+aK3owM?o=+tu#2a2s@e6%mTa&&JT z%wH~DrP>*gWa7I^30r@}ugUZ8U~0>$eD`?g?dC{~fS9iQcWdo4f>fc1%QN~PfDK2+ z-HfilC)&Hz0Sy=@9lt;?>(;~s9oXY^JHA5$+(4C95;-S!K^T`mtC>p)?_vgor@ewj zMu5$JC)p{;&<8il?&Z@cg<7LIuXgjE0Rr{C#%q+dGQTa;Vs__MjosQVQZ);yJ z^yWod5}MxU72DUDvN!N1y}A_mu1T){^Cp$#m+FMN;&EG7rkpY48Neu%GBSvMLSsng zbV*f$GkC50j7aLsPY#XH?RCtj@#4#HV%lU6)Pft6ld{ClitK%Di`2qYR5`(1O8Zfv zH?|;c6dgJCqi!zEUw6}GnpDZF+I&k4MD$;OEXT#R(=Bk|BGh#VgT3=|^|rqA zNo$g2RZcENvwIOzmMh>(E2}`$yRVy=eu$yyx(13TR4kBKl=Wv48b}k(zlU}ZU!-hM z-bxOR8L{b3HX{W}aTPF%Tg+!k~0jyhLiMmEIwEy7&X-c2hD`UvpVI_2+v8Q1WLL{G>E6|#w69bXM zK{5Qb=6l(yi!bpE?I!~eNs^|+W^ewA{qD{|t6tqb z1N(AtoRaGJll#E?SLw+aE{drdrH@2)UccOU4$NL`wnOMwknOE2n7@gW<;qA9!{=;! z_*UxEBq&N0=oYJPO&+Sn7_kz!E7(49fIO;BF{n|xqimz!R{!bF7R3D4N!K1>%Hrqt zp8MYBV&;8Q6KH5_rznOiNZq*)G_8lSLEmZpPNzYiQq!4VVwe1l*Vnxs(!xPg$ACIj zLUnaM%I7O?la=w|Ef*_w=`PmJ`m`4Vteq)qwzyJdiq#6B-mEZFf7As z#h}D;C+*PEh$o8{JWQ(xITy(-;q%Mi5+xDafr*>d+jbb+R9M5N8JE^k&TP^70lSlQ zK^w%%?LkE?=8lopsoZd@8#*LiA8NG(z_a~EV?P;u*u%IC5?I?j^TpL9Yhj--vM8hG zT{s`gqY9M-K|K@NQ_H)Ar2s9IqXFNW$W-DGi#XHvOlki+v5TZNp&)rQQlX=R>qCvt2toZA#FdKIubem7op_6o zq9Uxbr%?k<6WJD<%(;A?Vdey^R4 z{@lzFE3jIaQ@m)w$gimKbp;!i2z=O5f#{_F{n`*Zb7f0~3CA&V{|wXs1%@`dzH^*K z5H%m&0Ub^N0=pl#LD4dY<2hKp0bmSqN5!o#&FNiGRq z-<=9i(3D6DrLuCAUozY7E)SFp7+nD<{Ki!ch*j-$*rx;f?%napk4N~b4DtxE)VzPs=p1WmhvE~X?1D- zes@*280NE-GCTs^fSTZ{vf6(xCEiILBTaaO`$KnRh^4wTIrmeh&_-z(V-0=K9!>hS zmeJs#!!qGBA2mO`$hqoJkuYR7Df|by7qn)(M-1Mjk`JhT&GDB)#j_`x#6(u*@epfbQmRSCibchDeGkk%k5&nE<1d~s zr8d8rc8ifLDgyD&MwNuam?8|EgtwF1n3blKK0V9X=Zz(9+nNYpjC-%2n1JSd#99GF zLJvBwQ_!3Jdfk_t!X+s=GSnmt&0-^*FP$a08p$=u1jL*jBP(MzCa<6EuqNV+7dw4S z=y-ig!BYmuYNj45zz2`WmZ1$^LY)X%l2>xKcXQLaq}PZp$ZU{1FQ@Qc0IkS3&6bx` znT)XbX9hY|v$eW}2>fkK!%E7MNG0DAuZe+XyYPAAJUg>sNocgycsXk>%jpN86!R}H z=&}{eu1&xrJa-dnD1kzZFZL*rKsq~Z)#J{Myi_h!Gsg+SpiJF4XSTucf=s%448|Bq zCHKhbn5D@j`=^#pDh;eF^@RmEgX);gbxmB)#9OxFIU^46+Iun)Ocqd-G>v2L~|;JvxSB2d73SX*w~&;o(-z^?)os4eZz({(y<79z~|p zmt+?KUlu{)l#;H+jTWydQ-l?vtPj=btf0QaY3`B&#f;aLe8T0D)u_WpQ{wV;Q1^_8J% zUZtISvA%*JG-yZP*v^HQR&lu0hS;BArd$X+uX#tkNG^q(RM^pF z%-;<+zfZZ7z&$ZjDbm8&I z!n?t|s*XP*6nWlZ zDCwma{Y>lw;N*_u;?``&hRNq%g)}XB@Ql+7F z#vU1j(%IaNtonoTUJ=<45wZUoG%MY)>xhX?e1qn;&Kk2VTB&_p?!5dNHvRhJ-4#F0 zLtMyIKG0!*OYkcn_t4j0hg+Zk8-fP(nrzaZ;GP2KC@*$>Vda{~X4&(z6KMT8EtU!X zKt%!8$y<5S?-02yRFrwVBz7lHSD@{W8`{^OOYITyDe1q`3U|Z znaIiGo-m_mQ=G0<37^9BFKC3HBangx*r7K*g6rng5dN4M)r*zG{hO8XHFf}?NP1p- zQN-A3!lxG_lilwV0pkH%7ucjRV;SCckN7e1DLbDZOYYIyF}|6uj_m$g#pkJb?H3e> z!zHzVTW`)~@ai)S<0il2skJbN)s=2v7Lo^0YS`)$BR+#Prhwmp0C*Fu!NM?5d+xd0 zB|58ovY#iUmQ6w5gJR(}wrNDDGKA`&UNW+EwVm*`#_{KM?FeL*7uvaA1{#FMK>XSy zHDjqJa@)~*G5mY;b2*ehs>za&@|jdEDUn(pgc(K_>GiyyWwX<#%~GUMV*jL-pn!XUn$2YmSmPT!9ZK^D0ppvmS>p8A^7t(ILnW)G ze+h0{hsHGvEE390`%9i5wM1p+yvYEU&2(?6mRR@+LO-eY!EB9Yy`SG*7}U-fG=NKS zEaAdJb+-aJ1@BDto4bLcj0GD6UF2vy1t)AWuTCwaEFkN2jyBS5JX^YB$re1$s#Ya@ z{t|@A%p^Y^_;|s{G=)8mqXlhuM|3vxts~QgJYOkO*R1Bmx?x$wi)P+?Puy}~`y7|D zo_dZqeXI9m+G0+!1KG0Z;$S#a3o{V|O4kT%Q0E)|y0?3l=$=pv&GRyn;7{FqG={jI zV<*(OXR_s+_drzvnq8caHzl=4{DIuw>1`Ov%!0!^d!g>&Di3PuuL-;nR#_a&2;UID IKMwVO0Fc+dH2?qr literal 0 HcmV?d00001 diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub new file mode 100644 index 00000000000..917ec7f3593 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=0 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.0.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.0.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub new file mode 100644 index 00000000000..ed8da6ce5fb --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=1 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.1.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.1.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub new file mode 100644 index 00000000000..63d19c81fa1 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=10 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.10.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_10.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.10.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub new file mode 100644 index 00000000000..07ec18d1115 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=11 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.11.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_11.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.11.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub new file mode 100644 index 00000000000..01fd9c47db8 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=12 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.12.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_12.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.12.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub new file mode 100644 index 00000000000..cfe092c84cc --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=13 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.13.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_13.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.13.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub new file mode 100644 index 00000000000..b90b84b4880 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=14 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.14.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_14.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.14.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub new file mode 100644 index 00000000000..d915e7e507f --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=2 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.2.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.2.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub new file mode 100644 index 00000000000..6ef4bac4d14 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=3 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.3.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.3.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub new file mode 100644 index 00000000000..caa5edee0c3 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=4 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.4.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.4.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub new file mode 100644 index 00000000000..83f992a5b40 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=5 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.5.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_5.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.5.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub new file mode 100644 index 00000000000..1004868d677 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=6 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.6.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_6.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.6.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub new file mode 100644 index 00000000000..c4ec9dcab43 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=7 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.7.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_7.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.7.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub new file mode 100644 index 00000000000..a3ddee84fe3 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=8 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.8.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_8.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.8.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub new file mode 100644 index 00000000000..a0586bcf316 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=9 +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.9.log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_9.root" +use_x509userproxy = True ++MaxRuntime= 21600 +RequestCpus = 2 +max_transfer_output_mb = 15000 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.9.out" +max_retries = 3 +queue 1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/nJobs.15 b/test_ParTEdge_small2/ntuple_ttbar_had/batch/nJobs.15 new file mode 100644 index 00000000000..e69de29bb2d diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh new file mode 100755 index 00000000000..42aaa2a521c --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=0 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=0 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh new file mode 100755 index 00000000000..55267311fe8 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=1 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=1 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh new file mode 100755 index 00000000000..56416a1d124 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=10 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_10.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=10 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh new file mode 100755 index 00000000000..fa615fed3f7 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=11 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_11.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=11 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh new file mode 100755 index 00000000000..44cfc40c172 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=12 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_12.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=12 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh new file mode 100755 index 00000000000..769e48d9545 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=13 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_13.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=13 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh new file mode 100755 index 00000000000..c24534dc45f --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=14 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_14.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=14 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh new file mode 100755 index 00000000000..7895b717ec6 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=2 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=2 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh new file mode 100755 index 00000000000..8220f54d0bd --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=3 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=3 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh new file mode 100755 index 00000000000..68c7a7fdbd2 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=4 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=4 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh new file mode 100755 index 00000000000..e91dc23770b --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=5 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_5.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=5 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh new file mode 100755 index 00000000000..155cd380ddc --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=6 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_6.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=6 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh new file mode 100755 index 00000000000..5c61a45263b --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=7 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_7.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=7 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh new file mode 100755 index 00000000000..a130da75eb2 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=8 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_8.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=8 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh new file mode 100755 index 00000000000..6550b6e055d --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh @@ -0,0 +1,28 @@ + +#!/bin/sh +# +#(make sure the right shell will be used) +#$ -S /bin/sh +#$ -l site=hh +#$ -l distro=sld6 +# +#(the cpu time for this job) +#$ -l h_rt=05:55:00 +# +#(the maximum memory usage of this job) +#$ -l h_vmem=4096M +#$ -l cvmfs +#(stderr and stdout are merged together to stdout) +#$ -j y +#$ -m a +#$ -cwd -V +#( -l h_stack=1536M) #try with small stack +#$ -pe local 1 -R y +#$ -P af-cms + +export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ +export JOB=9 +export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_9.root + +/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=9 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh new file mode 100755 index 00000000000..9c4e1fb4cb3 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +workdir="" +if [ $SGE_CELL ] +then +workdir=`mktemp -d -t DeepNTuplesXXXXXX` +cd $workdir +workdir=$workdir"/" +fi + +exec > "$PWD/stdout.txt" 2>&1 +echo "JOBSUB::RUN job running" +trap "echo JOBSUB::FAIL job killed" SIGTERM +export OUTPUT=$workdir"ntuple_ttbar_had" +cd /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30 +eval `scramv1 runtime -sh` +export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH +which cmsRun +cd - +cmsRun -n 1 "$@" outputFile=$OUTPUT +exitstatus=$? +if [ $exitstatus != 0 ] +then + echo JOBSUB::FAIL job failed with status $exitstatus +else + pwd + ls -ltr $OUTPUT*.root + if [ $SGE_CELL ] + then + cp $OUTPUT*.root $NTUPLEOUTFILEPATH + else + eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH + fi + exitstatus=$? + rm -f $OUTPUT*.root + if [ $exitstatus != 0 ] + then + echo JOBSUB::FAIL job failed with status $exitstatus + else + echo JOBSUB::SUCC job ended sucessfully + fi +fi +rm -f $OUTPUT*.root +if [ $workdir ] +then +# JOB is only defined for SGE submit +cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out +rm -rf $workdir +fi +exit $exitstatus + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/condor.sub b/test_ParTEdge_small2/ntuple_ttbar_had/condor.sub new file mode 100644 index 00000000000..cc4882e027a --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/condor.sub @@ -0,0 +1,13 @@ +executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=$(ProcId) +log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.$(ProcId).log +getenv = True +environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_$(ProcId).root" +use_x509userproxy = True ++MaxRuntime = 21600 +max_transfer_output_mb = 15000 +RequestCpus = 2 +transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.$(ProcId).out" +max_retries = 20 +queue 15 + \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/helper b/test_ParTEdge_small2/ntuple_ttbar_had/helper new file mode 120000 index 00000000000..5354c5419a9 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/helper @@ -0,0 +1 @@ +/tmp/ademoor/6602/ntuple_ttbar_had/batch/ \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/output b/test_ParTEdge_small2/ntuple_ttbar_had/output new file mode 120000 index 00000000000..11e8dabeac2 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/output @@ -0,0 +1 @@ +/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh b/test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh new file mode 100755 index 00000000000..f75e55d7f86 --- /dev/null +++ b/test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh @@ -0,0 +1,15 @@ +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh +qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh From f23cdac4a1bf59c535347f85d2728971e52ee81f Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Wed, 10 May 2023 15:11:36 +0200 Subject: [PATCH 14/21] Delete test_ParTEdge directory --- test_ParTEdge/DeepNtuplizer.py | 313 ------------------ test_ParTEdge/ntuple_ttbar_had/ademoor.cc | Bin 5857 -> 0 bytes .../ntuple_ttbar_had/batch/condor_0.sub | 13 - .../ntuple_ttbar_had/batch/condor_1.sub | 13 - .../ntuple_ttbar_had/batch/condor_2.sub | 13 - .../ntuple_ttbar_had/batch/condor_3.sub | 13 - .../ntuple_ttbar_had/batch/condor_4.sub | 13 - test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 | 0 test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh | 28 -- test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh | 28 -- test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh | 28 -- test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh | 28 -- test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh | 28 -- test_ParTEdge/ntuple_ttbar_had/batchscript.sh | 51 --- test_ParTEdge/ntuple_ttbar_had/condor.sub | 13 - test_ParTEdge/ntuple_ttbar_had/helper | 1 - test_ParTEdge/ntuple_ttbar_had/output | 1 - test_ParTEdge/ntuple_ttbar_had/sge_sub.sh | 5 - 18 files changed, 589 deletions(-) delete mode 100644 test_ParTEdge/DeepNtuplizer.py delete mode 100644 test_ParTEdge/ntuple_ttbar_had/ademoor.cc delete mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub delete mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub delete mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub delete mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub delete mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub delete mode 100644 test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 delete mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh delete mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh delete mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh delete mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh delete mode 100755 test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh delete mode 100755 test_ParTEdge/ntuple_ttbar_had/batchscript.sh delete mode 100644 test_ParTEdge/ntuple_ttbar_had/condor.sub delete mode 120000 test_ParTEdge/ntuple_ttbar_had/helper delete mode 120000 test_ParTEdge/ntuple_ttbar_had/output delete mode 100755 test_ParTEdge/ntuple_ttbar_had/sge_sub.sh diff --git a/test_ParTEdge/DeepNtuplizer.py b/test_ParTEdge/DeepNtuplizer.py deleted file mode 100644 index a26b8b37d21..00000000000 --- a/test_ParTEdge/DeepNtuplizer.py +++ /dev/null @@ -1,313 +0,0 @@ - -import FWCore.ParameterSet.Config as cms - -import FWCore.ParameterSet.VarParsing as VarParsing -### parsing job options -import sys - -options = VarParsing.VarParsing() - -options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") -options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',100001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") -options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") -options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") -options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") -options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") -options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") -options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") -options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") -options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") - - -import os -release=os.environ['CMSSW_VERSION'][6:] -print("Using release "+release) - - -options.register( - 'inputFiles','', - VarParsing.VarParsing.multiplicity.list, - VarParsing.VarParsing.varType.string, - "input files (default is the tt RelVal)" - ) - -if hasattr(sys, "argv"): - options.parseArguments() - - - -if options.puppi: - usePuppi = True -else: - usePuppi = False -process = cms.Process("DNNFiller") - -process.load("FWCore.MessageService.MessageLogger_cfi") -process.load("Configuration.EventContent.EventContent_cff") -process.load('Configuration.StandardSequences.Services_cff') -process.load('Configuration.StandardSequences.GeometryRecoDB_cff') -process.load('Configuration.StandardSequences.MagneticField_cff') -process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') -from Configuration.AlCa.GlobalTag import GlobalTag -#'auto:run2_mc' -process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') -#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') - -process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) - -process.load('FWCore.MessageService.MessageLogger_cfi') -process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery - -process.options = cms.untracked.PSet( - allowUnscheduled = cms.untracked.bool(True), - wantSummary=cms.untracked.bool(False) -) - - -process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input - - -if options.inputFiles: - process.source.fileNames = options.inputFiles - -if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': - process.load(options.inputScript) - -numberOfFiles = len(process.source.fileNames) -numberOfJobs = options.nJobs -jobNumber = options.job - - -process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] -if options.nJobs > 1: - print ("running over these files:") - print (process.source.fileNames) - -process.source.skipEvents = cms.untracked.uint32(options.skipEvents) -process.maxEvents = cms.untracked.PSet( - input = cms.untracked.int32 (options.maxEvents) -) -releases = release.split("_") -if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'pfDeepCSVTagInfos', - 'pfParticleNetAK4TagInfos', -] -else : - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'deepNNTagInfos', - 'pfParticleNetAK4TagInfos', - ] - - -if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] -else : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepCSVJetTags:probcc', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] - -jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') - -from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection -if options.phase2: - usePuppi = True - -if usePuppi: - jet_collection = 'slimmedJetsPuppi' -else: - jet_collection = 'slimmedJets' - -updateJetCollection( - process, - labelName = "DeepFlavour", -# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' - jetSource = cms.InputTag(jet_collection), # 'ak4Jets' - jetCorrections = jetCorrectionsAK4, - pfCandidates = cms.InputTag('packedPFCandidates'), - pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), - svSource = cms.InputTag('slimmedSecondaryVertices'), - muSource = cms.InputTag('slimmedMuons'), - elSource = cms.InputTag('slimmedElectrons'), - btagInfos = bTagInfos, - btagDiscriminators = bTagDiscriminators, - explicitJTA = False -) - -if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): - process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) - process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) -else: - raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') - - -# QGLikelihood -process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") -process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") -process.load('RecoJets.JetProducers.QGTagger_cfi') -process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") -process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') - - -from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets -process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') - - ## Filter out neutrinos from packed GenParticles -process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) - ## Define GenJets -process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') - -process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - - -process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) - - -# Very Loose IVF SV collection -from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix -loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") -process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 - -process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") -process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 - - -outFileName = options.outputFile + '_' + str(options.job) + '.root' -print ('Using output file ' + outFileName) - -process.TFileService = cms.Service("TFileService", - fileName = cms.string(outFileName)) - -# DeepNtuplizer -process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") -process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') -process.deepntuplizer.bDiscriminators = bTagDiscriminators -process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') -process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") - -process.deepntuplizer.applySelection = cms.bool(options.selectJets) - -if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') - -if options.eta : - process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) - process.deepntuplizer.jetPtMin = cms.double(10.0) -else : - process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) - process.deepntuplizer.jetPtMin = cms.double(15.0) - -if options.phase2 : - process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) - -process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) - -#1631 -process.ProfilerService = cms.Service ( - "ProfilerService", - firstEvent = cms.untracked.int32(1631), - lastEvent = cms.untracked.int32(1641), - paths = cms.untracked.vstring('p') -) - -#Trick to make it work in 9_1_X -process.tsk = cms.Task() -for mod in process.producers_().values(): #.itervalues(): - process.tsk.add(mod) -for mod in process.filters_().values(): #.itervalues(): - process.tsk.add(mod) - -process.p = cms.Path( - process.QGTagger + process.genJetSequence* - process.deepntuplizer, - process.tsk - ) diff --git a/test_ParTEdge/ntuple_ttbar_had/ademoor.cc b/test_ParTEdge/ntuple_ttbar_had/ademoor.cc deleted file mode 100644 index 2f7e593ffb4e91908c1157d6029fcfb3e3207766..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5857 zcmai1byO7Ix*Zr`=uU@_l1>R}q$H#}B!nTPy99=zq*J=PQHCx7=|-e`Xb@=z5%B4K zzkA<}weCA>opsjP-}kM3*4h8;jgAKRvrzupAX#}WHEvnO-&c@@6~xim+3o+WqW@& zFZzE}i(pt4zo$z6bPyN(87+iirJ=#Fl8L)mNzjpAK5oi6#$y3@SeqLKfx|Tl>~f(Q zFO!FquW6AOOlQkXG~NBAWyE*x_{S#vmb2KwWL0wz^kbPC0BZUp{9cx(`t?0VAb@E$ znz5+GNy(|EuECF4KF=-N@(gyg@HTFA=2xDli29W&*>mODmGBDCn0qmEy|JDlzK99VmIJ|N}U6!ys{(58dulwqdc{yRa*SL>8J zXp7Rw1K;)?Nzp-rH_*CXz?q?@2$&X0yfHO|JW zIm^-0gLSJVlq`(hgq8 z>BANXO6AOS=TSWM*f`9nDxKo0+Bw*^mPU{!xQ5#q2uxp{JMN~qJeO9i-O!V}HttSv z4dy4y+Nw5FP$fYiw&1?;BMypP!zpS^olW_#7cjo9To|NLdbMub_7%1gwS%njC`;6? zNh3niC=(JX7G-AhBJ2J4%#|0Om?rYd-9NH_UU_KokS!&YjB8ou$e_beU0mS_IV6Z+B#L_YF*-|3WOssX}*EB-q0On zb_FtP9Z&@{pq+QzLtcE`6yvvJiPP!W%L;ITR9i^oo!bPVAx~==$_ehG1_Wn3p+d6G zKO}DQb@fzxu7Ad3?+QziCuNHfA zqpk?d9C3>sX;0hgdz0KC`Svu(^iFS6iSJb=)fCR!y0T@BU{67YAruioG?VH>&o5R~ zB-o*w-Is(?{im$zA-f24ws`T?5h8H18%oiw@p(mJXI1WzmRV|XDvB(BK85X=fW0+D z3!p8_a?;JAaep^cp+T9vp~bU8OGxwOTb_eJ!fIS}JM|(f_N zalkeUHj!BZP}*MuSRJ-pQT?LcrQs(j)Kl#>AbaP%3-n zlr3&0n8_tR^A*9nG}z};aXaIAi)t{+S&mzvMlnx`EFlf?oU z+;93JTXpaxo}!-8iYybSYtz5Q-3hC78=042-*kG5mz}LSh1Lh!cdulKL7$@SFtrN# z?rs};oky^15&FFmPh(0vi!5NwMAv135&B8p^-$R)MwU~tKP#D~`3t7cot^;96_K*}0n!E}4s6wEo z#zXOJ-DRpeKCI<>{bPocrK2ABdVr}jWz!m4s$z*kIG$gGB8A6tzN;$3gfF$in>wV^ z16h)O`SXfwS?+4vHxNK3C&lJy!a6mnYZEOjLkZX9J2UIcpu8;&f)hinbqzu@J=gWi z%=gp3n;UZFfZd0|y09yu{4yT@!X05^v3mKzUs^0Ud;W; zF@!ug`xvcN%%wJN9!$8~snSt#J{^q9=M^E}(ZLa0=R1mDKMr%I(LMQnetHO#B#oOK1Yo2R%5hsfzMvO z!3eAsWEU@4H1sd2eqHqhLuh2!T%Pc}FJ^NH$WYxchn zfCJinPUP%0a=ZUd7mBP!PfkxAn!qpq@kn3i-&~{Q*&d^dg>OJzhh%q9^YPi|Ps)f%b zOI6+!2+fs+*aK95lSsx|ZJsq+YG?k_MSlV-|MB$aJgqGx#;JN2e ze34FWegwg-FKq2tPA%rS<%F1LTe*gkxJ;gG3qi4GvHhdeChE6ou=QOE#z>wBYtwIHf(g)XGh5}-B3QwQgqGC-&JDv9|Ro-+YYWjYdA|{)oSIa^(>!5*CzB((o z3S)qbA7&kHx~mW>S-xv%iY+1_SwhM32TAlXq<%USf&K`jree?i=rQ-z67Evc^6@A{ zsT+iAbi>u7oO2#O`OEG7cSriC>EApj(8AjNHwvmQ-ue)@is?uFJ>Eg}%rN{2GQhPa;vm6!y=I{2=H~8ot*E{p+LtyHJ0s z|0WcMkDIfzht=-_KE&DG($Ss!UnDDb6KsT4fp)gzV^l@I{`y2!0saImd2#Kr+bFx` z#a#8jlD%&Jzl`uNl3`<8z_2lRVc4kuAsHht{T~da;1Mq+_^(%h|LqOGqr&j-sL=lp z`Otnxh34N;0p4OXktSiqobDBB20nOU7k2kNi-lMwuH_ZI7$LPNod}?VBrUG)q?^%) zXog&^D>@qyL?>n^9>f|8@7=`@)YF6IHT&y1g!YZ$C(@Bevd7Ch0b#!)Rpj!I6gnA% zX_Cl$2uyYu+jkx==cQaQRG#mj&+i|# z`P!81Z)mvDt;vElQU-YtQd@5&!I+!5XwZEf1q9j6Xx*)qnXhIk6>apjJ(GjP^2%Ax zEP5-$re5N~2qwNO()1J46f$&uj_dOdoE51JK(p_?yqrlXwX&9twF+ed5-p#42NXNk zxhsm1&?XP0m+>Qcbg~gUuL9~UeJvdNR=;n;gFr!&_kvVIJ3FD-P$hk5D1SmZ>^WCg z=^AdPY?h4AntL~!?RuwC!o)ot${r|Mefd6s-(DBu>KS#H$=Vs2LSyq;4g6K! z2nqZ3SZgE=`LbBDGnk##`Uj~f9*2A#oY@%cGKg%A&$zi{1?WhGA7MT<_cl&AtP5bY zovai*z*2^->}RKsf7c|Hdx{T>vs$|5Kha*=(ZTZPxR7Me)<(y66su_p1V=Xwa7%R*0p`s{& zBHylW&F}LJ4R9daijx&lVG6~J z;l6pxYnXODHp?M0FD85FxG=)ZQZ`~oB7hFz`d}ql z1o`!qdQhk3=y**Ii9vhs_3B>pUbB?M4NgFq$CE9VVVWSK1P_yf0BgSaC*4T`N_+Np zWg&Rc$jw;4^}a$o#yY!ECtUlpkKq#`!W{eNpBBzuIsc^euur{pS5KAwY5cM!pG4+D z${!DaoxJ&mVw*8;M#YJ$Q{Tfj{u3r;$4psP?&fo~3i>Eg$!%`kCjrs&s>55qbIZol z*H(x(4CDou!BbP1gq0E@EJ62E)NIslw=9_NLSNGd1T>jj?~M)e2VZi(Ez;XvMY4@3 zlvUzM`xOwL3gz+vR%1SFc;-P$SIU)^5B7~H<03bhdb&=r00+|@u9deX)StL1ctjN! z*|!!r*Dk;r;=tUD5}$Ws-^vqnA5@20qz1p=b?;lAZ>0>Tl`v&h;RhV0DY5-*Nj81N zn?6n09PTCOVwHEEc&#w;qk9?`A&C&W#}d%(a1IuMJY6xY92bdmXn$vla(K1tQm_r5 zpER%Z;P=ckRnSd)XYv8?XqHPKF#yj<3DwC;x@oXGnir%3Z&JCUEi2F>jv$d#EObzL z6cD*JX&_cXa8FRzt_SDmrg^~`xjs8+McZUXL!z-ghp)jL8nHF@1uX?|#w-A4y)v9! z-lA{q>P5Y|p^TB>GFJ4xD0G9AD;7TCW-XGDWa`kv>9UV*^YmBiYa#6w{AR22KtKi~ z4kvy5MLy^VMsDRJsuy@q@{!vbaLMH>R03^%fk``lDPO+9bt`!0^x3@i`iYt2S;}Gp zF(BT7&W8p)&6oZ#Rfv6`W$n5wS+LpVdM-m;F)JhUhKqNc8v|I-HzN8oJ^qEyQ!v?# zm{&8{k;b-jMZx;ZV-vqGW3viq{eTKg!KIkvm4TdUc0G$hvo9xMMdBIpOzOiESS0(Hw%x^D3FrR{-jDs&d^=7!{xHwGZ+UM>`WSUQDVu94nw; zpXRRXiPI@O&8ZQtvb$(|dYdJDmg>A%tfy(Y!9W%mFaw;NF!LPIG(Gl=>g9@VJhRU} zB&KrZ9jFmK!ka%C=W%Gu@r;egb~$%KnGy4qiy_G8>r_|Gm@D5jvu!sXo+STrMHtht z`>Ff|J7=Vvs0Rt+(6{(qD$x}|07BEOuzji14Dqsk zeg~~Xrpnm{6XiAOeS@diUM)j(UVWkvvG!Ur*bL=bCEIK(%>0s%+YI3p0XB_GQs)(X zwHyr^XRcS~P-Gp({A6xi@Hh&L&QT$=Z~uMpyMGN*CIf!L>3_TjOnRx{__>jhql&pB zxBQGqaG~}bm}ay^h~RNSwSUV7T+!XbXqdsOcxu^M+vguq`r$pr2JbOvq-9T6BVR*R z;p?Y0Zx7H*K^P)mG#-au??sLfsc{PhOEA1?a?F!^v(|^4P)b`k6?QmJK~YI?;G~$x zjjnkvzOuV=1YbAM`6>X5=E;+}iLix|?axvrG0(d>NWSIg^4=}F zsh=^~W{ShgA~D`!)3q~_fc>brPU-6uRH&i07OScoh+AsqL)lFK_!3-du%eCCs62Q+|^37R}W$e%bSFC0&{;o;p4gk z>sj`rq+TRON9hwfRbS{y7rA7$zoGF{F0}}fT);BbW|O@zsUU?c{brpqZ_ThQ2MCu_ ze*!2Vs2Xb-nxZC6uRLz6FB&gHKm2x73v2pRHMu5favpq~ZHwxEaAY*tq}QcO*~YKw zaqJgP+^gLo{KEWwb2Oc|Z%}_T*KPi+9^Wv>G7b19qUtMNf+qUvYwDqHGbW+b-N6#* z_*A4S9CsMUGjovUCs4XmIg+3gxD9=_YBc|V=KncckbvqNgZD!3Yaz-vX>1_|j5=Wr zpUHW!i`o`s8LhLqi$j%cmyE~vW;AgHLa&@=>aLv4JL=gexLhnr?D4+SOTK-eJ{_n1 H<52$xKi{l# diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub deleted file mode 100644 index ba1d981528a..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub deleted file mode 100644 index ace51ce3051..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub deleted file mode 100644 index dfba8c63979..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub deleted file mode 100644 index 2977b31addb..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub b/test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub deleted file mode 100644 index ed6e9494e47..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 b/test_ParTEdge/ntuple_ttbar_had/batch/nJobs.5 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh deleted file mode 100755 index e298979f23f..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh deleted file mode 100755 index 4eeb3cf7d07..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh deleted file mode 100755 index 0d0c9f68ba9..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh deleted file mode 100755 index c1b606f8e87..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh b/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh deleted file mode 100755 index 9e470fd4387..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/batchscript.sh b/test_ParTEdge/ntuple_ttbar_had/batchscript.sh deleted file mode 100755 index 9c4e1fb4cb3..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_ttbar_had" -cd /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/condor.sub b/test_ParTEdge/ntuple_ttbar_had/condor.sub deleted file mode 100644 index 8e9fc48039c..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ntuple_ttbar_had_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 15000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 5 - \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/helper b/test_ParTEdge/ntuple_ttbar_had/helper deleted file mode 120000 index 8da80a583a1..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/18774/ntuple_ttbar_had/batch/ \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/output b/test_ParTEdge/ntuple_ttbar_had/output deleted file mode 120000 index cc603bd28d6..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110407_test_ParTEdge/ntuple_ttbar_had/output/ \ No newline at end of file diff --git a/test_ParTEdge/ntuple_ttbar_had/sge_sub.sh b/test_ParTEdge/ntuple_ttbar_had/sge_sub.sh deleted file mode 100755 index bd265cfb0aa..00000000000 --- a/test_ParTEdge/ntuple_ttbar_had/sge_sub.sh +++ /dev/null @@ -1,5 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge/ntuple_ttbar_had/batch/sge_4.sh From ff2d2be330a228b305c62f2a7ab77e3790dc71d1 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Wed, 10 May 2023 15:11:47 +0200 Subject: [PATCH 15/21] Delete test_ParTEdge_small directory --- test_ParTEdge_small/DeepNtuplizer.py | 313 --- .../ntuple_ttbar_had/ademoor.cc | Bin 5857 -> 0 bytes .../ntuple_ttbar_had/batch/#con_out.0.out# | 1748 ----------------- .../ntuple_ttbar_had/batch/condor_0.sub | 13 - .../ntuple_ttbar_had/batch/condor_1.sub | 13 - .../ntuple_ttbar_had/batch/condor_2.sub | 13 - .../ntuple_ttbar_had/batch/condor_3.sub | 13 - .../ntuple_ttbar_had/batch/condor_4.sub | 13 - .../ntuple_ttbar_had/batch/nJobs.5 | 0 .../ntuple_ttbar_had/batch/sge_0.sh | 28 - .../ntuple_ttbar_had/batch/sge_1.sh | 28 - .../ntuple_ttbar_had/batch/sge_2.sh | 28 - .../ntuple_ttbar_had/batch/sge_3.sh | 28 - .../ntuple_ttbar_had/batch/sge_4.sh | 28 - .../ntuple_ttbar_had/batchscript.sh | 51 - .../ntuple_ttbar_had/condor.sub | 13 - test_ParTEdge_small/ntuple_ttbar_had/helper | 1 - test_ParTEdge_small/ntuple_ttbar_had/output | 1 - .../ntuple_ttbar_had/sge_sub.sh | 5 - 19 files changed, 2337 deletions(-) delete mode 100644 test_ParTEdge_small/DeepNtuplizer.py delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/ademoor.cc delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/batch/nJobs.5 delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh delete mode 100644 test_ParTEdge_small/ntuple_ttbar_had/condor.sub delete mode 120000 test_ParTEdge_small/ntuple_ttbar_had/helper delete mode 120000 test_ParTEdge_small/ntuple_ttbar_had/output delete mode 100755 test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh diff --git a/test_ParTEdge_small/DeepNtuplizer.py b/test_ParTEdge_small/DeepNtuplizer.py deleted file mode 100644 index d2f66986fdf..00000000000 --- a/test_ParTEdge_small/DeepNtuplizer.py +++ /dev/null @@ -1,313 +0,0 @@ - -import FWCore.ParameterSet.Config as cms - -import FWCore.ParameterSet.VarParsing as VarParsing -### parsing job options -import sys - -options = VarParsing.VarParsing() - -options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") -options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',5001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") -options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") -options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") -options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") -options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") -options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") -options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") -options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") -options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") - - -import os -release=os.environ['CMSSW_VERSION'][6:] -print("Using release "+release) - - -options.register( - 'inputFiles','', - VarParsing.VarParsing.multiplicity.list, - VarParsing.VarParsing.varType.string, - "input files (default is the tt RelVal)" - ) - -if hasattr(sys, "argv"): - options.parseArguments() - - - -if options.puppi: - usePuppi = True -else: - usePuppi = False -process = cms.Process("DNNFiller") - -process.load("FWCore.MessageService.MessageLogger_cfi") -process.load("Configuration.EventContent.EventContent_cff") -process.load('Configuration.StandardSequences.Services_cff') -process.load('Configuration.StandardSequences.GeometryRecoDB_cff') -process.load('Configuration.StandardSequences.MagneticField_cff') -process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') -from Configuration.AlCa.GlobalTag import GlobalTag -#'auto:run2_mc' -process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') -#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') - -process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) - -process.load('FWCore.MessageService.MessageLogger_cfi') -process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery - -process.options = cms.untracked.PSet( - allowUnscheduled = cms.untracked.bool(True), - wantSummary=cms.untracked.bool(False) -) - - -process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input - - -if options.inputFiles: - process.source.fileNames = options.inputFiles - -if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': - process.load(options.inputScript) - -numberOfFiles = len(process.source.fileNames) -numberOfJobs = options.nJobs -jobNumber = options.job - - -process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] -if options.nJobs > 1: - print ("running over these files:") - print (process.source.fileNames) - -process.source.skipEvents = cms.untracked.uint32(options.skipEvents) -process.maxEvents = cms.untracked.PSet( - input = cms.untracked.int32 (options.maxEvents) -) -releases = release.split("_") -if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'pfDeepCSVTagInfos', - 'pfParticleNetAK4TagInfos', -] -else : - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'deepNNTagInfos', - 'pfParticleNetAK4TagInfos', - ] - - -if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] -else : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepCSVJetTags:probcc', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] - -jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') - -from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection -if options.phase2: - usePuppi = True - -if usePuppi: - jet_collection = 'slimmedJetsPuppi' -else: - jet_collection = 'slimmedJets' - -updateJetCollection( - process, - labelName = "DeepFlavour", -# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' - jetSource = cms.InputTag(jet_collection), # 'ak4Jets' - jetCorrections = jetCorrectionsAK4, - pfCandidates = cms.InputTag('packedPFCandidates'), - pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), - svSource = cms.InputTag('slimmedSecondaryVertices'), - muSource = cms.InputTag('slimmedMuons'), - elSource = cms.InputTag('slimmedElectrons'), - btagInfos = bTagInfos, - btagDiscriminators = bTagDiscriminators, - explicitJTA = False -) - -if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): - process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) - process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) -else: - raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') - - -# QGLikelihood -process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") -process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") -process.load('RecoJets.JetProducers.QGTagger_cfi') -process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") -process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') - - -from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets -process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') - - ## Filter out neutrinos from packed GenParticles -process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) - ## Define GenJets -process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') - -process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - - -process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) - - -# Very Loose IVF SV collection -from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix -loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") -process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 - -process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") -process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 - - -outFileName = options.outputFile + '_' + str(options.job) + '.root' -print ('Using output file ' + outFileName) - -process.TFileService = cms.Service("TFileService", - fileName = cms.string(outFileName)) - -# DeepNtuplizer -process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") -process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') -process.deepntuplizer.bDiscriminators = bTagDiscriminators -process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') -process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") - -process.deepntuplizer.applySelection = cms.bool(options.selectJets) - -if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') - -if options.eta : - process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) - process.deepntuplizer.jetPtMin = cms.double(10.0) -else : - process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) - process.deepntuplizer.jetPtMin = cms.double(15.0) - -if options.phase2 : - process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) - -process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) - -#1631 -process.ProfilerService = cms.Service ( - "ProfilerService", - firstEvent = cms.untracked.int32(1631), - lastEvent = cms.untracked.int32(1641), - paths = cms.untracked.vstring('p') -) - -#Trick to make it work in 9_1_X -process.tsk = cms.Task() -for mod in process.producers_().values(): #.itervalues(): - process.tsk.add(mod) -for mod in process.filters_().values(): #.itervalues(): - process.tsk.add(mod) - -process.p = cms.Path( - process.QGTagger + process.genJetSequence* - process.deepntuplizer, - process.tsk - ) diff --git a/test_ParTEdge_small/ntuple_ttbar_had/ademoor.cc b/test_ParTEdge_small/ntuple_ttbar_had/ademoor.cc deleted file mode 100644 index b4b91754aa82b3c9754ced905f2184db39c5eae2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5857 zcmai1bySq^x*fW^1w=p^X~Dsv2PC9hkes2UJET(@>24$kVE}2QI|PUB5*Xs{Y^_wzh!KkM87?2Uy9_;b+yx;S$3T55c9ioc&Y<`AfZlauTJTSfof z@#p^2EcP2$3wLYxe+J2aKOT*^<6hTKtTgs<<`9RxIq&!oq(Ja}t(y^c{18`%#B&Mq zif9&M!~ujDN5COwrFsD8!rx>6ICxv;A$V&7A$Us#80ctNg?RLT=PY6nc<={9FQgD4 zqyLNkAJyUzyo%pbrGGle3;&E3h2W)QhTtWWcXCo-p*+1^m2-{8{BQ9#)(ZoMYZSP_ zVVN(Jhm@}#qOc#IE5&{)V4fgem&H4DW$l&t}vXFMS8;b^K~`^Jg^ zc#Mc)EpB#Ha;&Ls@MV+Fcg?Xp4MEPojUS!4&-VbTUz$+KC?l35x_NuUNqLhkpCTKQ zrnN>;Yt#th8KtV0UW3!E%rroBH>-kF*T`Va|DdGv_b$)XskmrTXR*G9H=+Y(9>R7 zu<%eB@#gNAn$mqzzVZ7dvXpnA>w7+b*xHCun(WHKpd?y{dj+e%Ntr%UsnzEdAW1&Z z=|g8PSqSlFb43w>>H^cMqI&e<3wXPet)M+;&(24bJeR^A^#taZ;92Dm6EDA=z~sv{ z+8xXVY1FF<%C2S4zh_=z<2z6*M~Clsby9D+P(Z`pQv^L=%rIuTrmzmIpu!UcuTa6UT@V<+tH&2(o~Qvgcomb3L&Fd3ToE z=;w3$@I?aCc(dI26;IsP4>GIDrk+&o>~C91Z&D_@MA#aLe7QVx*iCVkkyeDQ>w&L~ zJ}0^a3sGfnRhufPQfzK+!F>`&>=iqQQ`8=JG!t!)@?-=22R<&Ci(>rh=X0@_C$GQ%3#R5o)W2 zhL>Oww#}3rIBN&tpp65|$+BOxA-l(0F0X4I2c$vAEEo%eZqD{lp=F$(Ufd&J z=f>9L#qxEUwLWwv#mYF!YgiA10-7{B9e z*)i>Bbq26$?bG=;V4k(#L0{BuJQuR%h}UWVmhJBhtu~j)KeGmaXk!QcdBswKGTVRfsT-VJJ;xAmgO^ zkj(kAiUfDi#^(!Css0mA_0Zi-EUpC5$_N>KvMXBgjnP>}Qb$!DQp+^0Bn?eYsDQ?1 zOyrFfR12Uj$8r3bN8|2xrb2@@d0mTt`5`Ie^!I#wk;Ikwm^Ow5PJD!#Hc60IVS(<> zH-2di%G~Oy<#!w&Bs7)sMAAyi*_oezG%g0|Y%2dTV_oNY)}StRmjh+vSUFzB{_JFqPt&;Gx3-$~ zYA#v0sKE&u+S7EGf!LRs$ytsHY3k*KV%iojww?j=7C%`d^r|QiHswv;#LMzzB|azO zZoOYE_h}LmBMoqlQM059)ntlTi{BS&n><`PhNbA&D&EqxGVZFKxUdJZc-rgOAdFf4 zoMU-^L9V{WHZ?(qcJ@l6c>>iOdZ9DAfGx%jOKM|WI9rWn01|D~$Y*^t-RV>noB?tj&Qur?_NFWlP99{XYY>*@ zv8MmQY%k-;%w2s9SCA@8_zctXCg8#fLjY%g ziXm`|OsOrfwAsWi(lU*A#QcU~iJ=z_CV}JLcB76=c01~3T7e2~Y+v}|Yfv_GOd6V2 z(D5x?4i(adNoZDRKOW*l%jZ|g7vw^= zLqc5@*3sRlj;^uP8k5Yua+zx{$_Vzac~VL}N_i2EildCl$xwGR>Ad;PX~6W1v39Nl%VoW;tk%s8Q!ja>4m_ zLWm#${5*)^J>Uf=c_|0yRVy*nPV)?4Uy9XNv!zi>uf_bj%aRXLPAV6S@}wy0vq79ANjlP5jvi`^K)V5x4dGU7a4LS8@{vVozEPTqF2 z2+~i-w?Nx79Krq6UFbWRqltX%9)CAXke$L#Kb07;t_P?;O9w04%kqg^vBLOOrtTO2 zqs7pF|KT1l3UP(n?!VOyLcy?-Gt!18h)aGv(APOWfnTjlxpcqXl|A2mbfIu4YO8zf zz_qm*uQM<|x-}+R`xw&?%nBm1_X%}aFHzH8K}6{K*>9 zEa;rAs_%gz<@+V`E0`HH2W`r0u0`><-2&0pM#*+hhHRdi$T8KGb>Aq_cqS`hzIROY z_-0>no?v8s;OfgTK%7p|iHr?8-c*d^S@&Y)b$gPg&&Mfps##{WY)sR3MmX*3 z)56Pe7U=jv_Q8gm3aOH1R6|o-F$u*YTDBjKL?269*8wo-M*ssIcV3{m;;b7^xO zGF0g^4&ke7j{Gc`O$C(F@CSzq`S34AD-7SsgJ{}Wr}5*z+}?k8q<@ExL8O4>(b;;xR$irdvb-&|1_MXfARnA zgGO&2f<_|{f=2NlhLcW!<_`uaBo!d0|HDoHcjn^Y9f9D@e|SxtqF@AO@N~0Abg0G$ z4p-#Hkmv{oV|AhL3TfnlsGs;lhlf+};Erl{EiXFz7;dB&<7C+Iz~so5)L=i=oC@(O zG#LIlnwAI7ZQ{v13(o@@l&hsuPpq=>GP0UJP9<4l6-~JIZA|5_eK7o!S`}Akj?XLL z;N1nCH1vQb?pA(5X=+$_J;f`H`U#}rHW)a`Q;UWEQjIIz@L`OiHz{#gPZ4?)o(lRj ziPoji?pVM9Db~AYfo@-cS`9baHTeW^*o*9dui=|#?Hpe-{@-@^9TkRu zM}_`>$cOnmDt!7K72t@YJ^@z^yQh^?$;vuU7a7e{cX8A~Y`I+%AB*FajF`|WDfZ;< zXIOLQMb^4AH_>|>szq7f^F=*8mZo5l)ZZuB7&7)R&7`w5ic<915hvhjMiXr;$Y=uT zlsqz5an$q@o2HS*sSJH?y_r4l$18g?Z-bbK3g3BUYp@V;PKk{#ToikREK*M{|74Gc zJoSm_l<@vF#_G=$h!{(HL(=GhEAw&l%vfmlBPq&grt*{pCcQ+b1CD}m z!hLMtXy&VZ^e*S!g{#vdENN&BrymrK@tp#V3SIJsJsaNX)AkWmnFieTKDc32zwi)4 zU)3CDYV3SDF8G!GZ#Lg$J8`@WBWm6$>Z>$-8 zumiGJus%JAyY;BqiyLhT1723$?F%mQ}?k2@u-B-KB-RmOP+3BiG591o9cQGpzYB>zR<_S z-kbIKdptfC^wpz_m-?ddr7Q8?O`07A1zS#*dUBzc(KFdV-bY24#2sa zSHU|vHJP(f08ohr=zJFcEpLyhy9}F3Z>* zQGLL={ipIB^&#Knz@4M-XJ5`yj+?*OG$vnaoXD;oC{RkqG_lW+jS}EW`tf7&EUj-% z@$FYxl;^_INI&w(z?u|u;;BRNKr3(p$(EN5QvMxUl+v$xk1c>)Bk zuFt9lymqCaLJzrb!`!eHnYl<)2tAaZwC{R1{`g5z8og<57akOy6jAB5R>MV!>tmj0 zjK*$kd$T$4p0xOw`qN;6K05B!5m_}LVNLO+%F(qQ`1=owu zia)Q zlFS{_B>k=#mt?ln$TF(wfbhs@`9)!2R9xND?E_hQp4b$bb$=&Q?ut0`#_}&yuczBUr2R#=DCjW!pVj`87WBz0_H2}kBOSSN{lMWXIozX!ff?PV=E94#GkFR6!WQD)4v z+6p4pK~lkh?dtk5iLmKTh>4wg1kYU=8|Y)Vj%iS#rC`6vqS}|?xweW9Yq8^FRVThY zLNI=qEEd^G-SS$l{I_6}uC5Ny&T6|})bvNu_hA3%9)}H&_tM6C=T*sg+vyqZQS zJBxXt?3nhG&ha@wA{iUQz1GIDc`vxD{-Xmds(zUQQrzQZ zQ+|trh@w-7=Z>h9Jx^h0jJjA-v>SV+Thtfp`g2?+!PWycxm&LBKo*=xG!l`%`KUSX z(_cd81dc|xw^U@RBaQPPmnISi49AiS5)P{?tTD;h@^ZUV6nHW=Y#h6>ppvv@v8W4E zZE8EuOMiAh%|r(>wKcK5jd_0yt2gZZY3O)|wy0?eRk9>(2Joe4Huk zMD2np4sa|zb~q<`LCznH`K%3b$(*iI)@s263Q^C0jn+h@qVRgcs-WRjQ#6a6`f0e? zo2Mp(EFK+&Yr5e$X{m767imGAD1x)x1{ql%Dqqx-TL&e&>>r}$%Z3?58(RdK>dD8{ z#BxK=F&~JZ;-4uV8nD}n=Ma%6Y}Q5^|VOcMBn+(H$#Pg|Mgbz9{7Ulp^d}R>D;t`Rr3n z%Td4|0xod)+$IGVcrdlKk_ya1-Oc72zlm)EGLhk~`+A*i9@j6gbb{__!}!XiGlR}J!rAj|hzWH^|vTd$+PKrpUpCaE&s%)?^(QD1^otOeYh2u873 z_`xO6I$vwtBO_L|{K4J~zx#j(Af2?qPv_9oVAZ@5zdkbP$4ELkiDKlE>-ta*xbp#` z1+~?(YT|P&S~Q?;<98~GZ??8qu?pIXLuSgRbEn7FR7F2u7h%C@nH(Ahe(SaXHZX=g zy}EbFg$MD1hg-Hu7&ypb9}~kCCHD8h-fhhN#eTy|Ax`3Pbf+!y(Xe+LW4+Ibp2SSX z=Rv-QS@A4$3Q<5kSv82Cq;fu9i9MoTs5KliAzDRV<{E8CN~+5om)5mnzBMgZ{lW=H zljIRjXl-&GJBc6yq@k~pyuO@esU9`iex{v=GZjfDsf_$2?b0kJUQyV3+*)o721$X+G{?Ep`z4)w$xtBfLvh57-Rkt4Fe@7h4=7`yjdBG?0ldq0ggS*j*4 L4-a8~9P0l7`cBn$ diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# b/test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# deleted file mode 100644 index f5fafc77f1e..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/#con_out.0.out# +++ /dev/null @@ -1,1748 +0,0 @@ -JOBSUB::RUN job running -/cvmfs/cms.cern.ch/slc7_amd64_gcc700/cms/cmssw/CMSSW_10_6_30/bin/slc7_amd64_gcc700/cmsRun -/pool/condor/dir_265802 -Using release 10_6_30 -running over these files: -cms.untracked.vstring( ( - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F8EF0B3D-31D7-9E45-B50B-166D567BDA97.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3415E9A2-C86A-D241-AD8E-4E1D3031A0C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/25D8AE62-9290-FB47-97E2-854AD135CDF9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/37983382-27EA-714A-865B-67BBE97435A6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4BA006A7-D623-B745-AB14-CED343D79CD0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/93BACA19-F896-2D4E-89C2-225422B3FA16.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/76FAEA84-E853-164E-8D86-22232B0EC975.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B001D3F1-F308-1648-A813-BE91A319695E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/04EE97E4-FB63-C74B-9694-3EAB8D898A77.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D7218C05-478A-1A41-BFA0-EF21591F9E14.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/20134C5D-F473-3B49-B550-58B35854AC8E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EBB28D04-5C40-6B46-ACF3-90B11B516C0F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/167173B4-FAAD-644F-BD16-A110C0C1B1B1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C61BBC9A-E56A-9341-AF1F-F68D3586D8A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5FF872D8-D6D9-9243-8456-CD4207C755E0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/BFB83DD3-DF0D-7D40-8534-F497F2F57B7D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/8BA04A2B-41BD-5B4E-B941-198033C916EF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F9F3B8F2-4C8F-E94B-937E-4AD5E913342E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DE29D5D1-9BE4-3B41-BBAC-889A1887D6C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DDF882B9-93FB-FF41-8EEB-633F4956E708.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3209B4EB-FADE-6846-B9C0-EB7E75892BF1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4EF94842-8073-E04A-A7AF-6E1BDE216924.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B188232F-CE74-3840-B21D-944D1D56B878.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AC6AC631-D4BF-8F4D-9ED6-DC61ACC7AE94.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8AB21B4F-2520-7C43-955E-CD00ED90B111.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/40D07783-9A5B-B946-872B-ADDF3A57EA70.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/62C4BDA1-58E1-2E4A-AC5A-923D46FD1190.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/93C21B5E-D793-CC42-8E21-A89EB9832CC9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/349A83EE-C309-D645-BBD7-1554FA0FE561.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E5D1D63C-BF27-6041-BBA8-AF97F82EAF08.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/22967C4F-AEEF-F740-B4FD-DCD770B5C254.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/55A3845E-A88B-144B-A864-7E244AA265EB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/46C0F206-F436-794E-8055-E0573B1E0A26.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/22FC3156-5370-0742-83DB-7FC7C119302B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7A209E68-B308-8D4F-B88B-8AAC69F8FB97.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6F6F7A3D-39B9-D546-B25D-824154C523F1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/975C41AC-070E-8C41-A72A-F45A2FBD0C2C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E761F248-53CB-BC4F-8631-ED12C14D3255.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EF6AF06A-D7C0-044B-8387-49E76164AC3B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F187B028-2887-D54E-ABAE-14FB3B151B1E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D2F747AF-6D5D-8E40-BD26-FE4B848EF4E4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A3A81FE1-F70D-9942-A8F0-FA79FBBFED69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AD383CDC-16F7-344A-AA7F-78CEECB77DD9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/22F98CCD-D88E-6247-A07E-FAD0150489CC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C88C15A2-37F8-0F43-B8EC-2416541A097F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FF96B399-1828-0041-83A7-15274383F48F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/551DDB2F-D5EF-2F4F-8646-B3AE890C07FA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A8DA8942-FD3C-7643-A8C1-1508EB083863.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D98B3689-9691-2E43-B164-7D1131C55FAE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1BF06623-0AD3-BC4B-90DE-EBFF447C24F3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/14406A87-0047-C143-9D04-1A4121C6BC9B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D3670638-3E81-4941-A091-015C503B2D7E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/62CDE87C-82ED-6346-BC21-456D0108BDD8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2191CF6A-5406-E74F-A488-42C15DB581DE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/62D07772-933B-F54C-994A-BBFBAD810A67.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/3F3D4E4E-6FE3-2645-9C35-A7C93106C311.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/9359A925-4E0A-5940-B765-B55D6E089784.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/0BFAAFD0-B0A2-4E4F-8CF1-8A89E512610B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7CCD6FD2-EAA6-BD48-9177-C22D0C6CA4CF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B5589314-263A-8345-8E08-F2147C011117.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EA5E2F6A-268B-C84F-A14F-79856C6F3B35.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2F7036F7-D2A6-E84E-B4AA-920AC365DFF5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D4F03A0C-66EF-1447-88A6-825A56F20A7B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/74F41B63-6031-884A-ADD5-F6F9CD7411EB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BA882125-5E35-254C-83EC-A1F0B192D42F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/736B56FB-DCD6-5243-9A0C-F8DA023B9D59.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FA244E88-8A92-3440-BF49-D62868B45246.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/345752ED-7E1A-C642-9B68-833A6AD6E3F7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1B27E34D-DED2-3D44-8831-365CAB475E40.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2DD15DC2-0A6B-3D41-BE97-4E045ADE5789.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5D16087C-50B0-154E-A22E-0C962E898239.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2DADAAE3-AFDF-5A4A-B2C7-8F8D917C4212.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/576DF2D1-3EC7-2446-956A-EF0AF3639465.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CF768375-E14B-7D4A-905A-633FEFCC7D76.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/211449BE-07C8-0D44-8E22-771D6C77F0AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9DD27F38-46E4-DC48-91C1-CD59CA9AFCDA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/CB7F36AB-AE63-054D-A5BE-0C2543037F8A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4A0F8595-2CAD-9E48-94FD-94D5367C4C29.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/39D3C911-C1E6-0142-928E-3044C372C294.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B3D9BA34-731E-A449-B610-5705E364DBAE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C3FFCD46-F36D-824D-9690-7C5D424F7F29.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/15017D09-ADB0-8B49-80FE-07AF4C3E00D3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/71EB7C14-3A9D-CE4D-BD25-15BD11AC2753.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2CD39A76-CAF8-D04A-A959-D5E10057796A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E4F719D5-F357-8741-BBB7-9F65C74D1DA3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DF7D68A5-792D-5844-BD36-901B8AE30DF5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A18C8A93-DCCF-0C43-9256-F94B790D61A9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9350973C-56B8-C244-91E6-C0F83A8108B3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/93372B2E-9E46-664E-8316-72A7950237F6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/84F25E17-632B-6445-B627-242BDD93018F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/883BC781-1288-3942-B76F-048EBD22680A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9BE12F8C-57D5-3B44-A119-DB2E187E458F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/12A8DC95-A51E-AE4E-8024-61D61E80A372.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DDE61B81-6742-4542-BFEB-FE38959372D6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3A6040B3-57E4-F243-996D-4E94EE2219E9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1478C821-5247-2743-8205-E8734DD269CF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D5584BFE-0E4E-3043-AC02-5922D3C06259.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7FC386EB-CA62-0548-ADE6-4E88C3DEF422.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C911AA40-9817-4F4B-AB19-B93885B76CCE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/9A04E7C8-B9AF-F44C-9684-CCF27B265F6C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/7C19BD87-7901-1749-BF29-F27191149C2F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/FC727BD7-6F26-894A-A580-518AAA0184B2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/096C79EF-2BBA-7541-A0E9-FBED488866E5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/DF75F413-7284-D843-9D41-16ED1B555E98.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A7C04A99-2D87-DA44-9D86-31859A71CAA1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A2E030FC-032C-A847-9271-A39EC678CB5A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3CA58C61-7ED0-8E4B-B700-7E7908452059.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1633ECEF-5128-DE4F-9743-36175D16E501.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/52ECF716-42EA-A146-84BF-7E00A1C7BD3C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/BFDB8263-6124-914C-93A5-71DD9571A67D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/66D7A0D4-8C21-F049-B59F-D1A270177E60.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B4EF9D2D-A52D-4845-A184-C2399BD765E5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F9B714E7-C857-1D44-8B26-A65276F214EF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CA3E0925-E9FC-0249-ADC7-4106A17B8DCB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D3FAF26E-4EAC-5148-AF12-3A261469843D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CD79677E-8CE4-9447-B3CE-5287F687853F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7DB981B7-E2E6-9942-A3AB-FA79855FED21.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/C59ADDE6-8358-2043-89CB-80D12FEB95D2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/3B7337CA-7A49-4A48-954B-EFC4ADD760C7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/56CA5136-208E-DB44-A9AF-A5FC80AFF84B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A90BA744-AD1D-4D40-BBE8-D190ABB3F537.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/21B0A5F9-89F9-3842-A0E3-D3A8A4064D83.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/3E65D4E4-9A4A-6C48-A88B-ECCFE90E1EFF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/34531E19-98B9-E44C-8BAF-E00F693886E3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/188B5377-B327-1247-85DF-1FBBBEC7BD28.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E3D3281C-AEA7-8F4F-A63D-9518A5F0AA60.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/689857DD-B287-C94D-AB3D-52F92F851754.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4B6241D8-EDB4-A347-B20B-896FBD574938.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/563BEE6E-CF60-B940-A2AA-71008B4D2BCB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7B741255-F914-E64A-8CFD-10A66CCB095C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B2F3F422-4D01-824C-8AA0-EBDD979E0A26.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/5E6E3F0B-9AE7-E543-A44F-04157CB7609D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/3BED0C18-19BD-A147-99A1-F6B8B285C16F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/767D8BB4-5B9D-D743-84C7-8782250E42DD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/4D76D5CE-B49D-8D43-B106-1BEA75A29C69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2212E175-B2EA-B647-A66D-91E1E5650843.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F6FAE3A9-717D-194D-BF2C-276EA17D3AC9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7DE35218-1072-5E4D-994F-92C2E1DA6F12.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/780E7309-0021-FD46-91D8-D2A0AEC994F3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9C0B4ED0-7F94-DF46-9679-6CB31D96B37A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FADEC613-060B-784D-8389-066D211DC795.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FC2103BA-47E1-3F44-9E5B-D05AE7EB162B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/467148AC-CAFA-874B-BFA9-F7F49C2967F9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9407A270-EDCA-C641-AE68-2DAFBA55033F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/35714466-9239-AB42-B03C-2E0B698A8FC4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2D37447C-2D66-354E-888A-96673BFCBC63.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/48E51B44-D4DC-0843-8CFF-7D3884130B97.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EAB474A4-12CC-C64E-882E-B69BB49FB0B1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7124EBC5-0887-4247-ABA5-2D8B2301906F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F69F7673-E4CF-C740-B95A-C754272ECD44.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CECA6068-378C-164F-B8E2-D1C2714C98C5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8E47A06E-0A41-2F46-B1DA-500E596307DD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/08910AEE-EA00-2D4A-B71D-7720E74FA411.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E15EBE53-AB8E-DA4E-82B3-AD4750843BE7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A419E98D-DB58-D34C-B249-F6AF0FB67226.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3D7BC75A-F339-2549-8DB7-300D36E48D0E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D932215B-A127-6E44-B512-C75F08053E53.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8A2DE90C-D877-284B-8C76-66520ABA0DB5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2BB83818-C845-4E4F-B36C-13F09272DA51.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FA32E39F-F742-B342-8721-A5D5A308B08E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1B8EACEF-994B-F445-BF62-BEDD0E20B09F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/80E00B6B-5F9D-1E47-84F7-0B92E0AFA22A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/007AD102-123F-C048-9A6C-DECE2EE9D455.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/045C5879-FFFA-DA48-9FF4-60C2A0AA3BF6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/CD5E3F2B-7B97-C543-80EF-855017962174.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/EC9CDFBF-F941-354E-9CEA-7E8714600FE2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/FA4C37A4-9CEA-2547-86F6-98F047C7EF08.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2E2B007A-25EE-4241-976E-8ED6FA6AAA44.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6748334B-23C7-3743-A659-E57349BED528.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F9B1A80A-07AC-EA4D-BD21-8F78446959EA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7DFDE5B6-B839-D549-9A20-F8399622920F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F9D53F42-B1ED-7647-9063-3AF81393EFF3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D5C93A16-5B33-1949-92B1-876D82A00EC9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/16A3682E-1A09-F746-A0D2-8DAADA12C5F2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/30A6627B-1752-DB48-82DB-E880A128AD93.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/02F9EAC8-79E3-4541-922E-58E931864E72.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F3AAB51F-58F7-BA4D-B09B-419DDFF2E5B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CF8DB6A1-767F-E14B-B866-328A8BF1F09F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/05F137FB-85BE-C54D-9F90-8BB87E26B7D0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E76C7AB8-132D-2040-8039-42904A9D0F64.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F3DC0328-8C7B-DE4A-84C7-BAA5AAFE6143.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F6495DB9-1139-5940-8EDD-2D75A6C24DC5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B210CD75-A929-5043-85B7-13B2DC9FA0AC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/566402C2-F4A3-9F45-82F8-C6A587BA9217.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/902CFF5F-E4AE-C747-9666-EC5E985EEE1E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/636C3E62-91DC-CD47-9176-BA297AD9B11E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/64777609-3796-8A4C-AC59-696D5E4C8560.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/381104BE-B915-3743-B414-415A6C92AC00.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/60B69C71-48C9-B141-8412-F11453B37622.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0EAEEAD1-3409-D34C-AA33-EDB02B6905C6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5A98D351-82EA-7347-894F-E4B0E1ED492D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/9B549D38-52A2-F144-ADD7-387847243EF9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F0333309-DE0B-D449-8F3E-A7839FEE5D79.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5869777D-1B81-3B43-939F-32FAD93279DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/05EC657A-52DD-1C46-B4D6-27F9B4C91940.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/33D5CFEF-7175-7F48-8E69-29132CED954C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C8B3C54B-44E7-C548-AF54-B1AE6C802540.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E033AF59-7587-324D-BF32-9227F6BD86FE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/AD65A79C-FED7-9247-A360-ECE6E15343D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B0307F8E-EBCB-C54F-BDA4-E9A434A3AA44.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/07AC897D-5162-1C46-A6B7-BAC0CD4D42BA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BA8AAD0F-AB12-5944-8EC9-7535B134AF07.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B7FCA044-297B-3F44-AC5E-DCF4F0654B9D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/030A1F79-08E9-8146-B7B3-643C33B5344D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E033C80B-68A8-0F40-8666-6E2A5FC67C7F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/173158CE-FA59-EC4E-AF71-34195BF10805.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3E28387D-9B4A-EE41-B5AC-49932973CB69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BEEE6D47-8282-2441-8D9B-CE5FF072A513.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/731C19B5-71CE-E74D-A1C6-864A29AA45D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/055EA6A2-6F84-2C40-9C58-4D9B5608CC4C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C55821AE-5FF4-314B-AFC5-0484C7C23708.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6C65F758-6812-6541-B30B-4B61FC25259A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4913A6C1-CB35-1E4C-9C2A-0BED75514850.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D10008FE-09BB-4A4F-81FF-600119286553.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/54FF7ACB-2210-6B44-AEAA-292D53A57130.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F69BC40C-69F9-654A-A439-82CC357A63AE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FC1D1F38-F37D-B441-B3EA-500AF7EF626B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3D03FC44-69ED-0E4C-8FB9-0AC9B64CDFE9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A0A5CE21-847B-034D-86DB-AA80F986BF21.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C61AE37E-7D74-E749-B139-2FC76AE2360E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/EED7577B-D116-4F40-AB45-C69BCA937CF5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/203BF799-C6C3-D547-AE15-7915AD0F2A16.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/766035E4-6D76-6D4B-B54F-5F10059FCC73.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1EACF5C0-7A52-9042-8812-4AE6E1CD09F1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F14472F2-4EC7-9649-B3E5-9A5FAC5AAF7E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CF76B102-6B75-CD42-98A6-B2A466203E80.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E228F114-5390-424E-9C0E-CFC191C2F3AC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E531F04A-48AE-F842-8212-B9F98B997F42.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E445DC6B-FD07-724A-B6A4-A66F638F6D52.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7CDDB2AA-C2F8-0645-B4F0-61C552013BCE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/DCB95BFD-0486-D24E-A7CE-C926F6667449.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/56D0BECA-8B99-1C4C-8D29-2763EC0458EB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/107BD514-FCCF-594B-9CBD-CCD14965FD99.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/786B2A7D-3E43-1142-A320-AC473B7515AA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/61FCCA17-4196-AA44-8F27-B3E14AF6A449.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8C6EAD8B-7BE9-CC47-940B-68E9B837661A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/87E1A10A-754F-E54F-946A-09C3E2908E8E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A9ECB63D-963C-C046-9349-1A0A913937BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/47FCA358-61F4-474A-8C10-4C835AB4E5E6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/04A18105-0FA7-AB44-A4CA-688F8A98DB63.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/993677C4-C866-C644-8DF1-50578A6B0B27.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/582EA58A-9112-C240-B577-6C276765B6E7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8FFE0218-6790-7442-91A9-B9BC02A0305C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FCC2B16C-0154-DC41-8600-32C5B2CD8895.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/11C7EF89-6776-3E47-91DF-AF648498C217.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BC14AB35-0B58-5441-B2D9-7877C89FAA64.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3F9F5506-6725-B44C-B515-DF8261822226.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FFB2EA88-167B-C149-93C3-5B5E200D2557.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4E42BA0D-F695-9043-AF8B-E5D08FA2F80F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A7B236B5-2378-FB4F-8F31-2C5737E864D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/52554B8B-FBC0-7641-8D72-635C3284C027.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/11597342-5036-A946-B40B-0FF9AE9F1530.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/75A70671-09CB-2141-9A1C-CEA00C9AEF23.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/34C8D9A4-50CC-9845-91EA-4FA0B4C0E5E0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/094FBE4F-CC47-7547-907A-1900DCE9D100.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/BD29AA8F-FC73-7842-9B87-0EA9E3C43B3A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C18A4C05-03E9-DC40-A298-1D7EC438378C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EC56E612-5DBC-264E-BADA-59BE45D0FDF4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DBCC1B9E-CA3B-464D-B849-FB7668F202F1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/79678243-CBAF-2849-8E22-8ED5E3CCEF24.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C936F090-7694-104C-8977-5547C4B1CA8B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/90A5C319-2195-494F-8FF1-6E599EE92EC4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A0FC6B83-809B-634B-B303-29C2EA4ED4AD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/107C4E39-001A-CB4F-9542-2138DC62EDA2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/392F16F5-1E5C-7B40-9483-5B54FAB23635.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/80CB7F88-8A57-9840-927D-5794093E9186.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/01DE3AAA-48D3-D94D-9D3B-712414BA7708.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BA0C3EF9-F9E6-3D4C-AA84-D0E9F5FCFD8A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C2424043-EC3A-8447-9AF8-A3226FB8A3CA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/DE40E678-511F-7541-AA8F-614ED4D41D69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/70834B86-0A22-0541-879F-71DB50DC3ED9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4A786DD4-CD7F-4448-A879-A0409B9AFF57.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E631D6C1-CB6F-B542-B8C5-A86E384DA34B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/12192CE9-05A7-E24C-960A-D529DDA0A015.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C8867D73-CE57-3947-82A3-7032F5116437.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/67C47015-CC69-424E-81A1-9BC9905C633A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4A1CC235-A3FE-9540-92C1-8161546E1C65.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/76329217-8DFC-154E-BF7B-8724705741F0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CDA1B7C9-58EA-C84A-AB5A-3C2465DE7C8D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/79317D7B-ADA1-1B48-B0E9-65775013553E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C2642A66-AE97-E940-AD2B-634ED71798AE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/CD0568C9-59B4-0247-A2A1-A6458C44E493.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BE634514-89C1-DB4F-A2C7-886A79F7FA42.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/94E82C64-22AE-624F-A665-3CC9F068AE2F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/40627AB3-880D-3141-A0A5-51A4F3439E40.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C72575E9-43C0-E642-B722-8624A2C69152.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E3BBAD71-F693-C04F-B3AA-7AF8C7CA1BD5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2795A353-8926-8340-910C-3D349C235B6F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/AB41502F-378B-CF4A-BE7E-3D25320329CB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/94D8F89D-9742-3244-846E-82E7C5E87FF4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5B0587BA-1412-144F-AD0B-DB84D7BB268A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3E5E44C3-EA9F-8644-992A-2E09D4E8A2BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D0126BDF-337F-FE45-956F-7BD7D7C4A6FF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/64D313B6-F0D7-6F4F-A2E9-3CA21197431D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3AECE097-18EF-5A42-8E5D-02E5FE381B50.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A00E3417-D62C-F743-B7B6-389ADA168F48.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E2B9797E-408D-E24F-88DD-983989BA1A7E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/175C45D6-F3D4-9C4C-9E7A-CA0B20D8D162.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F19CE2C9-2E6D-C54E-B033-7366994EEFBC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/184744DE-D1FC-F04A-9AC2-1B3C6DBFECD3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CCDC70DE-E2E8-3543-9F2E-03D158E2B213.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5975CFC6-9F10-1E4C-B886-CF2078C80B49.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AEF0F040-3975-954B-9D5A-7AE0548710DF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2680AB12-B42C-804B-940E-0567384D2151.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A3473E53-4E1D-7D46-8801-D9911ABC5079.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/25AE53B4-927B-BF46-B86D-1A0AEE069C57.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/05AA9732-EBC8-254D-8D1F-BA7DCC039B56.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/940E5BC4-8180-AE45-B6FB-8808C8F040C1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/45B88290-A2BB-6947-96D5-739FA0E5E779.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BA45F472-3725-AD4B-981F-16C3927A73BD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F666297C-48A6-204A-8A4F-58D511245DFC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5D7BF345-A184-C541-B139-4DFEA5D19128.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9CA122BC-75C1-B044-8951-2C7E90E88B8A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BFE5A751-A1A5-884D-B860-C4D6A68BFCB1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DE9DD5AC-FA0C-E947-9910-A38A6401D989.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D7C6D8B4-9BAB-5342-8363-35AA869AA09B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9A17413A-DA49-F449-B574-AC808F811B97.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0CEC099B-037D-2E4E-AA0E-43CB3AAC8541.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3645A0EA-8740-104E-AE5D-1E5F1E7D1D2F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9206FCB3-A406-594E-A08B-03B769512F85.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E85B5412-B15B-D94B-873F-640DDE985171.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/71C3C44F-A327-0E4C-B805-F39844C7BFD6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1BE20D82-DF50-E649-AD0F-DBBFB20B029F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C08320BA-9412-A147-8AE5-4035066BE1AD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D321BF43-86B0-AE48-8C4E-03FD7EF973BE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7005A0B4-6380-C649-BB52-429C8030D83A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4E0B0A90-CB06-FD40-9164-1EE901037A7E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8A38949C-28E3-A94D-860C-7E88A421A0B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AC0D78AB-5E42-A44B-A600-C1F4CDD21600.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/05330AE8-8807-F946-937F-F09ECF79C92A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/60C1AA0A-BE8D-E348-A76C-798BC73BFF86.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9EF66546-64A8-C14E-9BE7-E7E74EED19B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E22EAE90-A887-3145-A302-1DF69F7838F2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DB573C3E-48A0-B244-ADEF-9636BD11161D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/74269A73-0D77-1546-AD31-43338C1E7776.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3AF908AF-6AA6-084A-AC2D-B31AB6D3551F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/662F957B-0E41-B04D-BBD2-D8759B04FD91.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B1AF1F1A-9E4F-9942-95DD-95594C0FA4B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BDDBD3E1-CD0D-3E42-88AF-C1C9B1DF37C1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67C3CEDE-DD40-6546-BBFD-C861499822A1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B962E43C-0A2F-D346-AFE0-9CD0F2AC98F5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5CF6E4A0-CAE6-9145-BC6F-62E020954252.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D52A0C99-92CE-3041-9E3E-1A317EE00304.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BE14E969-758F-FA41-96DD-3E355D831415.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A544620E-06B4-FE4B-A379-B57D22D9F733.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5E542583-064D-2847-9E3F-25F7E618B2E5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/46D8FDBD-EE73-874A-BFCC-F47DC042049C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5E2FC349-27CD-D54F-9279-12F9D92DBBCF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FEE97C7C-DCB4-304E-9188-B9CAEB6EE9D1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8EAFE3DB-A06C-FA40-BA59-098B4482B0FC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5A3AC528-5004-8D41-A622-3767F93DC252.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/92826852-6522-154E-9218-EC1905096EFE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/93E0DB42-BBA2-ED4A-B8BA-CD45DEDB3AFE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5DD37DF9-6656-1241-AE0B-C0FF093D834C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/326E5AE2-6F10-7D48-A4E8-7F39EC8C5031.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7B8C3C1F-EAF0-C043-82CD-F40BCDD77909.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/50F63CCA-585C-0049-BAD7-BA4A44E1EAC5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/407E3518-27B6-604D-94E7-5DF4E2FCC238.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C0E630BD-D7BB-1D47-BDC4-4A7A9C98C727.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/96ABE073-B259-8A46-84F3-D4E500634E59.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8D6006AF-D7D3-624A-92BF-E39550DA964C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F70C66CF-23E2-0D45-BDC8-1FD0ED5069B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EF2026F2-5074-4345-9C4B-F4BE394B144F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4B4BB8F9-F7FD-A549-9DE6-C1ADA8F9297A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6A9BC710-F06A-804E-9F4B-398204D70A20.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/8BD4F4BA-FC29-DA4B-A5DF-F3E90E4E4E3C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/24B4A1B9-1DBE-7542-A5BB-D91E0F300BB9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/0B56C931-B7DB-B046-B2C0-E5626A88A655.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4158F030-6451-8945-B8A3-AEF994A103AA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4FCA3401-3A6B-B24C-A485-46C3575F91FB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/211B8B26-5A6E-AB49-B431-16AD84DA8B2E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F483428D-6415-064D-80D5-30FBE12AD826.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/51A6B9A6-3E96-CB43-8EB7-CA6ACCE55FFC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/050056D8-6D95-EC47-87D5-ED5496EECB91.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C814E3C0-2692-0643-82CB-7F472BE7B7CC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FC13E3E7-0946-E544-863E-C0D7A63B493F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B2084D29-8B60-1F4C-8D93-0D74752854FD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B5E06CF7-0FDF-0447-8090-2B510B8D18A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B1D0C39D-E627-2E42-9C99-6640F28AA5CE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B8B1AFE8-A764-DC4D-A484-FDEACE725B93.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B131E87C-CFCD-B149-938E-E71DCCC7B359.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/42A17CB7-5456-2146-BA67-D51AD0A10D30.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/97210360-60C1-2B4B-9BF1-8CF21B132465.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/CF02A086-6745-4A4E-906D-0AAEE3BA47AA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F5E287CF-E16E-A64F-AA40-DC282E7F033D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B5B7EE61-92B1-3544-8518-AC81FF8EFC27.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3D179800-193C-0A4B-B2B2-E7671EC48361.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6908946E-8920-6B41-A4DC-E99F182BE87D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AEE70008-AC2E-ED44-8821-B699D803AF3E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8AEACC31-EDC0-5B4F-9549-3E5D8CAAC72B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/192ADC49-3C05-A54F-A0B5-5691A8F994B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/23B763DB-1163-A34B-BA03-50ED10A5586A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/841A9442-70C2-E243-B4F5-8688BE19318D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5D6F9424-41DE-C34A-B6A1-A3FB63EF8447.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/46F5CBA2-1D1C-444B-8F31-B28E1897F307.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CAAC4818-3EAC-B349-B9F2-823ECA9A2E81.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FA289D0F-C7F5-A74C-A778-7EC7B5C4BA78.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BBA737D1-6F8E-684A-9B8E-5ADA8CE4EDBF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/44D8BD9B-EE49-C74E-A948-FFB4BB4FA45D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/124EF91A-4712-6844-8FAA-84E312663F37.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0DC9D2F2-6216-7440-9A81-D26EBEF46ABA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FDB8108D-9066-7A40-A429-185D3A4213D1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7979D578-8B7D-9A49-A499-3909C38D30E6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A37CCB15-EF56-734A-BE64-B092A4AEE502.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2751DCBA-8D7E-7A43-94A7-465260B3A221.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/EFCC61D1-FB1B-544D-AA60-9DE439EF7CF7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2989DEEC-6084-5D4B-87C8-CA0CF8140695.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6732E764-F424-1C4A-957B-4FF49458D864.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/D87D2D44-7341-D643-A798-2F263CEF9454.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/23AFCB86-AEAA-3244-99DD-C2B68FE213E1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4F5CEDF5-93B7-0440-A833-F126A2A61F54.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/EACB0BF3-516C-7A4C-B814-6B324F9032A9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8F0C561A-5247-6C4E-9D0D-A9C8C4A70F2F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/46309D30-9CF0-134C-9D7A-18E7CF0167DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9433FDF4-7F03-064F-8567-FDFA266833CC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EB2F975C-942A-094A-9CC6-34C505AF86E3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/59D916E5-E0C6-D246-9739-D5AA4E61CE97.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8C44CC8E-D8AA-CC47-81F9-98D0C3D7600C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8503C830-82D0-DC41-8F76-22FDCB07E885.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E285E21B-21F7-1E49-AF8F-C35E417B050A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5D593C4F-BF53-E849-B028-31165E8F7F26.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/EBCB596C-39AF-904C-9CDB-94FA0EFE1AB5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/40E070D2-9B7D-A847-A24E-9CF0993F6B63.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4636222D-010E-314C-9F6A-826C34A4D284.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/7CB0B1F8-B391-C946-B3CF-AF6005580EE0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/9A88F109-9C5A-1942-B2C4-BD810D1873DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B929EA63-9CD7-C24C-BE6A-9671C685CA0F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BA5B9775-7371-A347-A366-3213A7B7075A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/21CFC349-9CE1-2548-9FE2-F76D37F6A409.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D8C830DB-25E0-4144-84DC-69E54B2147D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/637EDBEA-79E6-3347-8D3C-08347C69B4C8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4AE859DF-9E39-5748-9F8C-076723FEF7D8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/71B00F11-FAB8-9A48-850D-5E058B1B04B3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5B46949F-59CB-FF4D-81D3-F3B79CC6A1F7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4D94F781-03D3-0D47-8FDC-E21AA2FB2FB7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/283F6D96-F33C-A345-8DA9-92EE6A6D83B2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3B583177-AC2F-7D40-8885-3C6A78042C47.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/503BF92F-D293-2248-955F-2A3B0B714EA6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4495696C-3672-4E47-BCFB-2EBD0532579F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9C9A3A63-2154-EB48-8D7B-3AB3DEBF8415.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/955B5BC1-5A9F-B54B-9076-C4C394C9F3E7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B63A0099-5C6D-E441-BE45-F6956A573B7D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/636CEADD-B4F4-F344-B50E-BB5B63526542.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/30E639D5-E710-074B-8812-E682B89A2F1E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F7E506DB-B36F-2C44-95F9-29867A001EF7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/36675E43-A52F-B94A-AC85-EE8677FDA419.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C3C38070-8B90-7145-A444-222599446E6E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/33D07D81-EA92-F74C-93A5-772D0383D765.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1C33D546-513E-4E48-9635-370264F17FB6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6053FC08-7F1F-744F-8E9B-BB75135F7FFF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C5178457-935B-AD4F-921C-4FEE4D1AB4C6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/873AB988-89AF-3A49-A208-7EF2642D6FDE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0FF24956-4DEB-174E-B06D-0BF0F1A9CF3D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D5D1FEFB-3BC0-7E4E-AE18-8387AD401393.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1263FCA8-653A-464B-AD75-A869441BACAA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1A916A25-E7C2-B140-B791-CC1252630D0E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6F2C505B-FEA8-154C-8B8E-E4BEE268EB88.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/EA1193FC-1EBE-2D4C-9FE1-E39A06043A44.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A67D8648-28AD-214A-A0EE-C291441FC32D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7A125D4D-982B-2942-BD59-04C3960EC60C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4DC937AF-DE17-474C-A912-6C779B4A154A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F2647B7F-DBDC-EE4E-BD51-BB5069ECBB1C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8FE335E0-6944-6647-808F-24CF00886220.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3A343E18-A776-DC45-B0BC-4C95D8E3CB6F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/140D20CD-9ECF-CB42-8D6F-1D9C8D7D5046.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EDA51A0B-94F5-4E40-8036-AB41813204D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/17BC565B-8C65-1C45-A343-BC65AAA02776.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/343DFD90-DF48-FA49-B5AC-0742CEF694F0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5C9BB2A6-CB11-5F43-B000-E45600FCA919.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4B939D48-6A3A-5E42-B31F-94EF7F22DED6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/97F677A0-DECB-9F44-ADC9-2FD3334BE6A6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3170E3DD-F848-0843-AF34-F69CD89894F5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/66FB7724-184F-B242-AC75-09BA3CE1695B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A3CDD351-77CE-2943-8EF3-BF6692D3398B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BE0D2AC5-762D-5749-8463-C79A0AD355F1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/85FBD0C4-1A02-B34D-B90D-C6CEF911C4D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/293C0AA1-9298-B346-A891-8149BE26BC8F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B6ED5189-CE56-F04A-887F-B49FCB6ADFC1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/84BD03A5-56A0-F944-8E2B-5869D4E144CB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D5308196-AC42-6B4D-B861-7426A5958769.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0FE4616D-EDF2-5741-B751-D618D8B3A7D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/494E422C-5FF4-684C-877A-37B0B6E0C0BA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0509FAFA-F30C-A948-9107-DE9F4EA43A17.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1D8C76C5-6CA9-A144-AA9E-8E1542B0F888.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E78AB5F6-955D-B644-BFD8-1C0FEE87402F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/1BD418FD-942F-074A-8337-E88DE22A7F50.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D3889070-88F3-6C4A-BB0E-B9E1A47887B6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E5260BCA-497C-3C4D-B81C-09E8F935E39A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C9603DBB-EA35-FC4A-B195-18092F72BD4E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/95301DC3-F29F-234A-B21E-E1E0D0B94754.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4BE711FC-5220-534B-A46B-F4A8B528E4B1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/50790D2B-BE3C-5A48-8BF7-5F8FBFFE7E69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2894E78E-1805-5B4D-A9DE-7A697B45FD5B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E743CCF2-F412-CE41-9835-EF395C6AB754.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C7D4C687-8C6A-5C4B-A895-20601659F297.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/8D282709-B313-D842-9911-117DE3F5F18A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/982D4648-32C8-F948-B361-E174C19CA1B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/003B7F76-92BB-E04C-AF83-66B71587149A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AC5D0178-42D0-854B-93F6-143BF6C3ACB6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/405F052A-ACEA-0149-BE2F-0FE9247F7012.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/71A6523B-B307-EA41-ABB2-140A8C5945D0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4F47DA35-F6EA-A345-B14E-6EB2A865C219.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/84B1C2D0-E692-7244-98DC-EA1AB7A87EE2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/E287E9EA-594B-2648-BDFF-87A2BFCFAC16.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/71ACA87C-A456-694B-AF51-294D14EDF807.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8D6F14D1-189A-5144-AB23-952D29CC7361.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B372F490-4C7D-CB4B-ACA4-4E0CFFBBF793.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B5D22699-5E07-994C-843B-E5EDC767B5DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/14A46675-5359-C14D-8010-CF4C82366146.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4B445997-42BF-8B45-85E6-B3A3F3621F42.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4717D375-748D-CF4C-A9A0-1DFB3AEFEBD0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CD3C02EE-2A0C-5843-B6CC-EA80030E00FF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7843B9F4-06D8-104C-89EA-01F12E3C4253.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F398E7FD-D50C-FC41-BB6F-80BCD880BF83.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B7EAC370-A31E-E245-9286-92E69C1B5A44.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/86992BBF-A44B-BF4A-8979-A3F7F392AB70.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/58D4A182-D1C1-4947-B0F8-4DBFA77045BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/1D6B1733-8B61-D146-BE03-3E17056235B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4F8F592D-C549-D247-904F-DE06865BBE4E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/591910DE-4BD0-C247-8000-8AB544E36186.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/11D4F681-C6AC-F746-A517-AA0C385E0276.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/14E69F6B-F461-F445-A7FE-A0C674A95937.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/0DC81BA0-1E32-3543-AFE0-8AA366BA2707.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B1831D47-9CCC-6A44-A6DC-3ED4DA67A8D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/34936110-125F-6545-A27F-D8E1F3B0AD19.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4072DE9C-EA21-FF47-A324-2A76699E3D80.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D03293A8-B3B7-0149-A483-E2C7A2DDCD49.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CDE66181-EE51-C341-B8CA-A07BBB9148B7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B157AC46-23CB-6D41-AD41-8FEE40530B86.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/2E95AC33-2B78-4F49-8EAF-A700B9126407.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E7941243-9415-C146-9670-3A17F394BA69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/2882D207-E666-234A-BCFD-93060CA6F510.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B0BB8B78-CD0C-8E45-8BE3-19564073D51A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F2A0A696-587A-9146-9F7F-803D2C79DBA9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E683A059-A628-3049-B908-6C433301CED7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/35C95545-41CF-8A45-AC18-8F481D23AB33.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67EA368C-FE18-F943-986B-D5B49D8255FD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B88A4105-98D8-0E41-90F3-30EFFD02BBB0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/35DF8DDB-D3F3-114B-9AB4-E8D1719061E4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/ADD9F4C6-97BA-2649-8739-41C50151CF1B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/D2A5ECA4-1B21-1B43-A091-2978656A9FC1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9277ECBF-2DB1-744B-9FDB-DBAA7BE705AA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/517E00E0-2F6E-754D-9536-2D798224E027.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CFCC11E5-11DD-A546-91BA-04396421C57A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A8A70769-03EF-7841-8EC0-5DE1779FB328.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A4968EE3-7AA2-314F-B1B7-588E2D37ADBE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0D20C843-34B5-E349-9D2B-06FBE8C94DA6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EAD0AD30-2754-EC4D-BF72-65DCB780180C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/68BF75FB-922B-2647-A1C8-F3C4106831AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/FA97A69D-995D-9C4B-9AA1-DF507B87D2C8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/188DC635-CFEE-724F-B056-3E14C76EC368.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1EB58A76-A811-914A-A178-4D4C6F3E5FBB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A26F5871-DA11-F445-8B79-B2B8F9217961.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/82256CE7-A812-AE44-B052-8636CA6A1FB1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0A6D0C3A-7307-A44C-AFA9-4680B678519F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A792C007-2004-E844-939A-7693F0BF1060.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F5806A63-5BE9-1B4C-AFD9-43202B1B0CE5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/90168FA2-A210-6E41-9752-A0A3984A8C37.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9F276884-CBDE-D74D-A3B5-F024E68AF820.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/60D802A7-934D-3247-98FC-303D4D498F41.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/785D3C97-F803-AC4E-A407-BBC7FF86FF1A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2E4EB9AC-8A12-BA4E-8D7A-193849E78FD1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/51114242-C41A-D74A-BBE4-4A0A31EED1C5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/563DC78D-2144-0C44-8A0F-367644886D17.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/71FE6127-6614-0C40-AEC8-61819BB26584.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1478CB69-2A45-E843-A8D8-422490059F4A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/57FCA47E-71C9-A145-BA5B-D443C76F5713.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1C4D1D82-80D6-4246-B81C-6837A3E27B01.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F7EB487F-DBEC-DB4E-B8B8-DA8BB133D65C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E2026BDB-9CE5-0C45-9608-E1AED56A851D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/867C320F-6E30-DE4F-90C2-AAD6B22839CB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/37F49FFB-0E23-3E40-B8FB-2E8876BF1285.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FCA016D6-0A02-634B-BCDC-5895D358C5DB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AA9B872B-B81C-D945-97CA-B22A27803245.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AF3EC915-C029-5141-A69A-DC572340BD30.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C2E45025-F6B1-3440-AC2A-A95011BCECF1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/82E9A280-6380-8D44-8DCE-4F8595390D88.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6B298F70-DAB5-224D-9C4D-A93F7FC98ADD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/6E4E98CD-B267-9F43-9C6C-08F8B7FDCC10.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DE40A115-F7E5-BE42-A75B-B1282EAD7293.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6BBB2DFC-5EC8-304F-9D7E-335EF604E819.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/93EB0DEF-0E5A-4442-A26E-5698B0C78D8C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9C457657-1B93-9043-8FD3-7AB12C3C3643.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/EB307431-CFB1-2D43-AA72-4E21E1AC47CA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C5D7661F-36B8-0949-B5DF-4C7376FA5920.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/BCF0EA6D-48E0-C641-8E8B-0534DFFA2FDD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/601437CF-AAC2-BF40-ACA7-2963A8AC5BE7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/04D0D206-47B7-BF41-9E65-2AF6B4E8F20D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B386198F-6782-EF45-92E0-EBAA6D5BD4AD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/C2770AC1-1DCC-2F45-9730-ED25A7DD6EB3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/E8EF634D-CF80-BB4A-9D07-B893736E238D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/77B888EE-15E0-F14A-ADDE-88DA4916DF2D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FA92101A-5DE9-8C4E-BB14-60A2C3E3BCB4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7737A4E3-AAA0-A04E-A2E4-5DF40F454A10.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1AB7C6A1-A1D3-014D-A9BC-4BDC2EE26C25.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FDC72F67-3337-1D44-9FD3-8EA362DA6389.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/A8777B25-159D-F547-A38B-91B1BA661625.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/14028B98-66D4-8D4E-B7F5-ECD522E0BE18.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/23ABF8D1-8A89-C845-8BA9-1F05C8622B72.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/45D3FE2D-601C-6449-9481-A19D75915F02.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/897FE4B8-D15B-5F44-A452-5693B8FBC720.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/918A09C0-10D3-0F44-8C1B-2BAF313B7116.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A8F988AC-F26A-C14C-AA75-8A504EE95D6D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/87ED9795-1731-DA40-BD99-52DC7E0F3451.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/98397637-8025-FD48-A932-3D7E51F6A1CD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6B9E45F6-2E4D-6A49-B961-98676AF21175.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F47C9351-5EE4-2F4C-ADE9-EF6AA428BF88.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/585EE6BB-BE6B-B044-A409-A3FE5B0ECC3D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/99B5A26A-2742-6346-A123-9D6056D3D1CA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/38D5895A-CC78-6D44-B90A-33C648591EF8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/29F51748-48BC-B94F-83BA-9649DE76F171.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CA2EDD72-E71B-D54B-BFDA-724AB84A2CE0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/18846E46-C88C-7D47-9D7C-C046F041F597.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0C40397B-1F23-1743-A73B-01F869565B9D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C97C03E8-F3E4-E841-BDC7-C4F990526265.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0AFF9E4C-5045-4940-AD02-73633FF9F6CE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1618CF64-255D-8341-A62F-2A49FCCB3F0E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67A2C037-1F56-B848-B7B1-B62BB54F837C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2C522AEC-D275-734B-9FDB-4716FA31B7C5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1680D93B-1C23-E24A-90F8-15B4D6AC7BF9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C04763A6-428C-8747-8FC3-9689D7588F66.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/10FDFAE5-4A9E-B043-9E11-F196AFAD5835.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FCEE40D7-1797-9044-A577-8F8C3E881ED9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/99A0C407-A11E-DE4D-9AD2-607F6B966B9E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/78D5F9D3-4605-DC42-9722-A9CFE5889F39.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9739BB13-740A-8A44-9BF4-73EDF3FCA257.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/158CADBE-112A-1A49-93E9-7EB0AF017FD5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F9021D29-FA30-9148-B324-A38D96E1E786.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/599619C5-8F05-B24D-80E8-747305A83FFB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C556D7EF-2A1C-5744-89C9-93DB42088060.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A99D6260-081C-434D-BFDA-D26B5DBFDE74.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/BEDD5E99-A767-A040-8545-A9C0B75BF497.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C1125D9A-A203-3F4C-B25E-4F7BC5938ACA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CE33887B-4202-CC43-A11C-7927BC6E8077.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FB77DE39-E6EC-6B44-8AD8-4391D3488CE8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D43AAFEB-5E63-BF49-91F3-4B18EA81B7C1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6A360170-85C9-1F43-BF4C-CFA69BFF16BD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D49EAEBF-A859-4045-A5B9-61C79659A432.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CB3339FF-4475-D442-95BB-ED119285F5DA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C80EAB8C-94D0-AF48-ADC9-76E80678EFD4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A0E7246A-2670-214F-97D6-F9B6CEFA20B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F0271B72-1DA6-2E41-AB1B-10B60BCF69BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5F80EF80-57EF-934D-8D4B-784C81878C2D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AE551287-220A-3841-88B5-4E394BA6CCD9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/38CBC530-CE45-834F-82B2-22206229DAF6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9A6786E7-B129-DB47-BFF5-66B1954FA791.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3732ADEC-A3F0-F841-AC56-79F06CDFFDFF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/935D677D-FA00-8744-B014-FB1B3444FAFE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/220C3CA9-A1D0-9F46-9EA6-1C7E32FC5546.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/54561B9F-9CD1-9D41-AA0F-F4B8AD55BACA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AB4BC887-3557-C043-825A-55A24AC4C5D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5EC1C523-289D-CD4D-8B7B-8FEA67E27746.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F0FC72EF-4E85-F941-B9BB-919B8E4C1D3B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0B12D4C8-9D5F-C74A-8C09-59029EF9E565.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9B5E78D1-0229-BB4F-89CD-25DC15D8C84B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/8F70B5A8-7A12-9641-B859-57A7824F8A9F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FF248450-2A44-CC48-AD0B-FC3EB44F7237.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F15D8B5D-2ADC-4242-B1E3-D9A6459BC862.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/29279C2C-8829-E14C-A41C-E2AFC351CC18.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/2D2DC95F-A5F5-474C-A082-581567D8CEA7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1E694AE3-AB3B-9747-989C-8D019F867D83.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/271DB2B7-DC6A-344C-BCF2-4366E512F745.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FEA4A20F-6C01-7D40-81A0-462BEFD7DC2B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B62C047D-1EB4-864F-AC3D-464BE8FE6987.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8EB11153-5505-9F4B-A8C9-8216D3C1B59A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/783C5D28-DE1F-624E-865B-DC17711095D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/06549CF8-EC3E-8349-8FE0-85FA90145C52.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5CA5A56F-0519-4944-96D1-12A52C7F2D63.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E5C7D142-E513-C64D-9616-3B29BBEB6BBF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F7E6807F-F415-9546-BEB7-DF9ABD5B62AF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2552A3B5-4456-5944-AC5D-830270645073.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CE4B130A-4823-7E4B-BA73-A4296907B999.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/00CA643C-2AAC-C34A-BFD8-7717CFFFFFE3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5593A7ED-77BE-EC44-98FB-3FB904FBE152.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6D143971-5DC5-5043-9388-DB36DB84CC9F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E5604B5C-24F2-FF4E-9BE5-B7BCA1E4B0AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AE8E6927-64F9-6A4D-BA5C-5E8998E8D0BE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3B689813-6F05-3745-B711-2CD0DFBB9412.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A730870F-24A5-2C4F-AB5E-738F2FD4D89F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/714A3BA9-49B9-9848-A488-D25E51A3D653.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4124A855-4F8A-5145-97D5-FAA1C5B6CEDD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/618F2D98-6147-7B45-985E-B99C5B85EC03.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/61BE7336-5033-0A4B-B424-659FEAE7BA62.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6E6CF666-82DB-CC4F-85F3-98F012651E7A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/82AE80B9-0248-7748-91AF-BC75B09C2C8E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E89ADBCB-5BB5-194D-891D-BBAE891953AC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D1913869-092C-BB46-893B-E739F64FFCE6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F799F661-DA2A-E040-928F-F0ACCC41DD81.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5389DE4A-3EF9-6347-8642-22F4111F6D17.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/06BAD26F-109E-2A4D-BE55-88662538F047.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F3DE986D-6012-C34A-8487-03A83A8138AE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1DCE0BDC-E837-0942-BDB9-10D1B7851C9B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7E8985FA-7FE2-0E4A-AC65-1195B4FA1EFC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A77DD838-379B-124B-8DAF-319EEEE5C6C3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/D71D157E-FB80-0444-A1E5-7B79C17692DE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5A371467-AD0A-D74F-A010-5D1FE1A932E0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/686846DB-0083-9D46-99A5-8C71B7D3588A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0B37630C-5EAA-6745-9A77-E70EF487F7AC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/45F726C5-A0B2-354E-9CA0-BC220F1C6E4C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B7136C6C-0F76-314C-8A6E-4BC781FA1800.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DFAEF108-D0C5-E64B-9CDC-C676254C3BCF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D4EF7AA0-9C2A-5047-ADC3-18EDF61C1867.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/72D1ED31-3510-CB49-AEC2-F76353A12727.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/80FFB703-528F-EB41-A618-90947272629F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E61DA7D2-DF7B-5444-BC2C-A948499A3F82.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/11B3E3A6-1629-594E-90D8-59D85ABA4557.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7F1E41BD-3CA2-084C-AEC3-45FB1A70C638.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8C98E0A1-3324-2847-9364-71F8AA6F784E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BD3EE3EE-B14C-2F46-8F89-4C7901F03E1F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4A15402E-DFFB-3B4E-9F7E-462C715B2BF7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/14B29244-9342-BB43-93F6-193C7A618CB2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D1F69298-7537-CF43-AF45-6FC5A51A2163.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/90359FC5-4455-D04E-864C-156ACE7069AF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2FFF484F-C48F-AC42-93C4-025E5A53506F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/84611A85-44AC-CC40-824F-DA28ACC97DED.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9959570B-32C0-B048-9C5D-460C55CE60D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/758F4478-AC2A-7048-870D-7C88F09F9C48.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1EFF0F57-2CAB-C04D-B946-395F751A654C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/02197CE0-DBA6-894B-BA24-BCE4E9353C9F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/6950AE2C-5F01-B34E-9984-61112F8B3C18.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1D146755-0DF0-5D4D-8C84-526392CF8AF0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A90CF5E5-4513-0642-9368-7B5A1AB2535A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5B2DE71E-593A-944C-9D45-87223922317E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EBAE2BC4-8436-664D-9358-60BCD4B576AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/03D9689A-2964-D74B-9C31-974989CCC36F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AFA9A417-A07C-654B-BD85-565FCDD86E06.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/794D0108-C9B0-F44E-B583-B37DBE24238D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9E563E41-3419-EF4E-9913-FB47D6774C14.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/08DC9872-1ED1-4542-A77C-BF9A8238781A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B62BB5F0-DFBF-554A-AB90-8C236A252F7D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8631FBE1-46B9-6A43-B788-F6C83649ABCE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/A4F6B8F6-3BD2-2F4E-910C-E873A7E14E1B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/81198338-9CF2-0141-8028-415B97B6286B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B5E6DFFE-CC2F-474D-84F6-712646315892.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/740B5E8E-CC8D-0448-8D81-A58215DF3189.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/BD0DF0F9-7DE6-834E-BA57-C4C05C185D14.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/85EB919E-9C94-A94F-87DD-18804A06CADF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/63A899DC-D6F0-FA48-B62A-43006DC1E028.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/94E6990B-52FF-C34B-84E2-57627F7B43C4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/58408946-087E-5049-8518-1DD09FC96ECE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/84A7E314-134C-8447-9758-707A9014D38A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B1954852-4CE1-1D48-90B1-B4C1D319C945.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C1F5BE43-02D2-4A43-9339-566451A0935A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3D13037D-26DB-1845-9844-5D8B988A6FFA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/67E8BFEF-E37C-8445-B04C-DC946195C18A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/DE111D07-0372-5041-B950-39F6B7C12BAB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B82F96DF-6D21-0244-881C-EC1EB9F3C550.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B496C0AD-DAD7-C543-9DC3-122A6A25ED94.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FACE9551-896D-3F45-B199-65BB37DDB495.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/69D4180F-D1A2-664C-A215-0C5A2647347C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2941838A-9C01-B147-9E2E-3EE33CEB53DB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B7164E8B-16E5-C24F-AF40-1F92F9D751FC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/58F5668F-DED2-7B45-99A9-FDD395ADF58B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7733EF80-4CB5-5D4B-832D-2C8D4C87334A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/52E692FF-80C1-014C-9E7D-BA18F4BBF282.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EB0623C3-E86C-0F44-BB27-2448D80FB0AF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/219AC8A6-FDE0-764A-AF67-FCAE487ADA64.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/341ABBAA-6C32-814A-8A51-47714161E1FA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/6E2304BF-BB49-CE43-AB25-2635AEBDA9E1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/E03E518E-6DD4-F642-B086-F1E9E06A0090.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0883B540-3F32-344F-B2C3-33A224BB4722.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A4FAB4BD-27FF-FF4E-92BE-00D7A461A7DB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E511285E-0712-4141-A078-419DDDA185EA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E071ED82-B8AA-CA47-AAF4-25D0C9A855D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C19D58BA-96D1-1346-B965-BA0E8B09CC8E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/756FD869-E6EB-4945-8E07-3D5B217E3EF7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BE04E34C-7B60-9645-8573-E484F46CA049.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/59C191EE-7EF1-A241-8565-967A5CB41DB1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/2F5A433B-D488-7F4F-A4F3-8D6348C3D749.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/1F942184-A2E0-7048-A3FD-67F4EFB4147C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9CAA5E53-E75F-2E4A-B23F-26E0D5FC1038.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/8FC05813-F7C3-884F-B883-23A2D7FCC38D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/61AEAF92-DEAA-834F-84DF-0040C00BBDF0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/FBFB91C3-CFB6-D44D-BA72-432ACB8C21DB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C0B91AE4-76F5-3A4D-BFCF-D42CD25578B6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/28D21726-390A-AD49-97E2-CD1697E4C754.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/1B47C6D9-F2AD-8344-B0E4-02AB50D62002.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/E0A9BA9F-E1CC-FE49-B6AE-20ACD6D2BBCD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/C8746819-DC52-DE4C-AFC9-C8CD094D50F7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4B9AB787-7BD1-C44D-AB76-2EEA644EE003.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/CE63E44E-A747-784C-95F1-0C9FA7C1DDE2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/5E3B0A83-ECA2-4A41-B480-686317B92373.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5E5430F8-E835-F541-9F71-2939BCEF4CFA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A555B9D1-5A88-124C-9C12-BDEB2B5B3B36.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/82FC37D8-9D8F-DD49-98C1-8E1F29C2F81C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/638482E8-780A-B645-A50A-8A0916147D3D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/6643CE43-7745-D14F-933E-4E11A4A09530.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/02FCF82E-33E9-B94D-8A0A-6A26B6B1FA81.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/738FC664-D60F-5B4B-A7C5-228C1DFB23FB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B46BF793-B32A-0F4E-9E5A-0693E1873A7C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/94D7B39C-6F2E-2240-820D-56E93F1A1358.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F97D1C81-41D1-9B48-97C1-749A6F330D2C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/92DA5546-18DA-2247-8132-A99F2A0E7CAF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/92D79B6A-1D3E-0B48-82FC-D9EF1FCD77E1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D0CDFF3D-1F54-DA42-9403-C22CB3B65744.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/88B75987-F5A0-D64C-BB30-5355FD18543E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6A6920F8-ADCD-FB4C-8B41-7BB9C0586219.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/036B0B1C-62CD-8F40-BDF1-044BA3D9795A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/51657E90-210F-6D42-B2B1-A15A45AD3572.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5586A160-4F18-9740-8711-4578674B813F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AA444609-C9D9-AC43-B716-583642DAC156.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/03DBB61A-0B33-3B46-B3BD-54BCF050BBDF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/E82B71E9-3579-C542-8949-EE1F164CA693.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/17CA3B43-4A80-CF4D-A47A-94B0ACEF8971.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3E5FEF03-7D63-D04E-8A76-3A73BECC730C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/088D3C7A-F9E9-5B46-9BAC-6C6D62B8FAF1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F4DB1ABF-0804-6D41-A3B9-CE8B3744AA46.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/F47F7F8A-60AD-4C47-A802-45EBDF3E2983.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EC87DE8C-8A5B-0543-AC1F-955B9C59165C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4B000BA6-25D3-1143-B960-054556A26DC8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/1A92C626-30D0-564B-9DB4-76C78FD5A65F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6C85C622-D1B8-7440-BF66-B1DA79E6F6F7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/698E0681-3372-3446-B8E3-CAD2EF268813.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/21C83D10-6060-DD4A-8290-04BD35B9B486.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/0113A8A5-3A10-1949-9A36-E7FDDA68AAFB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/18B04032-3E54-CF4F-8079-33701CDCF40B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/DC2EAA3E-578D-F249-B236-B23BA7B0DEBD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/D209BC1C-55E5-2E45-B7F7-85184A19FFB7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/3F2E38DD-49E0-3B4A-AC4E-B3A64188986A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CEDE222F-98E6-A748-9EA8-8AB01F8BEBDC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0068ACB4-22DD-5E48-A24A-27BC514CECEF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/3AE56059-C812-524C-BD07-3F62A695F068.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/7FBBF44C-CFD8-1D4E-ACCF-E06838C17706.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D39BE4AF-FA14-7F4A-8872-8413B5606F75.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/00725E04-3734-194C-A4FC-BD759DADF79E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DBAA5939-B52A-1141-A068-BB02628AF04B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/977B919D-0C6D-7E40-B393-AA7CA20962B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2E623A40-7BFF-C145-AF47-4362B1BE59A4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6786260B-AE7B-6B43-8BB4-924F2F30B461.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/68F58866-36F1-B64A-ABFF-BC2CAFFA49AF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9906B104-DB3E-1C4E-8771-04ECC70AD193.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/560F11FE-DC98-1F4F-A6EA-08E84FE4ACA2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D86B011D-1C53-094A-8816-7CFAA5CDB6E3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/29220649-22A2-E145-AAE0-DE370C3E678E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FDED43D1-58A9-2241-A787-23CE75C5A920.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EB76E7A0-C201-3246-8EE3-6AD824B38D10.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/3D2F4A59-0407-0843-8D84-F0732E0DDD01.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D3AD2AF5-9D80-9B45-A795-E82F44F6B103.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/C39B1FF2-C60D-7C45-886E-57F286589755.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/206E0AA7-1CFC-F64A-AF15-5CFC8E1D29BC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4CC22F47-30F5-3E46-B644-90A1A6A9CF75.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/F17E9BA2-9C4A-2244-BE9F-4758EE2DDA24.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E1AAB463-0747-EF48-B157-7FA88F20F636.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/91F15761-AD63-D548-806F-C9DB0CD31413.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5826DA5D-6EE1-D94E-8E1E-0C017C78DEAB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1D2EA82B-A34E-2A46-B7EB-175F895E1171.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/60C65398-FB8E-EB4B-BA4B-6DB7664ED9D2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C25B068E-77A4-BB4B-BEB1-096D96857DF9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A5060EB0-1BB6-AC47-B074-4B37A39A9F22.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/4E917CED-250F-7140-9B08-17C168DE66B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DC5FE121-B855-3646-BE3C-4255AD427A6C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B4BC962A-B415-9547-AC73-EEC0BE26E1D4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/CD7966C3-9BF7-9E44-AE50-DA443369B29B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/040DC1AD-619E-D64C-B6FF-A893AEB2F313.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/92EB03F9-F1F3-AE47-BFD7-552E5113775F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CF6F08C9-107E-474E-8AB6-45A98F81944B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5836A4B3-E473-FB49-B440-E17D84F6A386.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9E426B0A-FCBB-1745-BE09-AEBC5FBF418D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1C7091A7-9C6F-C547-AEB9-D285E05DE808.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3510EDF6-A6CF-4A41-8614-BE85E0E4E343.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/5BCFF365-8882-494E-A3D5-B89FABE32462.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/11AA41C6-A257-C947-BA51-BEF9996E3095.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1AD84D92-E16B-8447-A811-8A088B0471B9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9705EEA7-4F47-6345-B334-E5176B105DB5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FDE39C12-1434-9A44-9607-D818C5B2A4F8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CFB2D8EF-F55E-1049-B380-B36FDA37AC03.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4BCE21FE-58F1-4A4C-8BD6-ADCEC173FBA3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F7D60622-82D7-064B-AEFD-9EEB70F26FB4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/EBDEF94A-FFAD-5C42-BF5B-EE9A847B6A84.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C89B5A3B-2D79-D04B-A55B-0C51B3ADBBF6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FFAC907F-2EF6-1F49-B92D-65143A8A4001.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/AA6F9457-DA53-174F-96A0-E72B78E246DD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CB26CD63-4408-0542-994F-67486530F941.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F3CC94C4-DBEF-BF41-A2C2-3535F4CB7AAD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C850DE1A-8E65-2046-A81A-627E34D9835B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/F5568889-8882-2D4E-8094-6C3CCC528712.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/AE185CBC-7254-184E-84D8-0F9333670181.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/4B02665D-18DF-E34D-9092-CB5A096E6EDA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4D07377C-2254-4C46-AFF2-844AFCEAA775.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1E250264-8E8B-AA4D-9E74-593ADBBC5607.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/30902AE4-9DF6-334A-A2F3-7F4F9AE1F4C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E43720AC-D9EE-E449-9DA5-360C028405EE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DA015AC6-C5D3-D940-8172-12F9961EE975.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/17EF62CA-0C95-014B-9DAC-4634EBF85C8D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/847F13A1-9405-FE4C-A126-AAA2514E4A51.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6E23BA13-8AC9-A64B-95A0-F67CD099BFF7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/C1FCB1B2-A50A-2149-B881-60E5D4FC88A9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/38A59AFA-B5D5-8E4F-9C49-DA62C871E86D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9FAE651A-FBAA-E946-848D-9CFBC07BA5B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D2737A90-59BA-B640-9D39-143B83A25DDE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0ED46D7A-8F63-8A4C-A8D7-B67738FF5B0A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/57072B8F-EEB7-B54A-B571-3AC4A9DA9943.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4F4F9E65-0E97-1643-885A-D480F1865765.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/78AF9C94-3173-434E-ACA6-DF28A234B46B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2A427C54-6501-5149-BC60-1E69E62EEA56.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/82E0A382-0722-F94F-98D2-270E54B33D15.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/495899B2-2204-6541-AD49-5722FFBEDEA3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A3D5ED23-EDED-F846-9B97-9E8F8DD23948.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6CD853E6-5CAA-F147-B561-73B5825901EB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/7C520731-F9B7-1241-9F5F-923EDC23A012.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AB3FE712-213D-AB47-8097-C14ED4A44264.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/11091228-6C05-3C46-B423-20FFBCDEDC13.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/58A74301-77F3-6247-87EC-F05FD46AB14E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6AD06E3C-289D-EB42-8E60-7F5CDF93A3AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5A3EA4AA-351C-6D4E-A05B-519DE5ABBA16.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4D70B0AE-DBF5-9A41-86E4-A0FBBA15CAF7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F8681982-E622-4146-9367-0CDC24B5A8AA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6D026537-3441-9B4D-977A-6CDC539D8EA8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2E69DE27-1629-8344-BBF3-253EBFE1A5D0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A397F084-78BD-8E4F-B7F6-87C615469D57.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/83EC796E-BF17-2E49-B7F3-39C2290BE100.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3E06E6E7-9202-2646-ADCC-0A2DAC9C7C9F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/218B6B81-CC5D-B643-BFB2-0EA214746D92.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5E58C86D-43F9-A64A-8EA7-1E5A91F20651.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/852E9981-CB1A-884A-AA15-65817F08A386.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FED094A1-67E0-B640-9041-A50D270A1EA3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/0A1F7116-6599-D34A-B165-4C2346298AF2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9BCD4287-76FC-BA47-A1A7-A5A6CB3F9B5F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B8B45C53-F93F-E043-BE36-013283AD94C8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B94D1290-B308-3C4D-A759-951FFA185E86.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B6C602DF-9626-2743-A8FB-7B894F0E257E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A64B3136-70CE-7947-A059-6A3B08D9B6FE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B926A124-BBEF-EC46-B514-9AFF955FC505.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FB931048-DA46-4647-BD2C-821E1D566F92.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2DCAAFD5-C478-8143-BCE4-0EBC42A7ED15.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D415F6BA-9041-954D-A7F8-C391D5C61B98.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/94807645-7B98-F847-B70E-CEA3D2A542FD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/5C528A18-3EF9-314A-996D-6087323A187D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9FAE77DB-75D1-104A-AC29-24139DD182EC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/461A4BB0-310E-1B45-8102-401B808E34DA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2EEFAC79-5149-A147-84C9-B06CA455A4F2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F8134F62-2B25-0942-94BB-2C73D91774D8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/931A6F69-B47A-A44F-AF02-0FC53BBE5EA2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F6AE9A6B-70CF-AA4F-93C4-A10B8F76CBDD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/929FB996-CED5-9E49-B61A-87946DD09D9B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/34546A03-C7C3-A843-8643-DE620710252D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B453F787-B76B-894C-8F68-AFD2618E91CD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C5EC4C8E-1C76-4E4B-B897-2528CE11A973.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C5D350F1-1461-3142-9770-E00B36604C26.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C4BAB64C-E793-CF46-8559-1DC34000DA9C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DCDAAE34-90D3-4643-97B7-1601DCEAF54F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/95FF4427-A18D-9E4A-8A78-2965457EF3EA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/8219878F-9EAB-2B46-8123-94A03E0FD5F2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/BE1D3832-C6F3-274A-870B-9441D0C4BC56.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6F5155A5-44C4-9043-8408-D5BF93229539.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/056D4F4A-0681-1A4F-B209-A1B1289A3779.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/05847310-6845-7244-9FE2-53C167E8F71F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/11110FDD-9EB5-524E-82D4-6482A50993B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/6AC7DEF0-7DF8-2E43-B259-19D5A78778EC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/41B480AB-381B-784D-8DA2-24F90FE8CC1A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/7BAC1160-1913-FD42-8248-216A4CEA3B2B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/3ECCFB77-9547-0649-9420-B5812E82FA4D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/7EA29D31-6264-A34B-8260-C91CBD14F032.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/6C0EAEDD-2BE8-CA4B-9F20-2DE601C3A97C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/1E91FC36-D120-8644-BB13-9133EF000402.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/6409E624-05A2-DA41-879F-893682828F4B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/202C0D00-036E-0441-BA5F-669A64CC3AD9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/61ED54C0-08BD-E84F-974F-C3C7400BB8A8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F12B887D-F58F-DD48-86C8-5D420BA6E6D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/2DC3A84E-0AAB-944E-8CA9-075A4C3E6227.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B9C4FBD7-7D07-A545-8F95-BCC8F053FE6F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/50FA6BF7-C42F-4B42-98DE-31A993E274D3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A159C855-446C-4B42-8526-D46B6875AF62.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/C1F83518-7603-2C49-AD4C-86D7753AC35F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3C067FBF-875B-FC40-B043-0E034A54AAF9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/C77F7464-7650-5948-94F3-F9E32FE67589.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/0AB124E5-0814-2946-95E2-47D891A9CD65.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/A68897F6-0BAA-F34C-A914-13276B69AAAA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/532EBA6A-77C4-F140-AEFF-A8809C05A286.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B29F8970-6194-6A42-805B-553984577E61.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/F942D8A8-874F-5842-84F4-F2FDBBB56216.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D1AADF49-BC54-104D-996A-9DFD7C59E6B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/AD3DCAEB-BCEA-CC45-895E-2404A23D8D2C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/7B6F4F96-C839-8D4A-B81C-35A835CF13CE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/DCBF464E-2584-4B4C-A362-69F2EFF894DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B9A09808-63D9-204B-BBC4-C1949D91ADB3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/85DF66CA-A6FB-184E-AE96-24280AF7F83A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/62AAC817-AB68-0946-B5A8-FBE37D71F2B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/64102155-1DAA-FC45-A048-D90E32CF48C1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/A8CFB008-A281-8C4C-AB7A-17E487777D08.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/41F29282-4C14-F347-B3A7-CDB8B1B33C9A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/872CDD0E-B15C-DF4C-A98C-6568CC65BE51.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/97A20839-E0CC-DF49-B4E9-0C34B774CB28.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4CA8C145-5017-2542-AD30-26F5AC7E301E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/26D6CEBD-5F4E-6344-84D7-985A0AA2D461.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/61579EA0-FE26-A446-84A4-9FFDFDE5DC24.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/E6801BF0-693A-1B48-9093-EB80562C7D05.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/69363C8D-13C6-8E43-8A57-43E1812D7EF8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FE072233-E927-1447-B1D6-FC3606B73B08.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/DE8D2D0C-3013-5346-B56D-110C5B5C2EC2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/863112F6-E5C3-5942-A593-01714B3FBE66.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/727B884C-C1B3-574E-8D75-023460E91C02.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FC5590EF-AA25-8D41-A1A0-42A65F5C245F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/15A1BD74-EF88-F541-B8CF-74D001F86911.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/1A20C4E3-8549-D24E-BD9E-B559CB3EFF85.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AD5F387A-4FB1-5C42-8192-AE3AE546FF74.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DFF35944-C2CD-EF4E-AFF2-99CBA673620E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/D173AE98-A69E-824E-83E7-30A4A57CE49B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/42D3D6D5-0EE8-A347-9F8E-8524804618B7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6ECEEF6A-64CB-584C-888E-79D020A30384.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CFA66B55-B055-A54C-B7AA-3892E84C3E62.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/880C391E-CA39-2943-83D0-55FA41FECB2F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/8EA76B7E-6DA6-794E-AF74-BEE2F4E844A8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/9860BA78-0100-614C-B187-EBCC22CC080B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AF199E06-DEF7-F344-A2AF-E5942308C604.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F62F884D-9727-BD45-9083-EBD895DB2F99.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/731059DD-4F3C-4546-997E-EAC6745804FE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/916F4A78-A70C-DC45-914D-1BB71CFA4A47.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/5A3234A9-7675-5743-9C6C-A5F5F8539741.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9FB84C4C-D590-4444-9A58-C87328B5D83A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A75CD84B-D08C-F94A-A68B-9647DB9E0B53.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/AAE7F72C-B4C0-1643-9221-CD30D70B3FD2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/141CF603-61F9-474A-BB27-82CDDDF38179.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/96822A4B-A45E-7C4D-8D6A-951D974C7E20.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5DFBF134-CEFF-0F4E-8179-AEA67ED6B32B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CA9F4A37-5D69-C648-A8C1-09D04E1F8D06.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B8446AF7-B608-A246-A6CC-A3B4180724DA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/BE498FC6-61A1-724B-B2A8-2248C7F056E5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/A1021226-0E4C-024D-B6BD-B0FCC3686C65.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/FBBA8697-F180-7140-B1A3-447E44F4640F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/4471AA13-8AF8-374C-B0D0-C337F0D5AED2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/84B228EC-7C40-F743-B08F-F10B7D06DCE4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/86D64D7B-A727-5E43-962A-6E7AA1F8D2A9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/771A1F2E-AF59-BF49-914F-2566D62B0A0C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/873DDD91-63EC-7448-B36F-CAEC15938CBB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/38DED7C5-E65D-AD46-A573-FFB7C93C6F9D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9E1818E1-5532-C04C-8040-14603316D9B6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/00F34E27-7CBD-5C4B-9E17-9E7A1F2BA04F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/9A5A5C6E-8CAE-9D4F-A7D9-DD4E561909AC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D4DADBBA-EE79-E747-93FA-9A3AD00D844E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/24B7745D-F22C-684B-B5BA-44635A0B42E2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B5E1C109-EFDE-7042-B093-B043866634A4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/3D469706-52DD-5C48-8E8E-028A868CC4B3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/81557DB6-991E-5441-A2CA-66B1D18C7F38.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/F1450BDC-6C3C-3B45-9B34-7810688AB281.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/B1021E56-8C1B-874B-AC38-25FA9BA3D512.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/DF6B947E-A9E4-4A45-9FB0-F116D44A1FEC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/2FE95690-30DA-5B4C-99B0-B17963305766.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/EBF11993-F9E7-BD47-B2E2-02779EFF8436.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/4BCD7686-95A0-9549-82DE-AEDF6B1E4933.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/65CBA6C3-5FD1-384A-B16C-30A9AED996C5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EB27FB6C-63DA-6C40-B0DB-8714EF714D1C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6946E399-9291-924E-B8FC-E575A9EDDA3C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/7FC9E41D-EEFA-914C-BFED-CD3969E867D8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/86F87633-7B6D-5C49-85C9-E8B37CAEFDEE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/6BA82F88-A993-424F-8ED5-0A887A4A1383.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/58EEC413-3BD4-544D-8B3E-1BD21C0D0830.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5EAE7685-A516-654E-9764-09E96250B4A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/66314DFB-A1CD-BF46-97E4-C84439D4C1D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/97BBE02E-75D3-3C44-9061-900C06B5DC93.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4CE7BA53-223F-C94A-92C8-8D877F96276A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/FB67C125-1325-F246-AF71-75301FB31F73.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/02EF39E6-DDF7-6843-9264-37C92D158AFB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/82CF5C79-3810-A246-84F1-980ACCC131F1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/5B7DEF49-4925-944C-B93E-E2A5BBBB7AF4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/80910760-E6FF-D44F-9249-384F691AF85E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/CD92DB45-2216-DE42-A3A3-D206DB747DD0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1A0BD6DB-56D4-DF4B-B89C-0F8237B02589.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/90919CEA-9C82-A04B-809A-BC5E8F4A96B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/D63AB2A8-6C34-E441-838E-E9D8BCEEE930.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/3E4988F1-6202-1746-B038-F4E4EFE5CFC4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/B5E65ECA-00F7-4D43-A2D2-B85DF9538D06.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/44AAD7D2-65CB-7143-BF43-616DF76E88BA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/067A0DC7-03D4-454B-8488-8BAE6B9B48B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/DEB9AC71-E027-794B-98CB-F104D394A947.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/56414192-9C65-9545-8F05-1392A5375925.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/4B9C3619-0B6B-0341-B089-A5A12091AC27.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0962598B-857D-2C4B-857E-75F21A1EDD72.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/4BB5BB81-4186-7C4D-BA36-9C0F1831957E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240000/E06A68AE-1DC9-A847-B353-69E5BC55DA15.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/7DDBF7B4-AC29-3042-8EF4-7F4D560E8B06.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/681CCD29-C984-2A4E-AED2-9575D3D13A4A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/48B509F7-D73D-144C-B170-60F04D780690.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/C119B309-878B-CE46-8373-2E7DD495E7CC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0684C14D-482B-AC4C-85DA-D55CAB8ED69E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/9561903C-A2BD-9A42-B83A-B810C9D972C0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2F49367D-B254-5A4A-93BE-928F1DBACF3F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CD36F0D4-A4F9-2B4C-B1F6-D673029A8B34.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/06925587-EEC5-3744-A83E-B7D34A59E71A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/CBB89292-B61F-7840-A8C6-5EEFCD92E4C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/863B7B2F-EC72-9545-B3F6-BBA1ED80ADF0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/95A1CDFE-9002-0B41-A4A3-4BBFFBF17504.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/F6E14136-C118-894E-A363-3FE185ECB5A8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77B89A0A-53C4-514E-953A-FA49BF2D9242.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/5EE8C40A-BF76-B449-8386-A5310700D838.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/FB5DE455-6E00-D24E-9AA0-D999D2E595B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/1DC20936-FDBD-A848-A266-3AAFE73EE92C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/09B45E2D-2C25-EE48-BB9F-19421B271EAD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230000/FBD30C1A-DE23-2545-84D0-C6FC3CCD4C9A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/B0A15E14-914A-BC4B-B4E7-744E5D9E9238.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/D10D366B-DE2B-324C-98E6-AEB102AADAB6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B82AB1FE-F426-BE47-A718-5F19B1996E04.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/687D2B70-2C20-5D41-92F1-C2D5BB53437C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B3D72ACC-5023-BF42-A679-79DF2C9F8EF0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BF8305D1-71DB-1047-B4C4-6FB00FB8F8FC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/3713324D-CF12-D64E-A3F6-D4B2D8BB6FE4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/42AACF28-2161-0A41-BEBC-8D4400E91F9A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/458AF352-864A-2B4E-96CE-51953B8431E1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/385BE71B-75CF-7B4B-87A7-C4CEC7D5D57F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/308DBBCA-2F1E-B444-9669-EB4AD8C78A70.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DF3E263B-6DDD-7B4C-9757-597D37F17BCF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BA62AFA6-83FF-DA4A-A5F5-B7BDE1E5AE6A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4DB21415-5C94-A346-BBC0-431217C02889.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FB305152-477D-9F41-9563-0A4C84F5CCD4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0D7CA920-990A-2544-A7B9-4D155A7AAD8A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E6A9154B-B359-AC45-BC0E-7CEE578E7C32.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/3167B6AE-9D17-484B-97FA-B8357B821559.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2FDA9B15-2F37-D840-AA2C-01121C1E9011.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2222EAB4-0A26-424E-815A-5171C7CA602B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/00A3D61B-CFD5-6242-AD81-29233FEB8739.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/33501D76-BA06-F84F-8E0F-59457C7C4B14.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/26D15FFC-420D-A346-82B7-A45441EA27C0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/6CEDF581-B913-9E4B-ADEA-038C48617DC7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5EB2059B-2C70-5746-B098-1860D08156E4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/853D1985-4BEA-714E-A610-124888755731.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/48373C5C-B662-EF46-9364-DBBC9C311CA9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E6226D97-143B-E446-8DAC-DCF5523F3505.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A36047FD-0BDA-D046-92D8-4901BF47DE9A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2F8A5155-4A90-5748-A54C-A4A9D278DBA6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/912DFC47-FAA2-E348-819C-3F77ECE0775D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/7E1DB701-05A2-A04C-89CB-0C74139E876B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FB0693F3-9753-5D4D-B020-CFB2AD0C370C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/75A9E6C3-ED0F-7B40-B5C2-597FC00785B1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/25DDB915-04CD-7E4D-BBA4-D47BCD3748A4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2B3A44CE-94E0-4547-9406-186563481CCA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3388D764-E73C-8941-8EB6-E3DCE93B70EB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/AAE7BF15-7221-A24A-9D8A-49A1C363599B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/FBAA320A-01A5-214D-BBC2-52A62E8BDFCB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/97764962-2B02-1D44-AB5C-4963373797C0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/77D599F2-5354-104F-89A1-6ED4AEBC5682.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C255A5E0-9D14-4740-A4FF-7D03BFACE991.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8B28AA25-74BA-3840-844B-9474BB2D5DB6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/1E16BB59-D129-1049-8A87-A1938EFEF6CE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/00844E11-9269-A048-8DA4-501EBA66C055.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/CA81EFFE-0AC9-FC4A-9090-A4AE56D55A86.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0327366A-307D-9244-8D6B-F4002E1E0271.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FA931567-243F-F544-8745-F89126E3BE9E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F13BFF47-A734-CA43-97B3-971DC48342CA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/72A89E96-BC7C-F044-92C9-DC1882EC628E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/171AE920-08AD-5A48-BFFF-9F08760E8D50.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/402D34D0-2FD2-2141-A872-AF05922F42C5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/605380A7-D76A-A14E-A732-E4E30A06C520.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/ACEAAA1E-D1AA-4F43-9D95-BB0210C5BF1A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E72595E1-9B3E-6F42-BDEA-3890D3E3AF9D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/19ACF611-D02B-1245-9D58-92E7F341B836.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CEC166F7-23A5-3342-A3C8-1CBB18CC908D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E34DCC66-44D7-2748-8AB9-A05C5BA23C6B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A42BC3AA-BDA7-E94D-9DFA-651584B17DC2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DA26EE36-077E-5041-8F85-9F41D2DB361A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/46A66F2A-B5E7-E74A-AF0C-2D27E522146F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3112156D-537A-AF42-B574-A07B83A0D1C3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/2D326C51-30C2-624E-BAA9-97138B9C9BC2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F95B8301-6765-5D4D-9D0D-2B7BA256837C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0E29F6DA-4AF0-6D43-BE10-2EDDD78EF726.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A892E058-CD4A-354D-AED2-EB3B85EAADCA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C73D9BFB-D0B4-8D41-A303-F2ACA796809C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B8F4012C-A169-CE41-9480-225EAC1F67B2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/05CCD4AB-54CE-704B-965B-17893F377755.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C08F9C8F-917E-1247-ADC6-A3FD2F771F54.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3BCE4383-3220-2C4C-BBB6-31D2019EE5B4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E39CA095-42D3-7F43-B521-13DFE177F4F5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2D407997-3CCD-6247-AEB0-F66BC2A7FB83.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/5B14C2A4-AFD9-F847-B193-D17DCF878595.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/D6496737-9F5A-A34B-9D5F-5DCF1A528113.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D321C2A4-8DA3-3B49-864A-EF4B22BFAD51.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/BC56C017-BBEC-BE4C-8969-C17022F16CE7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DCFC81AE-8B0B-7B42-9E96-B2E172180C31.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4CCADE8A-A24F-A042-BF59-44CD3C51BE6F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/80C949EA-6649-F541-BD12-10BF65F94056.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/61443A45-07DF-BD4B-B23B-140EA5BB1435.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/283FB61D-864E-FE45-8108-082CD7BC895C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C8305C3A-F37F-F645-919E-0C434CFD1AAE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1D966269-FD1D-C04B-B5B1-A59F91E469A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9A6516BD-4FC8-A94E-B881-F640B8A254ED.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0A806CFE-3906-7447-8D81-406F949DF2D9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F6AD8170-1AC5-5A49-859F-E0830D22C024.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/46A8871F-113C-D946-8710-1CE12CD9FC82.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/81145CA6-1F55-CF44-B6A9-D596D5D26EC9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/752D90C0-92CA-8B45-9309-2713EBAB00B4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C138824A-0FF8-3143-A45D-BA4A5422842F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2D6B5C7D-8EE1-1E49-BBEA-6E966C8462F5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/4D1CBC25-0897-C447-B7D8-17482FC70F60.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/8092B09B-5D7E-7341-9A04-703BE3FBE14D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/99159A0F-8732-3D41-A469-163337B1E2D1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A8E633E3-1513-FA41-A994-C98445B10134.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/6EE898D4-BA0E-6B4C-9EB4-42C7405DF408.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/352027EF-9CF5-164B-B484-F0511B97B5AF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E2671A4B-30BF-214F-AB09-F1A6EF2D3FA5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/783D35C2-BCBF-BE48-8165-83BE1753EC54.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/8261A1E1-3131-454D-B623-0BFE58750C75.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/D1B25BF3-1A23-0842-B6AE-133B319EB379.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B78295EE-7F69-1A49-9FF9-0C389E09D1B6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3148D315-B668-6348-A792-01CD4087CAA1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/507FD7EC-7F64-CE46-9AF2-1613C07A408C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/3B0199E2-5DD9-9C4E-964E-FBCAEABF8298.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CEF177A7-9FE0-D447-8354-A5E2678D186F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E13CC6CA-33D5-B24C-9B2F-2E9278429C6D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/5A13EFC5-7A12-A241-BEF3-1CAF9D507AC6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1EE0AB73-4586-904F-AE1A-57B30EE8F73B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/164992C0-4341-594E-B995-8524170A6EFA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C3101430-A981-344E-81FA-569723891CC9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B0885E45-AEA4-354E-A262-4E67B0164EF4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/50A91701-0F2D-0F4B-B8EB-371FEE14E1C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E1D9B041-9AB1-1449-AE5E-384C8F56B8D6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B66B281A-C24B-A145-B039-267752A463CF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/84C5C27B-A1BA-1247-8D89-49DE633E8944.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C9AB2666-70B7-5640-8BD2-991922712155.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/002A913E-5E1B-A246-A20F-D04F6D12E7ED.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/50B30C9A-6E2F-8540-AB2E-AEB62C767213.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/EA46B1BD-B19F-FB4A-974B-97CCDE57655F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/65FD540C-A002-3746-8E65-13BAE7CAA414.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/817F6807-43F5-3D4A-9BC8-0A93BF689C82.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/74C52C54-0230-AE42-8584-F807FB28E037.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F6E351EE-B683-3743-9C98-B2C1F0ABF697.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/630C263B-1108-9E4C-B7FD-583181CA8AAC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/9DA6DB65-96F9-174D-B756-E069DAEBCC93.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5F278847-6142-A64D-93DF-9437B05897B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/0931F969-4857-1440-9954-794ABA8BC05B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0CC027E5-BB4C-9D48-9E1C-D156E98412AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/01000B33-AD14-4846-B6A9-B489E869D456.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EEB2A9A6-63AF-8949-82B3-26FDE4167B38.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/0324E538-3E56-1745-A4E7-5E778E98D74B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CF0ED8E7-CB4A-E742-AA33-87BA1E9D6DF4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E82D35E8-2DF3-8049-A63C-C85AF8E59A91.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8B5F5CB9-7226-EF4E-BBA0-F9197ADB6F83.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F770B281-227C-5E45-8339-97C085747F43.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B3CFCD46-75C7-2349-A181-D95791F46540.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B894B046-1C38-7349-8D53-96E23E2A1976.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EA1CF9B4-02E1-1042-9CAA-B1A19BFCE788.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/F33E2F4C-6D4C-F34D-8512-7AD3A4F1514A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/366C658D-DF71-7042-9232-33B223EBF1D6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C6633002-6C83-F948-A466-C3DC6E0678B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2BCD8F86-2C51-B048-971B-C391A3602096.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F19EE90B-B25B-BB45-80D9-8F6A58CB4893.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/147DEB74-D103-6E49-94A6-B7D58821BBC0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/546CFDC4-20A1-2047-B138-3D457391C501.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/724BDB6F-1042-A04A-B796-93B0934550C0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/22A1DCD7-4376-2F43-ABF7-5C3B547971BC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3EA4789A-9A6C-0D4E-B84D-3317E70C69D2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EE11B966-8D5E-3D46-89BC-BED2717D7FA2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0CF90B41-9039-5643-AFA6-5BDB50374BE8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E064E35C-135A-1248-99AA-B586D3B4B55A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1E58A88E-0D62-B74B-8DD8-A105D4C7238A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A3EEAEDF-DF6E-DD4E-9741-43E1037F874A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/47CE6E13-EBC0-224F-8E6D-D44464DD737B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/14128D1A-9500-904D-B9BD-1E18F962E187.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/24265399-0AAE-2549-9712-EBD3C08EFF65.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FF2023F5-3F31-3141-B746-26334DE6369F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CC2A9623-AFDB-7F45-A0FD-8F76367BC4A5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CC062D97-876C-FB46-B16E-6BB2C9A5BAD3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/733AA59A-89B7-0941-BD6C-9FFBB0F82481.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/265EF61E-DB0F-104E-BCC9-5014B7E9E2F1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/75773DB0-F7A1-0647-8EFE-44D3369C3C5D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/14FA441B-67EC-A34B-8A4D-C48D177B3B5E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/EEF105CF-0D88-804F-93AC-0728C04B7704.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C5E0B84A-9C68-7742-8D51-757C9FCDDB84.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E5BA093C-7978-3E44-8637-D09D9968CBCD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/9CD42BB0-1C26-FD4E-8A03-2A217D231F7A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/EC634768-3DDA-304D-B8E3-F337969E6662.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/83116E62-A9D2-7741-9523-C7EFE8ADD20C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/68098345-55EA-3746-85CF-D52DCA11322F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/21EE0B5A-E100-6548-8EDF-39337021A19A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/7BD7EBA0-E1A2-1A4C-9073-CC2600D1821E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/12CDF336-16F9-A444-AA2B-80C081176AD9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/69F08CB9-0F3E-EE45-8E75-F9356D0B55E9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/01DF1BC1-A738-C242-A45A-CF03A3476E23.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9118878E-1218-254C-BA3A-05003DF95A9A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/07904DCC-B6C6-7C45-B4FE-7E716FE984FC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B6751566-55B4-5A4B-BCF8-3B77F81435F6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/DE693B4B-E394-7A47-BEE5-D7204D37E95C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/BA4E20F8-53DA-3340-999B-28DB3F085BC1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/DDEA822E-4BE7-5C44-A8A5-B3D19BAE21EF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F5FA6779-3605-E048-9B0F-D065D07C36D4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/964FC4BC-4E38-834B-A932-2F1334B3B6BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C5F4042D-6412-C149-BEE0-B4B05A0BE497.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/9BE3B38F-8525-354B-9C5F-578C590D7F49.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/DC565339-D698-8A46-B7D1-CCA7C88662DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/2A8E9E09-6B4E-5A46-A37A-F7B77DD5BD69.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7EB530C3-D486-E742-9F81-725698DE7054.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/7E3CB71B-7952-324B-9F6A-AE81F77DD189.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/59E27CDE-083A-6E43-B9FA-C6078E4BB4D1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/6289A825-3FD7-614C-92EC-A745A9221AD4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8B1A366A-9B93-B74D-A388-131BF273DF41.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B9A0CE52-250B-2242-9495-362BBF7CE05C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7E6224C8-A804-954A-82D7-E81A4A136969.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8EFD2047-5916-4F4D-9A88-308BD12D0263.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E2C2D571-D251-B44D-8AA1-D8B9E9E5A9D1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/250E12C2-F59B-A444-8C67-7D36E56D1B50.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/E7EF2729-34CC-7F48-9AA7-AD176128FC1E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/BCE9A15E-4CAE-D64F-AAC3-9242BC94718C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/8D36BB12-A0BF-3040-B7B7-BA742840FAEE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/711F7D25-3569-C048-8E93-CDFF6001DA09.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/4A29C451-6EC5-2F47-B423-B58478C21886.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/15600FC7-26FA-CF4C-84D4-396C3B76195D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/05F886DA-D996-8B4D-96AC-FE6165A6833E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/086BB238-33F3-B94D-9B77-339B563040CB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/25DEE940-48BC-194E-9006-F41A65BD25EC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/11A000B5-84BE-1C46-BF50-853141AA9B0F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/ED0BE7CE-9CEC-D847-ADAF-D6D46F729621.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/152CF812-220C-344A-8215-B9A52C0CE5E5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C6A2FD05-6E56-D242-A3A3-34DD78677126.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BD1FE852-5E13-F042-A2EC-7989EC1DCCC4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1A96D0D7-26FF-DE4A-A5C8-0B42AF5B7080.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/18676DDB-A3E9-334B-B3C5-9A500A438193.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E06E29CD-E94A-C747-AA21-BFAF74400D1A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6357B3C3-0E35-1641-8D40-751A7DEB3D63.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D9AFB17D-E2AD-1340-B9B2-33F5EA5CDE4D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DDC04ED9-ADEB-C34F-90C4-EB906A635A63.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/51F19093-BF2B-2942-864F-5A683CC39BAA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/7770BDC5-E360-8349-B0E6-5D6983C8D0CA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F9A645A5-15C0-0E45-ADFD-8E9C90B5E757.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A4C9AF19-0EC6-8B4E-B323-5626C5232451.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D4383744-3A18-E446-998C-8D0336849E16.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/55D3B406-0983-D64D-8908-6997DAED8F44.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FF5DA909-83E1-DA4E-A310-58C21BDF5471.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5225DFDC-26A3-A24B-BB8F-EDB629882952.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BC674AC5-91B8-B242-AE95-077629E8F104.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A6376E75-AFB3-A941-AD5D-87F273954EBA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BCDD1E3D-BCA5-E244-BCA2-1D9A21032E5D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FFFC85FE-A632-B14C-9626-82FCD1E55E87.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A232D1B0-327C-9A4D-8D48-8E15246A74E3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/001CF3AD-26E1-214A-96F6-66C001C4C5BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/86FAFB91-0D28-DF47-850C-CB6DB6FB290D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/64E8541B-2102-324C-B488-3428BFCA327E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/6ECF942A-A70F-0440-9BAC-B43A00CD6DE3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/42B8B483-1605-634E-B1BE-3D9B6E1ABBDD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/64FD87DC-AC9C-8B4E-886C-5FEA5111E3E5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0049AF09-628E-434A-B0C6-49E34A6DD5E4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F9FD14D1-C3F5-2546-8C16-26DA7D8AFD0E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/D1D0D3B6-F0F0-BD49-9BB8-51A93F35A957.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/7BD74C44-47F3-DB4A-823F-A2F0F911FFCE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1C235811-07CA-5B46-8B1E-BB0C58FEBF18.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/ADA5EA86-9436-624A-9586-128272695E5D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/80EC635B-BDA0-0542-997A-B8A93EB33EBC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9CBA92B3-75AD-1D44-A8C4-6EDA51CAF832.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/53EC5F41-1E10-6D4C-B53B-2CB3734C072F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4F8E3D37-1228-6C46-B249-79C46EBEAE66.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C77A045F-3FE6-714B-BB76-44FFF8808BD4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/67857F1B-6230-7245-8E66-0F9959CFC926.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2F99A960-93D3-B24A-87DE-2B6627DD0232.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/537C5628-08BD-AC45-8A3E-7C2BB4F65F53.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/BC1BA67C-78CA-B444-9744-12D9F248692C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4DDBA80D-0078-3149-B1CF-BE28A828C03F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3804CE24-7D6E-3C4A-9187-F7D28D29CB19.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/FCA56EC6-B934-DE44-93A4-26EFD762573B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/85439206-C8F3-E040-BF97-0DAC95F8D02C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/9E58B446-A429-6F48-8C53-6F899F09981D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/DD318A7A-EF93-7945-9EB6-DA5A781FE32D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/22D85A5E-4BD1-7247-90C8-72E20DB9DB22.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C01DEC82-CAB0-6D44-9D87-75442C1DBE20.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/AC0967CE-1A2E-3D48-B771-AD663876CEF3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/9EAAAF54-2090-5449-9BEC-92FC6A8E2B78.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/D378260C-9157-2548-A3FD-E4CBFF0D1F94.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/771FC10A-42BD-1443-8304-0B2A3ECC5B1D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/105640FC-BCEF-494C-B2C7-BDE28E4F9FC3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/8590714C-6AF5-D748-BA37-39C2F05C42B3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/B3C1A86F-1A21-4D48-8FEA-C83024866EE1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/7EBD2690-4EDF-BB48-AD47-ECB6EDC388C5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C3924607-C79B-FF40-9C9D-6F853C5057A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/383646AD-2DB3-8645-B913-70E6646CA7A2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/C43649CC-1E20-5346-86B5-D6CD5200E22D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/99470F34-A39E-254A-BC17-74FBC575B1E7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/79F1AD85-B561-7848-92C9-51A4CF380636.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8682000B-7740-9647-A793-2BFC93AE129A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/EE8D4FC0-7E79-B647-ABB0-665B37743BC5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5C439DE3-7BAC-FD42-BDF8-101F116C4621.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C8CBFCD3-34ED-2A4E-AF37-A988B3772241.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5B01A971-9F0B-C44F-B0BD-2050EBDB9F09.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2C9FEEE7-3A89-9B49-9544-0FC23B19A8FB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/989AC556-A737-884F-B27F-FDBC5C19F8B5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6629A0C9-706B-374F-9BF8-C345CA6437BB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/1155FEE1-C71F-8541-BC86-6EC4205E3873.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/287389C6-EAA9-C349-8921-82CEEF34C8A6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2BFA29A5-EBDC-0B46-8353-A9EFA1861074.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A19CDF7A-95A2-2843-8293-3342F2A85C0A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/AE17D4EA-5FBF-9A4B-A118-3F0BB5F49596.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1368F025-1F35-1845-A72B-2B9E05CB4081.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C96D769D-6CDD-7E4E-A561-E33FDAE82E61.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2E6673E4-ABE3-AC44-B76E-205FE2D0504B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9637A0AA-97C3-D943-8AF2-4837321F1138.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/61C45FD9-23FF-D64F-82C1-966C86C8283A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/DF2BD401-00BB-F944-A6BC-90D1B49AB98F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/94ED63F1-A83C-D347-91DC-D1BD599EE657.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A3BB572D-17ED-2F48-AA40-1C4431D9627E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D33671EF-0463-074D-A514-6C9F265F1475.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/5886B6A0-BD12-CD4B-8B2D-706C872AA574.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/D5B8DB3D-47AB-E548-A86D-EAC9C64E1294.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/3FD14192-5148-404B-892D-DDEA70C4F9DE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/52FC6356-9CD0-3947-9F86-1CC540278997.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/73A204C6-85A4-5540-8567-3D7A13A9FD70.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/97786B40-FAE4-0546-9E6E-BF9044F38CCE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E05F868D-7347-D844-B0EF-40D9C8161995.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0E02B969-4DA3-7A4C-A73A-375C438C302B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1656CD23-97EE-9847-80A8-59D6B18A1DDC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2C3AD5F4-0408-BE47-8FCB-5280E38D8F7F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5A403CBD-D0E6-CD49-BA89-11BF59582554.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/65EA024E-FBAD-E34C-96DC-4D6C55AA156D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5637242D-5855-5447-8915-0451AD799038.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/295CA7CD-2801-A946-953D-C07B122F289A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/D5CEB374-EE87-BA46-A487-94FA58B5B173.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C1F9E67C-5252-6443-A024-E0649708AD09.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/89DB007B-D0CC-B04B-9411-040D8774C727.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F65FA8DA-A517-D74C-9A64-1D21B442E947.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/99B94ABF-3F24-8A4A-A8A4-2770278DEDD4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/8C581888-F973-D64F-95C5-3CCEDC45C2B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7F193056-5726-4E42-8F8F-1570775B64DF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/08F6E200-D2BC-ED40-B681-63CF2DCEE5AB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/123F30B1-987A-A349-A5A7-DF6A7CBBB168.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/36A3DC85-9299-C241-A05C-524517108E0B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/751A0922-B215-874F-878C-9E334800D808.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/D26507C0-97F3-E84B-9B5C-C42E93C16F70.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/887A22D5-F72C-974C-8FDE-DF091D28DA1A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/233367A8-C935-6F4A-A563-AA7E3B724BDA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1F49FDEE-87AB-C742-8E38-58B1AB8CF7D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/664F51A6-0233-8B42-94CC-D4AA3CDC81B8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A2393D58-467E-4642-B630-DC691361F49B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/03A56E4D-A168-434E-8DB5-DDF566EEDD08.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3F97B67B-4604-744F-ADB7-1F28504267D0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8261ECB7-1F16-354C-98FC-005A1F2F4AEE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/8413574B-AC59-7545-A977-7DCF4A0A6E4C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/918F029E-D2CB-B044-987A-D6CE30BB970A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/809FF934-D03D-114A-B129-48987175AFF0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/C7B428B6-2727-734D-A21C-ECB9F1B23A1B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D6146E97-B172-5348-A119-86EB24D6956F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9663A922-87D7-8C45-ADB1-63496EE69BC7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/009CB42D-7E17-CF49-ADCB-1CC420327EDB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/80A6B8FD-A021-9345-A73D-7457CD2A6919.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E3A7A077-0B24-C946-907B-88F80F4874F0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/41AA210D-56D1-6243-B7C4-A34F12289D9D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6C6224CC-AC50-6041-827B-FAD3C40AEF8A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/05D0B8E6-E1E2-9F43-A4F6-A46CFE9D335E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6A5AFB87-B1C5-864B-9A13-91FAD9119A7A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A9759D90-7C4B-594A-B75E-564669D4DCDE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/18BCBFD1-76EB-1B4D-A832-6DB2923D8CE8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/876768C2-341A-CB43-82E4-ABE270779E77.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B1E15BA9-29BF-AC46-8E8D-FE8FEA066C52.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E426976C-98D3-B640-8FE1-791494E6FC35.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/48931432-219E-3E42-84F2-5668A100CB46.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E295D5FD-6337-3B45-8E1E-F55685D089F2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/94751379-7EDD-4C42-9551-EE55FDC38D91.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/DA450E78-A929-2545-9F10-2F491447E68D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/859C0138-4DEB-F84B-9E70-9E0129AF31C7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/D573EDC0-7CF9-AF4D-8EEA-C25E76BFA0AC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/44A848B9-5D93-6B4F-8939-23EEDB1ECEBD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C2AFA819-5978-154F-9F9E-84684CC0C573.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FAEAD13D-6EDA-B541-9F3B-E8F3CFEA036F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B05BDE76-49A3-6D4E-956A-774E656FD66F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1ED00316-1F0C-8E4D-9AFD-D84B88083903.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8B0B45DA-CF42-D942-9FE9-251D6ABFCA20.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B842DB67-1782-704F-A065-9DF5E578D784.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C88897AC-EA43-1B49-B3D0-0DB41F72ED43.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/28B9A139-9C50-9B43-994B-01F2A725FE67.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F510C3DB-7070-704D-9AD1-8B3F0879F747.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5E1CE12B-69E9-D243-8F0A-EDF5854B333D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2C50B72F-CA81-E04F-8176-4551062D015D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0025DD29-85F6-DD4A-8B8F-580EBA03AB3C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F2A13461-BF79-2543-B718-D05A6F33CF5B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9BD3789E-3A9C-EE44-B7EB-099687147ABE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/75B8F8F1-3F92-F14F-A1FB-4F8E7257A5A6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D1B1C535-83DC-3143-9328-E2639C24DD7B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4CA322B1-7635-AF4A-85D3-909B6FC72736.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C5BE6AE2-FA95-6442-8572-D806CE355C4C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D6FD215E-8EFB-514D-B0DB-53A3CE63681D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F5D2F8BD-4F39-B24D-AA16-1FFE74959759.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/CD737071-F96D-CD47-B897-B900E32A4409.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0742384D-C1F3-5D46-98B3-FDFF9D26D157.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/8505B544-0F54-294B-94E2-147AF81072BA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FCACFA61-90BE-8F43-B22C-11A971D4A398.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3B9CEEA1-E25D-9640-9947-CA083A6F1D4E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E32F4884-908C-4643-AD3E-5C9986ED2922.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3D9059D1-D775-C346-B146-44C4A701C3DE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/F9A911E1-3E5A-2743-8325-061AAEA19E35.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/CB2FC999-8385-F54E-998A-1D0F0533A5AE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/25FA3BB4-966B-104F-9325-6A4A1643FE2F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C3169424-B9B2-B948-AEBA-85D460CFE0A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D8EB22DF-7898-434A-9BAF-CA8D50FF97C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/CAF479C0-1738-DD4E-BB6B-136461F0FE7B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2142CD86-087E-CB42-8974-0DF109D96661.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/41C9A9F4-A292-1246-8998-A61E3B9D9481.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/246350CE-8816-6D4F-A7CA-ABCB4F6220E0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CB047EA6-4295-3040-B9D5-BE5C9A7EE5AF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/48C19607-1FEC-5447-94D4-FD20F76F450B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1A386D35-27B6-7045-9D3E-8954AFAEB310.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/EF1AF08B-3862-374C-8EDF-D13E43EF1925.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8778C00A-6733-3440-93F1-9246FD8B135B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1FB1C56F-82BF-D844-9F64-A365D0623B99.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/72E78F3C-12BC-184C-ABD8-E780D59F388A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/4431AB05-EE7D-1B40-AC59-ED1BDCFEDDED.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F7BC4A18-7145-6C47-ACE0-004570458147.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/408645DB-1A29-F447-B281-11C062EAB996.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/6F5FB5CA-75A2-BB40-AFCE-1F9D0D923E40.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3EFD0969-68CC-A941-BEE9-DC84FF0BCBD2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/16B91C58-76B0-EB4B-91E4-3C13CB6755D4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3F657945-D79C-8B45-8CD2-661518BC516B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/59D2AB49-F068-2D47-AD1C-72A7396272A0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B0757525-59DD-F84E-8299-099CCEC6D70A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A2E09EBD-48E8-5F46-A94C-7DDC832A327F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/1A40A182-1577-874C-B169-EC25ED2001FC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B9882B10-F832-654C-BAEC-F82D449C5C06.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/33F4A6A6-6E30-8242-A622-AD4C19593D52.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F325EFA3-BF53-D74E-B836-3AEE7E4B5480.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8387353A-9A61-1645-8DF1-443183120371.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/245DA370-3D6C-4F49-98EB-AA428BC92EBF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/49BDD7F5-4249-AC41-B1CA-7B7398B9EB76.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5F2EC035-3633-454D-9C03-5EAC75B6A39C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/5A7A721D-FB07-9F45-84B5-FE172B0B7FF8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/AF724927-3355-8242-A4FE-3994E7EE99D3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/E05151E1-61AE-EE4A-AA6E-275AE3C2F10F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/8BE5EFEB-BA8D-054E-AB71-8966D7473C4B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3C7FCCD0-78F8-4442-9322-383F15233082.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0CAF4AB9-8C26-C94C-8364-6197C0033A7A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/110AEB31-F122-4843-8008-EDA1AD2F8C30.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/08288514-EA11-5645-A1D6-2E981848441F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/389BD0E5-2FB3-1A49-AB45-8461C781104F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/412DA1E9-1746-824F-9AA2-34469CF41103.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/69A2B01B-842C-1C47-A494-B8C5D87D943A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/9AA26416-314A-414B-89AA-EAD38247EEA3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DB9C3969-DE61-764C-B8C5-B608EBA492F6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/B0F3084C-A808-1041-92C9-CF4565A63550.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/289EE10C-5AA4-4C49-980F-1FFEC7DFC2A5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/672FC457-5095-4A4B-B158-3F0CAD9E5CD8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B033292B-1095-5647-9F1A-2B1E6EBAAADF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/442834EB-B1C7-3D46-B761-AEF56D6A24C2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B9FBE325-41BB-6941-82F6-A513FD56B3E4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/B133F449-31BD-0442-A9DD-17EADEC61C30.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/C7193FF1-2388-6546-AB8D-D815DFA89C8A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/E741BC42-B656-E844-B2AB-A623C9670541.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/8B36524B-D87A-6F4D-BDBA-4D2FD7D6C5D5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/280503A9-7401-BE49-824B-213C1FA90005.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/E966AFA3-3215-D641-97A2-E25807C2C0FC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/9BD76C38-3337-8341-8A71-A26D23327C9B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/46510BCF-FF5C-644B-BAF2-3F1F46C16AC5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2FD85EA8-8EF3-D245-9063-6F0F7E90699B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EF864FDB-CD50-044D-A8CA-3E387A5F3CDF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/17DBE8DE-F712-AB4A-98C8-B25F5849E631.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B9604B33-8B49-DE45-BF64-03458E197AE6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/02F216DE-CF40-F34E-96F3-35D430FCCA19.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/796A57F2-BBCD-1849-A632-F0F4B484C9D6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F09B7962-6CC1-8743-8143-271B3D72B72A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/ECE06C12-2D9C-9F4C-A721-87EB9948B025.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/4B515F29-16E5-0342-B64C-E23C108584D2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E5F2C875-D80E-3349-A7F7-9A7D39F118B7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/0728C399-4406-7B43-8D67-10D7AB4A3EFC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/8B3B59EF-DEF0-0441-89D4-1C8B98B07938.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/7FA7224E-E677-D74A-8E1C-BB2DF88427DC.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/9958C7EB-17EA-7944-BCEC-FDE58E25241B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/52B0BD97-2176-8C46-9BA8-3E4667246904.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/7988688B-70CD-7944-B593-17C0288F9590.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EBEBE115-B2DB-B243-87D8-94061418C68C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FE414685-5833-D148-A9C3-03FAB25A25DE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/12EE6123-A2D1-ED4C-BB39-D2CF407BECD1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/91836656-08D7-B948-A175-0C441538C6EE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/B23D9FFE-6984-AF4F-90BE-1F1AA4A21193.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F2A7B178-F4B6-B34E-BFD5-6CB97D34C058.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F4319AA8-B967-5E4B-BDE9-68EF2CE5B043.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A388FC7A-6D5B-B54D-9C83-844DFF2B26B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B8B304A9-3F95-214D-B1E4-849CCC395E92.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4BE7D390-3BBA-424B-BA2C-0FB0FD16061F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/198F8AB5-1072-B246-A51A-5D114D02D899.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F6227331-D78F-8C48-AC7D-2E06F3B76CFB.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/28B58A28-1B4A-994C-BE55-45D1578D607C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/4A62A9E5-0B41-B640-BA6F-71B3E9BC202D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/700BC591-E680-D44D-B3FB-30067DA1B7E4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3DFA2339-61DC-C040-98F7-DEF4CAF13EF1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/B08A4DF0-F144-4445-B174-30F7A1C761A7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/A24C9754-0F7C-7F48-A64F-8B5DB34890CD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/AD69DFAA-FA1E-6847-B84D-BA7FCA693E2C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F955F4D0-9B00-AD4E-A68A-72C67CA4E5FD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/39080C79-5C9E-DC41-989D-085452C9A4F2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/F41314C8-2210-7E41-803D-503C73E8534C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/141A8AD8-B030-F745-9009-9B5E919BAEFE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/6D3D2D64-7F42-1440-82C6-9304F42B0315.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B85BD861-9C98-4E4B-A759-53B5DC927F1F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E2607FC8-ECB2-F340-8078-268994A1E68A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FD69AC1E-12EB-C44E-90A7-717C1A9C2311.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/65E29A5C-2EC8-6543-8F9D-A57B3105C625.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/66C26723-994C-C04E-B321-4FD98022145C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F7433B5F-7882-8344-B023-2621268BDC3E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A4B250EC-8070-5647-BC61-BD60B61783BA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C69B6FDC-0844-664E-970A-59EBDB9CF69C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4074F667-BF09-7047-8A15-B03FB616F95B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D3755D67-7925-E34E-8ECD-C0170CB9BA7A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A271295F-4662-534E-8C05-F588E5B7DA46.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/D8712BD3-FA0E-3149-AD8F-1663CA50AF5A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/593569F0-C23C-134D-9930-BEF3587E3EB6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/088AB980-69D1-564E-AD82-9D0C424CDC72.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/097D50D1-5854-E648-9ACE-92C5CC395615.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/BE41EF12-19FC-E84C-95CA-6C20F93CD092.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2452806B-0329-0B49-A3E7-5A3ABA2DB79D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/43E58C9D-10B0-DD4C-B251-0AB806E52C1A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2822E9A7-1B22-8745-85F6-B86715384499.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/1971FA48-00BC-EB4A-8230-BF8B78FA7073.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FB51FAB0-3EE5-4249-A7EA-8BE2EA7D8B6A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/25FF1F51-6179-9E44-9E99-DA3AB0076B11.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0B1AE5B6-5EE1-E647-8F89-96A950BF6EDF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/87761DE7-B5B4-3349-A0ED-2F3EDF23EC87.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/06B1491E-7308-9E4B-92CB-4E47C3CA712B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FEF1AC17-C544-1547-AC60-40D9F6912953.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/5B56F170-D52E-6841-9869-869C9F712E17.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C0FC69D2-402B-8D45-A7FB-D20AB21B0636.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/E7194745-D7CE-2542-9112-6CF6EDCCD28A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2861E484-0F42-234F-9F28-7B57F849A287.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/4AF1052B-BF28-154C-9A1B-8104721BE4B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9BA01C68-2007-784E-B651-E6AC7C22A26E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A78D4ADA-A64A-7D46-93F0-DB409E60ECC0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/640D81CA-0072-3541-80F9-DA9DC19CD9C8.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/2724A203-0E88-E74B-86D3-08A5A226898F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/910AD872-7CFE-414F-8965-5AD4977F8D6A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/9F57F591-0E62-4D43-93E5-6EE4C9F34A2D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/43050C7C-F168-F641-920F-BBB0DD6327D7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/AD5EC9F0-89EE-8D47-B469-9F18E15C5DB1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/5E850E13-B7C6-7D47-8561-95436090ED8D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/0711B924-9F4D-6F41-865F-E6381ADAA549.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/90EB09D6-5B08-E14E-A5E7-9597D4014A5A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/44A260AE-2AC2-0045-9EF1-D294ED27FBD4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EEE2C9EF-D137-B942-BD6B-3C325466F783.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/209132D1-13C7-B74C-AA42-C65B5B1044A5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/47363091-45C6-454D-841A-E3AF20032239.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/A8922960-D954-5A4D-B0AE-D7EA7FDA46DA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/3C6E064B-182D-E44E-8748-F5429BADA557.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/03325B73-1E1D-1D4A-A9C5-AC893B05F7DA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/7F6186C9-6D76-D048-9811-B2A825A91848.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/240001/0DFC1A55-CC41-784B-B19A-BBCD36416638.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/51E6DDA3-CE86-1246-984D-204F70E38EBA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0D9B68A5-1C8A-FD41-9FDC-154865588A72.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/51477D31-E14D-574D-847B-67BB386B4A24.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/50D675BF-B4D9-3948-9565-F1453A09D4D6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/A981A27A-99EB-9345-9790-8F0A2F005F3E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F44968D5-E6FB-9240-B676-CECFC9F7BFFF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/F85B6BF0-A26E-DE47-AF9A-8E6269E4CA26.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/822BE5E0-E026-874A-B3E2-D795174C981C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/17228B7F-2D55-C04C-A3ED-6A8AFC2C1E56.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/E45FEC3B-1637-CE47-8D61-D35F4BB7EAA6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/933FB3E3-2E29-EC40-9DF4-A7374FC68373.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B68C393E-1758-4240-A1EB-687481D920D2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F58EA112-5CDD-A14B-93E3-072C667B0C3D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/66D66DD8-75A6-B04E-9690-37166ED9915A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2FDB5A6F-F09E-EB40-A6A4-7E7D493CAD10.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/7F9C71E1-7BEC-534B-9EBB-FE6D6A8B304B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/37F5B783-0F73-CA40-BDCA-C82E9A4C3796.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/9189ABD5-8EC7-AF44-8053-0558EF919752.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/39B24E4E-B728-1345-B692-B570B47C5D65.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230002/AC6C9E7C-C9E9-D944-8207-EFC92C8778F5.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/0BF8E96B-0708-D24C-A12F-096FE67DE2B7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/80EDDAE4-C556-B644-B4AB-D0B3CCD0D559.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/EFDAD2AD-8A5C-0745-AA48-ED7188778767.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/2A1E6309-61E0-D04A-B98D-183A20A2EA03.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/2D490515-2BBB-4248-9403-8A93941A8000.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/199C8452-E155-ED4D-80F0-21ECE2362D4D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/965B8504-69D3-1240-87FC-A42C3426E2BF.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/CF00ECC6-4C3F-CC4D-9E37-139AF6B42761.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B8706CB7-5FAE-EE45-BB30-D677D7E781E2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/CAB22FC3-D8B7-6B49-90E4-05CB2AE3E605.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/7763EA85-DE63-A545-A2F5-0AF4743996AE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/05D5C3ED-123A-5A40-822B-E5DE6411B04B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/BDB5550E-DBF9-FC40-B9AA-D9AE7FCCF8F9.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/DF5227CE-4371-5340-ADD8-7BEF2B182C0F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/B5087840-E292-2245-A999-E35226EB0708.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/DBBCE594-44A3-0342-BED2-142E89503477.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/5DE6852B-185F-A845-A183-FB38D7D4FD47.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/15ED900D-8C2D-564D-AF23-9B37C85A6DDD.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6F9EAC3E-CFC5-1B42-B11C-7028693DB1C1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/A4108D6B-9375-DC45-8443-64452D5B996A.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/C7F4AF77-685B-0E44-8446-6E07B5EE97B0.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/6E955A22-A175-9746-B993-583510B00468.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/6E21780F-CC36-D544-A1F9-A8776A02C5B6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/1DE9F256-A646-064C-AAF1-8EBEEFB1BA59.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CBEB475D-E1B8-B94B-8ED5-3398A31F7A4B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/2E0B0DCE-F072-C84E-9368-3C917F507AE7.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/B6366696-AA23-CC40-86C7-EB07ECED5DDE.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/CD41A210-524B-B149-9DC4-8EA18C7577C4.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/F5F1183B-69D6-EB43-8FB4-26F62B936F56.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/05BF8921-313************************************************************** -b tagging needs to be run on uncorrected jets. Hence, the JECs -will first be undone for 'updatedPatJetsDeepFlavour' and then applied to -'updatedPatJetsTransientCorrectedDeepFlavour'. -************************************************************** -E-D64A-85E2-12109E7BC91C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/FCC1DFB9-48E7-9643-B0DA-72BCD8FFF4B1.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/FDFC8BF7-A98E-D84D-81A4-ECD4D092E3E6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10000/CDAA22C1-C916-FA48-808A-A1EE12FEF686.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/08FEB930-307C-EF43-B50C-BC02B38AEA3B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/B52B81E7-9DC9-E248-8EF0-C554662AF10F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/D8E111BC-FBCC-3341-A6D5-8BEE84BB47FA.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/5DCB9753-6BB1-B84F-83B5-3983247019B2.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/3F308119-5D9A-CE4B-8CED-732166413E5C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20000/0462F8BC-C63C-E542-83F7-D19AFD33FA88.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/C7BCA203-8A95-D247-828A-95BAB41D1673.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/20001/CB062C1A-6E11-6845-A90A-FCD4C8E7B8F6.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/10001/1FD52C9F-FC3D-3240-9DE8-6133816FBD71.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/23D44465-0114-0949-93E6-3C8C9922E448.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/0A8E7258-D830-6C42-986D-EE7DF20EAD7D.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/16B5DACD-8E7B-0446-95F5-F1C7FD29663F.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/F01B7D91-17D0-0A42-AF81-F6B0CE77317B.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/9F6CCF3E-44DB-B948-AF36-C9FE224B951C.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00000/2682C6B1-69EB-0C49-B981-E36792E45468.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/EE05F1B9-956F-394C-8021-8E4C0B95CB99.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/51C66239-35A5-A145-8CFC-B41045E8617E.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/FEE8B689-4314-024F-8AE9-784361BFBBB3.root', - '/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/00001/A56FA8A9-A8B1-A04E-A777-7977695FADED.root' - ) ) -Using output file ntuple_ttbar_had_0.root -10-May-2023 11:21:38 CEST Initiating request to open file root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root -%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:40 CEST pre-events -Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root. -%MSG -%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:40 CEST pre-events -Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=. -%MSG -10-May-2023 11:21:40 CEST Fallback request to file root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root -%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:41 CEST pre-events -Failed to open file at URL root://cms-xrd-global.cern.ch:1094//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=+1213llrxrd-redir.in2p3.fr. -%MSG -%MSG-w XrdAdaptorInternal: file_open 10-May-2023 11:21:41 CEST pre-events -Failed to open file at URL root://cms-xrd-global.cern.ch:1094//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=+1213llrxrd-redir.in2p3.fr,. -%MSG ------ Begin Fatal Exception 10-May-2023 11:21:41 CEST----------------------- -An exception of category 'FallbackFileOpenError' occurred while - [0] Constructing the EventProcessor - [1] Constructing input source of type PoolSource - [2] Calling RootFileSequenceBase::initTheFile() - [3] Calling StorageFactory::open() - [4] Calling XrdFile::open() -Exception Message: -Failed to open the file 'root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root' - Additional Info: - [a] XrdCl::File::Open(name='root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root', flags=0x10, permissions=0660) => error '[ERROR] Server responded with an error: [3011] Unable to open file /eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root; No such file or directory -' (errno=3011, code=400). No additional data servers were found. - [b] Last URL tried: root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried= - [c] Problematic data server: eoscms.cern.ch:1094 - [d] Disabled source: eoscms.cern.ch:1094 - [e] Input file root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root could not be opened. -Fallback Input file root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root also could not be opened. -Original exception info is above; fallback exception info is below. - [f] XrdCl::File::Open(name='root://xrootd-cms.infn.it//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root', flags=0x10, permissions=0660) => error '[ERROR] Server responded with an error: [3011] No servers are available to read the file. -' (errno=3011, code=400). No additional data servers were found. - [g] Last URL tried: root://cms-xrd-global.cern.ch:1094//store/mc/RunIISummer20UL18MiniAOD/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/MINIAODSIM/106X_upgrade2018_realistic_v11_L1v1-v2/230001/77689638-812A-B147-A262-F72215407A8B.root?tried=+1213llrxrd-redir.in2p3.fr, - [h] Problematic data server: cms-xrd-global.cern.ch:1094 - [i] Disabled source: cms-xrd-global.cern.ch:1094 ------ End Fatal Exception ------------------------------------------------- -JOBSUB::FAIL job failed with status 92 diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub deleted file mode 100644 index 55702924669..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub deleted file mode 100644 index e7f2ea77d2f..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub deleted file mode 100644 index 36cf883208e..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub deleted file mode 100644 index ac03cc8f242..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub b/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub deleted file mode 100644 index 7f1a6c1dbbb..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/nJobs.5 b/test_ParTEdge_small/ntuple_ttbar_had/batch/nJobs.5 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh deleted file mode 100755 index 1c985d24bf9..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=0 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh deleted file mode 100755 index 8a1f70d28f8..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=1 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh deleted file mode 100755 index f2dbfc20298..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=2 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh deleted file mode 100755 index bea299489ae..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=3 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh b/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh deleted file mode 100755 index 7fc60816351..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=4 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh b/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh deleted file mode 100755 index 9c4e1fb4cb3..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_ttbar_had" -cd /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/condor.sub b/test_ParTEdge_small/ntuple_ttbar_had/condor.sub deleted file mode 100644 index 4955480caaf..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL18MiniAOD106Xupgrade2018realisticv11L1v1v2MINIAODSIM nJobs=5 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ntuple_ttbar_had_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 15000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 5 - \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/helper b/test_ParTEdge_small/ntuple_ttbar_had/helper deleted file mode 120000 index ce84a6bf548..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/19652/ntuple_ttbar_had/batch/ \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/output b/test_ParTEdge_small/ntuple_ttbar_had/output deleted file mode 120000 index 918f415f4ea..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_110513_test_ParTEdge_small/ntuple_ttbar_had/output/ \ No newline at end of file diff --git a/test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh b/test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh deleted file mode 100755 index a1bf0e88c10..00000000000 --- a/test_ParTEdge_small/ntuple_ttbar_had/sge_sub.sh +++ /dev/null @@ -1,5 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small/ntuple_ttbar_had/batch/sge_4.sh From 1966406a4865cdbd17b2bf8a05fd6a12d99b123f Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Wed, 10 May 2023 15:11:57 +0200 Subject: [PATCH 16/21] Delete test_ParTEdge_small2 directory --- test_ParTEdge_small2/DeepNtuplizer.py | 313 ------------------ .../ntuple_ttbar_had/ademoor.cc | Bin 5857 -> 0 bytes .../ntuple_ttbar_had/batch/condor_0.sub | 13 - .../ntuple_ttbar_had/batch/condor_1.sub | 13 - .../ntuple_ttbar_had/batch/condor_10.sub | 13 - .../ntuple_ttbar_had/batch/condor_11.sub | 13 - .../ntuple_ttbar_had/batch/condor_12.sub | 13 - .../ntuple_ttbar_had/batch/condor_13.sub | 13 - .../ntuple_ttbar_had/batch/condor_14.sub | 13 - .../ntuple_ttbar_had/batch/condor_2.sub | 13 - .../ntuple_ttbar_had/batch/condor_3.sub | 13 - .../ntuple_ttbar_had/batch/condor_4.sub | 13 - .../ntuple_ttbar_had/batch/condor_5.sub | 13 - .../ntuple_ttbar_had/batch/condor_6.sub | 13 - .../ntuple_ttbar_had/batch/condor_7.sub | 13 - .../ntuple_ttbar_had/batch/condor_8.sub | 13 - .../ntuple_ttbar_had/batch/condor_9.sub | 13 - .../ntuple_ttbar_had/batch/nJobs.15 | 0 .../ntuple_ttbar_had/batch/sge_0.sh | 28 -- .../ntuple_ttbar_had/batch/sge_1.sh | 28 -- .../ntuple_ttbar_had/batch/sge_10.sh | 28 -- .../ntuple_ttbar_had/batch/sge_11.sh | 28 -- .../ntuple_ttbar_had/batch/sge_12.sh | 28 -- .../ntuple_ttbar_had/batch/sge_13.sh | 28 -- .../ntuple_ttbar_had/batch/sge_14.sh | 28 -- .../ntuple_ttbar_had/batch/sge_2.sh | 28 -- .../ntuple_ttbar_had/batch/sge_3.sh | 28 -- .../ntuple_ttbar_had/batch/sge_4.sh | 28 -- .../ntuple_ttbar_had/batch/sge_5.sh | 28 -- .../ntuple_ttbar_had/batch/sge_6.sh | 28 -- .../ntuple_ttbar_had/batch/sge_7.sh | 28 -- .../ntuple_ttbar_had/batch/sge_8.sh | 28 -- .../ntuple_ttbar_had/batch/sge_9.sh | 28 -- .../ntuple_ttbar_had/batchscript.sh | 51 --- .../ntuple_ttbar_had/condor.sub | 13 - test_ParTEdge_small2/ntuple_ttbar_had/helper | 1 - test_ParTEdge_small2/ntuple_ttbar_had/output | 1 - .../ntuple_ttbar_had/sge_sub.sh | 15 - 38 files changed, 1009 deletions(-) delete mode 100644 test_ParTEdge_small2/DeepNtuplizer.py delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/ademoor.cc delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/batch/nJobs.15 delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh delete mode 100644 test_ParTEdge_small2/ntuple_ttbar_had/condor.sub delete mode 120000 test_ParTEdge_small2/ntuple_ttbar_had/helper delete mode 120000 test_ParTEdge_small2/ntuple_ttbar_had/output delete mode 100755 test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh diff --git a/test_ParTEdge_small2/DeepNtuplizer.py b/test_ParTEdge_small2/DeepNtuplizer.py deleted file mode 100644 index d2f66986fdf..00000000000 --- a/test_ParTEdge_small2/DeepNtuplizer.py +++ /dev/null @@ -1,313 +0,0 @@ - -import FWCore.ParameterSet.Config as cms - -import FWCore.ParameterSet.VarParsing as VarParsing -### parsing job options -import sys - -options = VarParsing.VarParsing() - -options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") -options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',5001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") -options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") -options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") -options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") -options.register('reportEvery', 1000, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "report every") -options.register('gluonReduction', 0.0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.float, "gluon reduction") -options.register('selectJets', True, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "select jets with good gen match") -options.register('phase2', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "apply jet selection for phase 2. Currently sets JetEtaMax to 3.0 and picks slimmedJetsPuppi as jet collection.") -options.register('puppi', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use puppi jets") -options.register('eta', False, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.bool, "use eta up to 5.0") - - -import os -release=os.environ['CMSSW_VERSION'][6:] -print("Using release "+release) - - -options.register( - 'inputFiles','', - VarParsing.VarParsing.multiplicity.list, - VarParsing.VarParsing.varType.string, - "input files (default is the tt RelVal)" - ) - -if hasattr(sys, "argv"): - options.parseArguments() - - - -if options.puppi: - usePuppi = True -else: - usePuppi = False -process = cms.Process("DNNFiller") - -process.load("FWCore.MessageService.MessageLogger_cfi") -process.load("Configuration.EventContent.EventContent_cff") -process.load('Configuration.StandardSequences.Services_cff') -process.load('Configuration.StandardSequences.GeometryRecoDB_cff') -process.load('Configuration.StandardSequences.MagneticField_cff') -process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') -from Configuration.AlCa.GlobalTag import GlobalTag -#'auto:run2_mc' -process.GlobalTag = GlobalTag(process.GlobalTag, '106X_mc2017_realistic_v8', '') -#process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '') - -process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) - -process.load('FWCore.MessageService.MessageLogger_cfi') -process.MessageLogger.cerr.FwkReport.reportEvery = options.reportEvery - -process.options = cms.untracked.PSet( - allowUnscheduled = cms.untracked.bool(True), - wantSummary=cms.untracked.bool(False) -) - - -process.load('DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg') #default input - - -if options.inputFiles: - process.source.fileNames = options.inputFiles - -if options.inputScript != '' and options.inputScript != 'DeepNTuples.DeepNtuplizer.samples.TTJetsPhase1_cfg': - process.load(options.inputScript) - -numberOfFiles = len(process.source.fileNames) -numberOfJobs = options.nJobs -jobNumber = options.job - - -process.source.fileNames = process.source.fileNames[jobNumber:numberOfFiles:numberOfJobs] -if options.nJobs > 1: - print ("running over these files:") - print (process.source.fileNames) - -process.source.skipEvents = cms.untracked.uint32(options.skipEvents) -process.maxEvents = cms.untracked.PSet( - input = cms.untracked.int32 (options.maxEvents) -) -releases = release.split("_") -if ( int(releases[0]) >8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'pfDeepCSVTagInfos', - 'pfParticleNetAK4TagInfos', -] -else : - bTagInfos = [ - 'pfImpactParameterTagInfos', - 'pfInclusiveSecondaryVertexFinderTagInfos', - 'deepNNTagInfos', - 'pfParticleNetAK4TagInfos', - ] - - -if (int(releases[0])>8) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ) : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] -else : - bTagDiscriminators = [ - 'softPFMuonBJetTags', - 'softPFElectronBJetTags', - 'pfJetBProbabilityBJetTags', - 'pfJetProbabilityBJetTags', - 'pfCombinedInclusiveSecondaryVertexV2BJetTags', - 'pfDeepCSVJetTags:probudsg', #to be fixed with new names - 'pfDeepCSVJetTags:probb', - 'pfDeepCSVJetTags:probc', - 'pfDeepCSVJetTags:probbb', - 'pfDeepCSVJetTags:probcc', - 'pfDeepFlavourJetTags:probb', - 'pfDeepFlavourJetTags:probbb', - 'pfDeepFlavourJetTags:problepb', - 'pfDeepFlavourJetTags:probc', - 'pfDeepFlavourJetTags:probuds', - 'pfDeepFlavourJetTags:probg', - 'pfParticleNetAK4JetTags:probb', - 'pfParticleNetAK4JetTags:probbb', - 'pfParticleNetAK4JetTags:probc', - 'pfParticleNetAK4JetTags:probcc', - 'pfParticleNetAK4JetTags:probuds', - 'pfParticleNetAK4JetTags:probg', - ] - -jetCorrectionsAK4 = ('AK4PFchs', ['L1FastJet', 'L2Relative', 'L3Absolute'], 'None') - -from PhysicsTools.PatAlgos.tools.jetTools import updateJetCollection -if options.phase2: - usePuppi = True - -if usePuppi: - jet_collection = 'slimmedJetsPuppi' -else: - jet_collection = 'slimmedJets' - -updateJetCollection( - process, - labelName = "DeepFlavour", -# jetSource=cms.InputTag('slimmedJetsAK8PFPuppiSoftDropPacked', 'SubJets'), # 'subjets from AK8' - jetSource = cms.InputTag(jet_collection), # 'ak4Jets' - jetCorrections = jetCorrectionsAK4, - pfCandidates = cms.InputTag('packedPFCandidates'), - pvSource = cms.InputTag("offlineSlimmedPrimaryVertices"), - svSource = cms.InputTag('slimmedSecondaryVertices'), - muSource = cms.InputTag('slimmedMuons'), - elSource = cms.InputTag('slimmedElectrons'), - btagInfos = bTagInfos, - btagDiscriminators = bTagDiscriminators, - explicitJTA = False -) - -if hasattr(process,'updatedPatJetsTransientCorrectedDeepFlavour'): - process.updatedPatJetsTransientCorrectedDeepFlavour.addTagInfos = cms.bool(True) - process.updatedPatJetsTransientCorrectedDeepFlavour.addBTagInfo = cms.bool(True) -else: - raise ValueError('I could not find updatedPatJetsTransientCorrectedDeepFlavour to embed the tagInfos, please check the cfg') - - -# QGLikelihood -process.load("DeepNTuples.DeepNtuplizer.QGLikelihood_cfi") -process.es_prefer_jec = cms.ESPrefer("PoolDBESSource", "QGPoolDBESSource") -process.load('RecoJets.JetProducers.QGTagger_cfi') -process.QGTagger.srcJets = cms.InputTag("selectedUpdatedPatJetsDeepFlavour") -process.QGTagger.jetsLabel = cms.string('QGL_AK4PFchs') - - -from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets -process.ak4GenJetsWithNu = ak4GenJets.clone(src = 'packedGenParticles') - - ## Filter out neutrinos from packed GenParticles -process.packedGenParticlesForJetsNoNu = cms.EDFilter("CandPtrSelector", src = cms.InputTag("packedGenParticles"), cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16")) - ## Define GenJets -process.ak4GenJetsRecluster = ak4GenJets.clone(src = 'packedGenParticlesForJetsNoNu') - -process.patGenJetMatchAllowDuplicates = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - - -process.patGenJetMatchWithNu = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsWithNu"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.patGenJetMatchRecluster = cms.EDProducer("GenJetMatcher", # cut on deltaR; pick best by deltaR - src = cms.InputTag("selectedUpdatedPatJetsDeepFlavour"), # RECO jets (any View is ok) - matched = cms.InputTag("ak4GenJetsRecluster"), # GEN jets (must be GenJetCollection) - mcPdgId = cms.vint32(), # n/a - mcStatus = cms.vint32(), # n/a - checkCharge = cms.bool(False), # n/a - maxDeltaR = cms.double(0.4), # Minimum deltaR for the match - #maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match (not used in GenJetMatcher) - resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object - resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first -) - -process.genJetSequence = cms.Sequence(process.packedGenParticlesForJetsNoNu*process.ak4GenJetsWithNu*process.ak4GenJetsRecluster*process.patGenJetMatchAllowDuplicates*process.patGenJetMatchWithNu*process.patGenJetMatchRecluster) - - -# Very Loose IVF SV collection -from PhysicsTools.PatAlgos.tools.helpers import loadWithPrefix -loadWithPrefix(process, 'RecoVertex.AdaptiveVertexFinder.inclusiveVertexing_cff', "looseIVF") -process.looseIVFinclusiveCandidateVertexFinder.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFinclusiveCandidateVertexFinder.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLen2DSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.vertexMinDLenSig = cms.double(0.) -process.looseIVFinclusiveCandidateVertexFinder.fitterSigmacut = 20 - -process.looseIVFcandidateVertexArbitrator.primaryVertices = cms.InputTag("offlineSlimmedPrimaryVertices") -process.looseIVFcandidateVertexArbitrator.tracks = cms.InputTag("packedPFCandidates") -process.looseIVFcandidateVertexArbitrator.secondaryVertices = cms.InputTag("looseIVFcandidateVertexMerger") -process.looseIVFcandidateVertexArbitrator.fitterSigmacut = 20 - - -outFileName = options.outputFile + '_' + str(options.job) + '.root' -print ('Using output file ' + outFileName) - -process.TFileService = cms.Service("TFileService", - fileName = cms.string(outFileName)) - -# DeepNtuplizer -process.load("DeepNTuples.DeepNtuplizer.DeepNtuplizer_cfi") -process.deepntuplizer.jets = cms.InputTag('selectedUpdatedPatJetsDeepFlavour') -process.deepntuplizer.bDiscriminators = bTagDiscriminators -process.deepntuplizer.bDiscriminators.append('pfCombinedMVAV2BJetTags') -process.deepntuplizer.LooseSVs = cms.InputTag("looseIVFinclusiveCandidateSecondaryVertices") - -process.deepntuplizer.applySelection = cms.bool(options.selectJets) - -if ( int(releases[0]) > 8 ) or ( (int(releases[0])==8) and (int(releases[1]) >= 4) ): - process.deepntuplizer.tagInfoName = cms.string('pfDeepCSV') - -if options.eta : - process.deepntuplizer.jetAbsEtaMax = cms.double(5.0) - process.deepntuplizer.jetPtMin = cms.double(10.0) -else : - process.deepntuplizer.jetAbsEtaMax = cms.double(2.5) - process.deepntuplizer.jetPtMin = cms.double(15.0) - -if options.phase2 : - process.deepntuplizer.jetAbsEtaMax = cms.double(3.0) - -process.deepntuplizer.gluonReduction = cms.double(options.gluonReduction) - -#1631 -process.ProfilerService = cms.Service ( - "ProfilerService", - firstEvent = cms.untracked.int32(1631), - lastEvent = cms.untracked.int32(1641), - paths = cms.untracked.vstring('p') -) - -#Trick to make it work in 9_1_X -process.tsk = cms.Task() -for mod in process.producers_().values(): #.itervalues(): - process.tsk.add(mod) -for mod in process.filters_().values(): #.itervalues(): - process.tsk.add(mod) - -process.p = cms.Path( - process.QGTagger + process.genJetSequence* - process.deepntuplizer, - process.tsk - ) diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/ademoor.cc b/test_ParTEdge_small2/ntuple_ttbar_had/ademoor.cc deleted file mode 100644 index c6fabd0db16b780c657c7bb15c3a3bb887ce41cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5857 zcmai1byO7Ix}}GZ?v@ac1_?(xC8WDS7)p9Tq+w`KS_FpfuAxgxVrXHg0cj)zq*Hi$ z-|yacW3BtnT4$Yg_V;~jpLO;>dt+jt{8^}fZGfDDwmPqz((fz4$_C`@>gw_TR?&WU z{Mr9Bi}l9iwWpouKZ7K{FOT7#*jM%A%Z>dUnFNqGr=2Ciig-U(dg!Z<7_fB--y&^{ z@n>yJ*nu{t5ilFeB7GFMyx(L0SU4M25S$f$2o5qA9Ss#T4~O>eocVP8G=DI(JW_sQ z+P~=kQ7wSrl>MG6`qM#@_h&R8g7XOjf|E?r#X*XB`SzWMN|woJz#Y!oYF^-Ql_IBn zSo*8vA(ab;ODxu7BrARQ7qSwPJ21h4sh~9iH-x-m7KC{qTZMv_Mnllc-c-Nxodq3* z6%or)(Bh)(QdQI7`$QqfBh&gAvOn)1H!}T@;|0_>Hz$`-K`ce|aQB51aVJ{~?>8iV z)rMcLP#_4Vl|Q^Hu0Q@3L9e7#efQM`N=Bx36kmhAWTTA;Pd>Ms01y%ne z7X3Y0wRn}CQF5RF9t@}}Ejpz&9v>ZhL_s9k5>ZW6RK|}gINB)*)%qq&0@NR9=N}_gpmaznw7aQy=xA_>OBq{{C zmUQ(ILkQMe%JT8l78t)NX~Z17gmt(&2sm-{Zq;5YJXPGG7{{0jnN@+9d;4t#C7-WQ zZDA}(U+(&}Z%MuwG;|EE=|wp<(gM;_*Y+}YyRbUbnw33o(Ie6u$I23ylJ2ZCBCc{Z zQOiQcP7T&97mamN2M?AiYIcE@I}5JL1@LEl?S$rXqmNcR-L`r9*%<`88#236nbW+BT5O5X$@OA`o;CQjvOhMLL%pmTqrFPo+ ztbSafpj7S*FrU&-&(*#3isDJ0imlyETj_PO1osFBL!qhj6X)#|HyLTA>Q#OD3zO~y z_YgsH=tiZ5q8jP?`UcD=9`2;nHJqZ(+S!!*dLHY?(y8Gms<*A1_Wk*-#O(lEe5xY# z3$n=2PgDtsl+0UK^>lDchvBJ4rc6#lv+2jFQ2X2I6vo`GqtbammIb}RdpL#dLc=S0 zp(pDpnJ|{lM}zjx%oE)!D_(pQ8T|%cI7g8Q&l{W~@9hxl!9FH6Jv)3xsNjd-C+7Jm z?$h>8T6eL!rRX03b~3OmEW#zf7$Y_>|EJzpT+aK3owM?o=+tu#2a2s@e6%mTa&&JT z%wH~DrP>*gWa7I^30r@}ugUZ8U~0>$eD`?g?dC{~fS9iQcWdo4f>fc1%QN~PfDK2+ z-HfilC)&Hz0Sy=@9lt;?>(;~s9oXY^JHA5$+(4C95;-S!K^T`mtC>p)?_vgor@ewj zMu5$JC)p{;&<8il?&Z@cg<7LIuXgjE0Rr{C#%q+dGQTa;Vs__MjosQVQZ);yJ z^yWod5}MxU72DUDvN!N1y}A_mu1T){^Cp$#m+FMN;&EG7rkpY48Neu%GBSvMLSsng zbV*f$GkC50j7aLsPY#XH?RCtj@#4#HV%lU6)Pft6ld{ClitK%Di`2qYR5`(1O8Zfv zH?|;c6dgJCqi!zEUw6}GnpDZF+I&k4MD$;OEXT#R(=Bk|BGh#VgT3=|^|rqA zNo$g2RZcENvwIOzmMh>(E2}`$yRVy=eu$yyx(13TR4kBKl=Wv48b}k(zlU}ZU!-hM z-bxOR8L{b3HX{W}aTPF%Tg+!k~0jyhLiMmEIwEy7&X-c2hD`UvpVI_2+v8Q1WLL{G>E6|#w69bXM zK{5Qb=6l(yi!bpE?I!~eNs^|+W^ewA{qD{|t6tqb z1N(AtoRaGJll#E?SLw+aE{drdrH@2)UccOU4$NL`wnOMwknOE2n7@gW<;qA9!{=;! z_*UxEBq&N0=oYJPO&+Sn7_kz!E7(49fIO;BF{n|xqimz!R{!bF7R3D4N!K1>%Hrqt zp8MYBV&;8Q6KH5_rznOiNZq*)G_8lSLEmZpPNzYiQq!4VVwe1l*Vnxs(!xPg$ACIj zLUnaM%I7O?la=w|Ef*_w=`PmJ`m`4Vteq)qwzyJdiq#6B-mEZFf7As z#h}D;C+*PEh$o8{JWQ(xITy(-;q%Mi5+xDafr*>d+jbb+R9M5N8JE^k&TP^70lSlQ zK^w%%?LkE?=8lopsoZd@8#*LiA8NG(z_a~EV?P;u*u%IC5?I?j^TpL9Yhj--vM8hG zT{s`gqY9M-K|K@NQ_H)Ar2s9IqXFNW$W-DGi#XHvOlki+v5TZNp&)rQQlX=R>qCvt2toZA#FdKIubem7op_6o zq9Uxbr%?k<6WJD<%(;A?Vdey^R4 z{@lzFE3jIaQ@m)w$gimKbp;!i2z=O5f#{_F{n`*Zb7f0~3CA&V{|wXs1%@`dzH^*K z5H%m&0Ub^N0=pl#LD4dY<2hKp0bmSqN5!o#&FNiGRq z-<=9i(3D6DrLuCAUozY7E)SFp7+nD<{Ki!ch*j-$*rx;f?%napk4N~b4DtxE)VzPs=p1WmhvE~X?1D- zes@*280NE-GCTs^fSTZ{vf6(xCEiILBTaaO`$KnRh^4wTIrmeh&_-z(V-0=K9!>hS zmeJs#!!qGBA2mO`$hqoJkuYR7Df|by7qn)(M-1Mjk`JhT&GDB)#j_`x#6(u*@epfbQmRSCibchDeGkk%k5&nE<1d~s zr8d8rc8ifLDgyD&MwNuam?8|EgtwF1n3blKK0V9X=Zz(9+nNYpjC-%2n1JSd#99GF zLJvBwQ_!3Jdfk_t!X+s=GSnmt&0-^*FP$a08p$=u1jL*jBP(MzCa<6EuqNV+7dw4S z=y-ig!BYmuYNj45zz2`WmZ1$^LY)X%l2>xKcXQLaq}PZp$ZU{1FQ@Qc0IkS3&6bx` znT)XbX9hY|v$eW}2>fkK!%E7MNG0DAuZe+XyYPAAJUg>sNocgycsXk>%jpN86!R}H z=&}{eu1&xrJa-dnD1kzZFZL*rKsq~Z)#J{Myi_h!Gsg+SpiJF4XSTucf=s%448|Bq zCHKhbn5D@j`=^#pDh;eF^@RmEgX);gbxmB)#9OxFIU^46+Iun)Ocqd-G>v2L~|;JvxSB2d73SX*w~&;o(-z^?)os4eZz({(y<79z~|p zmt+?KUlu{)l#;H+jTWydQ-l?vtPj=btf0QaY3`B&#f;aLe8T0D)u_WpQ{wV;Q1^_8J% zUZtISvA%*JG-yZP*v^HQR&lu0hS;BArd$X+uX#tkNG^q(RM^pF z%-;<+zfZZ7z&$ZjDbm8&I z!n?t|s*XP*6nWlZ zDCwma{Y>lw;N*_u;?``&hRNq%g)}XB@Ql+7F z#vU1j(%IaNtonoTUJ=<45wZUoG%MY)>xhX?e1qn;&Kk2VTB&_p?!5dNHvRhJ-4#F0 zLtMyIKG0!*OYkcn_t4j0hg+Zk8-fP(nrzaZ;GP2KC@*$>Vda{~X4&(z6KMT8EtU!X zKt%!8$y<5S?-02yRFrwVBz7lHSD@{W8`{^OOYITyDe1q`3U|Z znaIiGo-m_mQ=G0<37^9BFKC3HBangx*r7K*g6rng5dN4M)r*zG{hO8XHFf}?NP1p- zQN-A3!lxG_lilwV0pkH%7ucjRV;SCckN7e1DLbDZOYYIyF}|6uj_m$g#pkJb?H3e> z!zHzVTW`)~@ai)S<0il2skJbN)s=2v7Lo^0YS`)$BR+#Prhwmp0C*Fu!NM?5d+xd0 zB|58ovY#iUmQ6w5gJR(}wrNDDGKA`&UNW+EwVm*`#_{KM?FeL*7uvaA1{#FMK>XSy zHDjqJa@)~*G5mY;b2*ehs>za&@|jdEDUn(pgc(K_>GiyyWwX<#%~GUMV*jL-pn!XUn$2YmSmPT!9ZK^D0ppvmS>p8A^7t(ILnW)G ze+h0{hsHGvEE390`%9i5wM1p+yvYEU&2(?6mRR@+LO-eY!EB9Yy`SG*7}U-fG=NKS zEaAdJb+-aJ1@BDto4bLcj0GD6UF2vy1t)AWuTCwaEFkN2jyBS5JX^YB$re1$s#Ya@ z{t|@A%p^Y^_;|s{G=)8mqXlhuM|3vxts~QgJYOkO*R1Bmx?x$wi)P+?Puy}~`y7|D zo_dZqeXI9m+G0+!1KG0Z;$S#a3o{V|O4kT%Q0E)|y0?3l=$=pv&GRyn;7{FqG={jI zV<*(OXR_s+_drzvnq8caHzl=4{DIuw>1`Ov%!0!^d!g>&Di3PuuL-;nR#_a&2;UID IKMwVO0Fc+dH2?qr diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub deleted file mode 100644 index 917ec7f3593..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_0.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=0 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.0.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.0.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub deleted file mode 100644 index ed8da6ce5fb..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_1.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=1 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.1.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.1.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub deleted file mode 100644 index 63d19c81fa1..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_10.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=10 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.10.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_10.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.10.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub deleted file mode 100644 index 07ec18d1115..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_11.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=11 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.11.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_11.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.11.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub deleted file mode 100644 index 01fd9c47db8..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_12.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=12 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.12.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_12.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.12.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub deleted file mode 100644 index cfe092c84cc..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_13.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=13 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.13.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_13.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.13.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub deleted file mode 100644 index b90b84b4880..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_14.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=14 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.14.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_14.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.14.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub deleted file mode 100644 index d915e7e507f..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_2.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=2 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.2.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.2.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub deleted file mode 100644 index 6ef4bac4d14..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_3.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=3 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.3.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.3.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub deleted file mode 100644 index caa5edee0c3..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_4.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=4 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.4.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.4.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub deleted file mode 100644 index 83f992a5b40..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_5.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=5 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.5.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_5.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.5.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub deleted file mode 100644 index 1004868d677..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_6.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=6 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.6.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_6.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.6.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub deleted file mode 100644 index c4ec9dcab43..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_7.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=7 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.7.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_7.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.7.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub deleted file mode 100644 index a3ddee84fe3..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_8.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=8 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.8.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_8.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.8.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub b/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub deleted file mode 100644 index a0586bcf316..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/condor_9.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=9 -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.9.log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_9.root" -use_x509userproxy = True -+MaxRuntime= 21600 -RequestCpus = 2 -max_transfer_output_mb = 15000 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.9.out" -max_retries = 3 -queue 1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/nJobs.15 b/test_ParTEdge_small2/ntuple_ttbar_had/batch/nJobs.15 deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh deleted file mode 100755 index 42aaa2a521c..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=0 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_0.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=0 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh deleted file mode 100755 index 55267311fe8..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=1 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_1.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=1 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh deleted file mode 100755 index 56416a1d124..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=10 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_10.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=10 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh deleted file mode 100755 index fa615fed3f7..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=11 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_11.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=11 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh deleted file mode 100755 index 44cfc40c172..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=12 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_12.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=12 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh deleted file mode 100755 index 769e48d9545..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=13 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_13.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=13 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh deleted file mode 100755 index c24534dc45f..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=14 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_14.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=14 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh deleted file mode 100755 index 7895b717ec6..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=2 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_2.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=2 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh deleted file mode 100755 index 8220f54d0bd..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=3 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_3.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=3 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh deleted file mode 100755 index 68c7a7fdbd2..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=4 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_4.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=4 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh deleted file mode 100755 index e91dc23770b..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=5 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_5.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=5 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh deleted file mode 100755 index 155cd380ddc..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=6 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_6.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=6 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh deleted file mode 100755 index 5c61a45263b..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=7 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_7.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=7 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh deleted file mode 100755 index a130da75eb2..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=8 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_8.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=8 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh deleted file mode 100755 index 6550b6e055d..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh +++ /dev/null @@ -1,28 +0,0 @@ - -#!/bin/sh -# -#(make sure the right shell will be used) -#$ -S /bin/sh -#$ -l site=hh -#$ -l distro=sld6 -# -#(the cpu time for this job) -#$ -l h_rt=05:55:00 -# -#(the maximum memory usage of this job) -#$ -l h_vmem=4096M -#$ -l cvmfs -#(stderr and stdout are merged together to stdout) -#$ -j y -#$ -m a -#$ -cwd -V -#( -l h_stack=1536M) #try with small stack -#$ -pe local 1 -R y -#$ -P af-cms - -export LOGDIR=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/ -export JOB=9 -export NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_9.root - -/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=9 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh b/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh deleted file mode 100755 index 9c4e1fb4cb3..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -workdir="" -if [ $SGE_CELL ] -then -workdir=`mktemp -d -t DeepNTuplesXXXXXX` -cd $workdir -workdir=$workdir"/" -fi - -exec > "$PWD/stdout.txt" 2>&1 -echo "JOBSUB::RUN job running" -trap "echo JOBSUB::FAIL job killed" SIGTERM -export OUTPUT=$workdir"ntuple_ttbar_had" -cd /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30 -eval `scramv1 runtime -sh` -export PYTHONPATH=/afs/cern.ch/user/a/ademoor/.deepntuples_scripts_tmp/:$PYTHONPATH -which cmsRun -cd - -cmsRun -n 1 "$@" outputFile=$OUTPUT -exitstatus=$? -if [ $exitstatus != 0 ] -then - echo JOBSUB::FAIL job failed with status $exitstatus -else - pwd - ls -ltr $OUTPUT*.root - if [ $SGE_CELL ] - then - cp $OUTPUT*.root $NTUPLEOUTFILEPATH - else - eoscp $OUTPUT*.root $NTUPLEOUTFILEPATH - fi - exitstatus=$? - rm -f $OUTPUT*.root - if [ $exitstatus != 0 ] - then - echo JOBSUB::FAIL job failed with status $exitstatus - else - echo JOBSUB::SUCC job ended sucessfully - fi -fi -rm -f $OUTPUT*.root -if [ $workdir ] -then -# JOB is only defined for SGE submit -cp $workdir/stdout.txt $LOGDIR/con_out.$JOB.out -rm -rf $workdir -fi -exit $exitstatus - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/condor.sub b/test_ParTEdge_small2/ntuple_ttbar_had/condor.sub deleted file mode 100644 index cc4882e027a..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/condor.sub +++ /dev/null @@ -1,13 +0,0 @@ -executable = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batchscript.sh -arguments = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/DeepNtuplizer.py inputScript=TTToHadronicTuneCP513TeVpowhegpythia8RunIISummer20UL17MiniAOD106Xmc2017realisticv6v2MINIAODSIM nJobs=15 job=$(ProcId) -log = /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.$(ProcId).log -getenv = True -environment = "NTUPLEOUTFILEPATH=/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ntuple_ttbar_had_$(ProcId).root" -use_x509userproxy = True -+MaxRuntime = 21600 -max_transfer_output_mb = 15000 -RequestCpus = 2 -transfer_output_remaps = "stdout.txt=/afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/con_out.$(ProcId).out" -max_retries = 20 -queue 15 - \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/helper b/test_ParTEdge_small2/ntuple_ttbar_had/helper deleted file mode 120000 index 5354c5419a9..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/helper +++ /dev/null @@ -1 +0,0 @@ -/tmp/ademoor/6602/ntuple_ttbar_had/batch/ \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/output b/test_ParTEdge_small2/ntuple_ttbar_had/output deleted file mode 120000 index 11e8dabeac2..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/output +++ /dev/null @@ -1 +0,0 @@ -/eos/cms/store/group/phys_btag/ParticleTransformer/JustATest/Wed_112853_test_ParTEdge_small2/ntuple_ttbar_had/output/ \ No newline at end of file diff --git a/test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh b/test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh deleted file mode 100755 index f75e55d7f86..00000000000 --- a/test_ParTEdge_small2/ntuple_ttbar_had/sge_sub.sh +++ /dev/null @@ -1,15 +0,0 @@ -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_0.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_1.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_2.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_3.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_4.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_5.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_6.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_7.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_8.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_9.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_10.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_11.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_12.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_13.sh -qsub /afs/cern.ch/work/a/ademoor/New_Tagger_Dev/CMSSW_10_6_30/src/DeepNTuples/test_ParTEdge_small2/ntuple_ttbar_had/batch/sge_14.sh From 8c3b50c53487c18a0ae01ca476724021752d9ff4 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Wed, 24 May 2023 11:12:52 +0200 Subject: [PATCH 17/21] Update autors of ntuple_pairwise.cc As the first version of the pairwise was a simple code by myself (AlexDeMoor). I also add Matteo Malucchi as an author for his important contribution to this new inputs builder --- DeepNtuplizer/src/ntuple_pairwise.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeepNtuplizer/src/ntuple_pairwise.cc b/DeepNtuplizer/src/ntuple_pairwise.cc index 947eb2db3df..6610b1b76bf 100644 --- a/DeepNtuplizer/src/ntuple_pairwise.cc +++ b/DeepNtuplizer/src/ntuple_pairwise.cc @@ -2,7 +2,7 @@ * ntuple_pairwise.cc * * Created on: 01 Sep 2022 - * Author: Alexandre De Moor + * Authors: Matteo Malucchi & Alexandre De Moor */ #include "../interface/ntuple_pairwise.h" From bd3c1372bab9046b52822ca30b0a342dd94858b1 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Tue, 30 May 2023 16:27:58 +0200 Subject: [PATCH 18/21] Update with new aux targets --- DeepNtuplizer/bin/mergeSamples.cc | 2 + DeepNtuplizer/bin/mergeSamples_parallel.cc | 2 + DeepNtuplizer/bin/printBranches.cc | 2 + DeepNtuplizer/interface/ntuple_LT.h | 105 ++++ DeepNtuplizer/interface/ntuple_content.h | 3 + DeepNtuplizer/interface/ntuple_pfCands.h | 25 + DeepNtuplizer/plugins/DeepNtuplizer.cc | 12 +- DeepNtuplizer/production/DeepNtuplizer.py | 3 +- DeepNtuplizer/production/New_UL17.cfg | 16 +- DeepNtuplizer/python/DeepNtuplizer_cfi.py | 66 +-- DeepNtuplizer/src/mergeDescriptor.cc | 2 + DeepNtuplizer/src/ntuple_LT.cc | 617 +++++++++++++++++++++ DeepNtuplizer/src/ntuple_pfCands.cc | 462 +++++++-------- 13 files changed, 1057 insertions(+), 260 deletions(-) create mode 100644 DeepNtuplizer/interface/ntuple_LT.h create mode 100644 DeepNtuplizer/src/ntuple_LT.cc diff --git a/DeepNtuplizer/bin/mergeSamples.cc b/DeepNtuplizer/bin/mergeSamples.cc index 0926dd05e06..10ddaf96447 100644 --- a/DeepNtuplizer/bin/mergeSamples.cc +++ b/DeepNtuplizer/bin/mergeSamples.cc @@ -40,6 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_LT.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pairwise.h" #include @@ -98,6 +99,7 @@ int main(int argc, char *argv[]){ std::vector branchinfos; branchinfos.push_back(new ntuple_JetInfo()); branchinfos.push_back(new ntuple_SV()); + branchinfos.push_back(new ntuple_LT()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); branchinfos.push_back(new ntuple_pairwise()); diff --git a/DeepNtuplizer/bin/mergeSamples_parallel.cc b/DeepNtuplizer/bin/mergeSamples_parallel.cc index 5413e91b12a..8c01cd0b524 100644 --- a/DeepNtuplizer/bin/mergeSamples_parallel.cc +++ b/DeepNtuplizer/bin/mergeSamples_parallel.cc @@ -40,6 +40,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_LT.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pairwise.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_FatJetInfo.h" @@ -122,6 +123,7 @@ std::vector createChains(const std::vector >& inf branchinfos.push_back(new ntuple_JetInfo()); branchinfos.push_back(new ntuple_SV()); + branchinfos.push_back(new ntuple_LT()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); branchinfos.push_back(new ntuple_pairwise()); diff --git a/DeepNtuplizer/bin/printBranches.cc b/DeepNtuplizer/bin/printBranches.cc index 49a15eb8247..c3467c794f4 100644 --- a/DeepNtuplizer/bin/printBranches.cc +++ b/DeepNtuplizer/bin/printBranches.cc @@ -2,6 +2,7 @@ #include "../interface/ntuple_JetInfo.h" #include "../interface/ntuple_SV.h" +#include "../interface/ntuple_LT.h" #include "../interface/ntuple_bTagVars.h" #include "../interface/ntuple_pfCands.h" //#include "../interface/ntuple_FatJetInfo.h" @@ -22,6 +23,7 @@ int main(int argc, char *argv[]) { std::vector branchinfos; branchinfos.push_back(new ntuple_JetInfo()); branchinfos.push_back(new ntuple_SV()); + branchinfos.push_back(new ntuple_LT()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); branchinfos.push_back(new ntuple_pairwise()); diff --git a/DeepNtuplizer/interface/ntuple_LT.h b/DeepNtuplizer/interface/ntuple_LT.h new file mode 100644 index 00000000000..958564f74b5 --- /dev/null +++ b/DeepNtuplizer/interface/ntuple_LT.h @@ -0,0 +1,105 @@ +/* + * ntuple_LT.h + * + * Created on: 28 Mai 2023 + * Author: Alexandre De Moor + */ + +#ifndef DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_LT_H_ +#define DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_LT_H_ + +#include "ntuple_content.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" + +class ntuple_LT: public ntuple_content{ + public: + + ntuple_LT():ntuple_content(),jetradius_(0.4), + n_Cpfcand_(0),n_Npfcand_(0){} + + void setJetRadius(const float& radius){jetradius_=radius;} + void getInput(const edm::ParameterSet& iConfig); + void initBranches(TTree* ); + virtual void readConfig(const edm::ParameterSet& iConfig, edm::ConsumesCollector && cc) override; + void readEvent(const edm::Event& iEvent); + void readSetup(const edm::EventSetup& iSetup); + + + //use either of these functions + + bool fillBranches(const pat::Jet &, const size_t& jetidx, const edm::View * coll=0); + + private: + + float jetradius_; + float min_candidate_pt_ = -1; + + edm::ESHandle builder; + + edm::EDGetTokenT> ltToken_; + edm::Handle> LTs; + + int n_LT_; + int n_Cpfcand_; + int n_Npfcand_; + + static constexpr size_t max_pfcand_=50; + + float LT_pt_[max_pfcand_]; + float LT_eta_[max_pfcand_]; + float LT_phi_[max_pfcand_]; + float LT_e_[max_pfcand_]; + + float LT_puppiw_[max_pfcand_]; + float LT_VTX_ass_[max_pfcand_]; + float LT_dz_[max_pfcand_]; + + float LT_BtagPf_trackEtaRel_[max_pfcand_]; + float LT_BtagPf_trackPtRel_[max_pfcand_]; + float LT_BtagPf_trackPPar_[max_pfcand_]; + float LT_BtagPf_trackDeltaR_[max_pfcand_]; + float LT_BtagPf_trackPParRatio_[max_pfcand_]; + float LT_BtagPf_trackSip3dVal_[max_pfcand_]; + float LT_BtagPf_trackSip3dSig_[max_pfcand_]; + float LT_BtagPf_trackSip2dVal_[max_pfcand_]; + float LT_BtagPf_trackSip2dSig_[max_pfcand_]; + float LT_BtagPf_trackDecayLen_[max_pfcand_]; + float LT_BtagPf_trackJetDistVal_[max_pfcand_]; + + float LT_charge_[max_pfcand_]; + float LT_chi2_[max_pfcand_]; + float LT_quality_[max_pfcand_]; + float LT_drminsv_[max_pfcand_]; + float LT_distminsvold_[max_pfcand_]; + float LT_distminsv_[max_pfcand_]; + float LT_distminsv2_[max_pfcand_]; + + float LT_nhitpixelBarrelLayer1_[max_pfcand_]; + float LT_nhitpixelBarrelLayer2_[max_pfcand_]; + float LT_nhitpixelBarrelLayer3_[max_pfcand_]; + float LT_nhitpixelBarrelLayer4_[max_pfcand_]; + float LT_nhitpixelEndcapLayer1_[max_pfcand_]; + float LT_nhitpixelEndcapLayer2_[max_pfcand_]; + float LT_numberOfValidHits_[max_pfcand_]; + float LT_numberOfValidPixelHits_[max_pfcand_]; + float LT_numberOfValidStripHits_[max_pfcand_]; + float LT_numberOfValidStripTIBHits_[max_pfcand_]; + float LT_numberOfValidStripTIDHits_[max_pfcand_]; + float LT_numberOfValidStripTOBHits_[max_pfcand_]; + float LT_numberOfValidStripTECHits_[max_pfcand_]; + + float LT_pdgID_[max_pfcand_]; + float LT_HadFrac_[max_pfcand_]; + float LT_CaloFrac_[max_pfcand_]; + + float mindrsvpfcand(const pat::PackedCandidate* pfcand); + float mindistsvpfcandold(const reco::TransientTrack track); + float mindistsvpfcand(const reco::TransientTrack track); + GlobalPoint mingpsvpfcand(const reco::TransientTrack track); + GlobalPoint gppvpfcand(const reco::TransientTrack track, GlobalVector direction, const reco::Vertex vertex); + +}; + + +#endif /* DEEPNTUPLES_DEEPNTUPLIZER_INTERFACE_NTUPLE_LT_H_ */ diff --git a/DeepNtuplizer/interface/ntuple_content.h b/DeepNtuplizer/interface/ntuple_content.h index b8c864ad7f8..3979c607c3c 100644 --- a/DeepNtuplizer/interface/ntuple_content.h +++ b/DeepNtuplizer/interface/ntuple_content.h @@ -19,6 +19,8 @@ #include "DataFormats/VertexReco/interface/Vertex.h" #include "SimDataFormats/PileupSummaryInfo/interface/PileupSummaryInfo.h" #include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" +#include "FWCore/Framework/interface/ConsumesCollector.h" +#include "FWCore/ParameterSet/interface/ParameterSet.h" #include #include #include @@ -34,6 +36,7 @@ class ntuple_content{ virtual void getInput(const edm::ParameterSet& iConfig){} virtual void initBranches(TTree* )=0; + virtual void readConfig(const edm::ParameterSet& iConfig, edm::ConsumesCollector && cc) {} virtual void readEvent(const edm::Event& iEvent)=0; virtual void readSetup(const edm::EventSetup& iSetup){} //use either of these functions diff --git a/DeepNtuplizer/interface/ntuple_pfCands.h b/DeepNtuplizer/interface/ntuple_pfCands.h index 029f1adfedf..6c21bde72f8 100644 --- a/DeepNtuplizer/interface/ntuple_pfCands.h +++ b/DeepNtuplizer/interface/ntuple_pfCands.h @@ -12,6 +12,10 @@ #include "DataFormats/PatCandidates/interface/PackedCandidate.h" #include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "DataFormats/PatCandidates/interface/PackedGenParticle.h" +#include "DataFormats/Candidate/interface/Candidate.h" +#include "DataFormats/HepMCCandidate/interface/GenParticle.h" + class ntuple_pfCands: public ntuple_content{ public: @@ -21,6 +25,7 @@ class ntuple_pfCands: public ntuple_content{ void setJetRadius(const float& radius){jetradius_=radius;} void getInput(const edm::ParameterSet& iConfig); void initBranches(TTree* ); + virtual void readConfig(const edm::ParameterSet& iConfig, edm::ConsumesCollector && cc) override; void readEvent(const edm::Event& iEvent); void readSetup(const edm::EventSetup& iSetup); @@ -36,6 +41,15 @@ class ntuple_pfCands: public ntuple_content{ edm::ESHandle builder; + edm::EDGetTokenT> ltToken_; + edm::Handle> LTs; + + edm::EDGetTokenT> packedToken_; + edm::Handle> packed; + + edm::EDGetTokenT> prunedToken_; + edm::Handle> pruned; + int n_Cpfcand_; float nCpfcand_; @@ -216,11 +230,22 @@ class ntuple_pfCands: public ntuple_content{ float Cpfcan_HadFrac_[max_pfcand_]; float Cpfcan_CaloFrac_[max_pfcand_]; + int Cpfcan_c_tag_[max_pfcand_]; + int Cpfcan_b_tag_[max_pfcand_]; + int Cpfcan_g_tag_[max_pfcand_]; + + float Cpfcan_vtx_x_[max_pfcand_]; + float Cpfcan_vtx_y_[max_pfcand_]; + float Cpfcan_vtx_z_[max_pfcand_]; + + float Cpfcan_dist_from_pv_[max_pfcand_]; + float mindrsvpfcand(const pat::PackedCandidate* pfcand); float mindistsvpfcandold(const reco::TransientTrack track); float mindistsvpfcand(const reco::TransientTrack track); GlobalPoint mingpsvpfcand(const reco::TransientTrack track); GlobalPoint gppvpfcand(const reco::TransientTrack track, GlobalVector direction, const reco::Vertex vertex); + bool containParton(const reco::Candidate *pruned_part, int pdgid); }; diff --git a/DeepNtuplizer/plugins/DeepNtuplizer.cc b/DeepNtuplizer/plugins/DeepNtuplizer.cc index b67e58cf03c..a8201c701ff 100644 --- a/DeepNtuplizer/plugins/DeepNtuplizer.cc +++ b/DeepNtuplizer/plugins/DeepNtuplizer.cc @@ -8,6 +8,7 @@ #include "../interface/ntuple_content.h" #include "../interface/ntuple_SV.h" +#include "../interface/ntuple_LT.h" #include "../interface/ntuple_JetInfo.h" #include "../interface/ntuple_pfCands.h" #include "../interface/ntuple_bTagVars.h" @@ -201,6 +202,10 @@ DeepNtuplizer::DeepNtuplizer(const edm::ParameterSet& iConfig): pfcands->setJetRadius(jetR); addModule(pfcands, "pfcands"); + ntuple_LT * LT = new ntuple_LT(); + LT->setJetRadius(jetR); + addModule(LT, "LT"); + ntuple_pairwise * pairwise = new ntuple_pairwise(); pairwise->setJetRadius(jetR); addModule(pairwise, "pairwise"); @@ -219,9 +224,10 @@ DeepNtuplizer::DeepNtuplizer(const edm::ParameterSet& iConfig): * * parse the input parameters (if any) */ - for(auto& m: modules_) - m->getInput(iConfig); - + for(auto& m: modules_){ + m->readConfig(iConfig, consumesCollector()); + m->getInput(iConfig); + } } diff --git a/DeepNtuplizer/production/DeepNtuplizer.py b/DeepNtuplizer/production/DeepNtuplizer.py index a416a6d120b..e3ebf6c5afb 100644 --- a/DeepNtuplizer/production/DeepNtuplizer.py +++ b/DeepNtuplizer/production/DeepNtuplizer.py @@ -9,8 +9,7 @@ options.register('inputScript','',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"input Script") options.register('outputFile','output',VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.string,"output File (w/o .root)") -options.register('maxEvents',5001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") -options.register('maxEvents',100001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") +options.register('maxEvents',50001,VarParsing.VarParsing.multiplicity.singleton,VarParsing.VarParsing.varType.int,"maximum events") options.register('skipEvents', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "skip N events") options.register('job', 0, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "job number") options.register('nJobs', 1, VarParsing.VarParsing.multiplicity.singleton, VarParsing.VarParsing.varType.int, "total jobs") diff --git a/DeepNtuplizer/production/New_UL17.cfg b/DeepNtuplizer/production/New_UL17.cfg index dd25fe32af2..59b65ada24b 100644 --- a/DeepNtuplizer/production/New_UL17.cfg +++ b/DeepNtuplizer/production/New_UL17.cfg @@ -1,2 +1,14 @@ -850 /TTToHadronic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_ttbar_had -850 /TTToSemiLeptonic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_ttbar_semilep +500 /TTToHadronic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v2/MINIAODSIM ntuple_ttbar_had +500 /TTToSemiLeptonic_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_ttbar_semilep + +500 /QCD_Pt_120to170_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_170to300_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_300to470_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_470to600_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_600to800_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1000_1400 gluonReduction=0.5 +500 /QCD_Pt_1400to1800_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1400_1800 gluonReduction=0.5 +500 /QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_1800_2400 gluonReduction=0.5 +500 /QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_2400_3200 gluonReduction=0.5 +500 /QCD_Pt_3200toInf_TuneCP5_13TeV_pythia8/RunIISummer20UL17MiniAODv2-106X_mc2017_realistic_v9-v1/MINIAODSIM ntuple_qcd_3200_inf gluonReduction=0.5 \ No newline at end of file diff --git a/DeepNtuplizer/python/DeepNtuplizer_cfi.py b/DeepNtuplizer/python/DeepNtuplizer_cfi.py index d9280f1ec50..fdd9c8daa15 100644 --- a/DeepNtuplizer/python/DeepNtuplizer_cfi.py +++ b/DeepNtuplizer/python/DeepNtuplizer_cfi.py @@ -1,39 +1,41 @@ import FWCore.ParameterSet.Config as cms deepntuplizer = cms.EDAnalyzer('DeepNtuplizer', - vertices = cms.InputTag("offlineSlimmedPrimaryVertices"), - secVertices = cms.InputTag("slimmedSecondaryVertices"), - jets = cms.InputTag("slimmedJetsPuppi"), - jetR = cms.double(0.4), + vertices = cms.InputTag("offlineSlimmedPrimaryVertices"), + secVertices = cms.InputTag("slimmedSecondaryVertices"), + jets = cms.InputTag("slimmedJetsPuppi"), + losttracks = cms.InputTag("lostTracks"), + packed = cms.InputTag("packedGenParticles"), + jetR = cms.double(0.4), runFatJet = cms.bool(False), eta = cms.bool(True), puppi = cms.bool(True), runDeepVertex = cms.bool(False), - pupInfo = cms.InputTag("slimmedAddPileupInfo"), - rhoInfo = cms.InputTag("fixedGridRhoFastjetAll"), - SVs = cms.InputTag("slimmedSecondaryVertices"), - LooseSVs = cms.InputTag("inclusiveCandidateSecondaryVertices"), - genJetMatchWithNu = cms.InputTag("patGenJetMatchWithNu"), - genJetMatchRecluster = cms.InputTag("patGenJetMatchRecluster"), - genJetMatchAllowDuplicates = cms.InputTag("patGenJetMatchAllowDuplicates"), - pruned = cms.InputTag("prunedGenParticles"), - fatjets = cms.InputTag('slimmedJetsAK8'), - muons = cms.InputTag("slimmedMuons"), - electrons = cms.InputTag("slimmedElectrons"), - jetPtMin = cms.double(10.0), - jetPtMax = cms.double(2000), - jetAbsEtaMin = cms.double(0.0), - jetAbsEtaMax = cms.double(5.0), - gluonReduction = cms.double(0.0), - tagInfoName = cms.string('deepNN'), - tagInfoFName = cms.string('pfBoostedDoubleSVAK8'), - bDiscriminators = cms.vstring(), - qgtagger = cms.string("QGTagger"), - candidates = cms.InputTag("packedPFCandidates"), - minCandidatePt = cms.double(0.95), - - useHerwigCompatible=cms.bool(False), - isHerwig=cms.bool(False), - useOffsets=cms.bool(True), - applySelection=cms.bool(True) - ) + pupInfo = cms.InputTag("slimmedAddPileupInfo"), + rhoInfo = cms.InputTag("fixedGridRhoFastjetAll"), + SVs = cms.InputTag("slimmedSecondaryVertices"), + LooseSVs = cms.InputTag("inclusiveCandidateSecondaryVertices"), + genJetMatchWithNu = cms.InputTag("patGenJetMatchWithNu"), + genJetMatchRecluster = cms.InputTag("patGenJetMatchRecluster"), + genJetMatchAllowDuplicates = cms.InputTag("patGenJetMatchAllowDuplicates"), + pruned = cms.InputTag("prunedGenParticles"), + fatjets = cms.InputTag('slimmedJetsAK8'), + muons = cms.InputTag("slimmedMuons"), + electrons = cms.InputTag("slimmedElectrons"), + jetPtMin = cms.double(10.0), + jetPtMax = cms.double(2000), + jetAbsEtaMin = cms.double(0.0), + jetAbsEtaMax = cms.double(5.0), + gluonReduction = cms.double(0.0), + tagInfoName = cms.string('deepNN'), + tagInfoFName = cms.string('pfBoostedDoubleSVAK8'), + bDiscriminators = cms.vstring(), + qgtagger = cms.string("QGTagger"), + candidates = cms.InputTag("packedPFCandidates"), + minCandidatePt = cms.double(0.95), + + useHerwigCompatible=cms.bool(False), + isHerwig=cms.bool(False), + useOffsets=cms.bool(True), + applySelection=cms.bool(True) +) diff --git a/DeepNtuplizer/src/mergeDescriptor.cc b/DeepNtuplizer/src/mergeDescriptor.cc index 072686cfee2..374c53e94fb 100644 --- a/DeepNtuplizer/src/mergeDescriptor.cc +++ b/DeepNtuplizer/src/mergeDescriptor.cc @@ -24,6 +24,7 @@ #include "DeepNTuples/DeepNtuplizer/interface/ntuple_JetInfo.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pfCands.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_SV.h" +#include "DeepNTuples/DeepNtuplizer/interface/ntuple_LT.h" #include "DeepNTuples/DeepNtuplizer/interface/ntuple_pairwise.h" //#include "DeepNTuples/DeepNtuplizer/interface/ntuple_GraphB.h" @@ -131,6 +132,7 @@ std::vector mergeDescriptor::createChains( branchinfos.push_back(new ntuple_JetInfo()); // branchinfos.push_back(new ntuple_FatJetInfo()); branchinfos.push_back(new ntuple_SV()); + branchinfos.push_back(new ntuple_LT()); branchinfos.push_back(new ntuple_bTagVars()); branchinfos.push_back(new ntuple_pfCands()); branchinfos.push_back(new ntuple_pairwise()); diff --git a/DeepNtuplizer/src/ntuple_LT.cc b/DeepNtuplizer/src/ntuple_LT.cc new file mode 100644 index 00000000000..44fe63c7ad0 --- /dev/null +++ b/DeepNtuplizer/src/ntuple_LT.cc @@ -0,0 +1,617 @@ +/* + * ntuple_LT.cc + * + * Created on: 28 Mai 2023 + * Author: Alexandre De Moor + */ + + +#include "../interface/ntuple_LT.h" +#include "DataFormats/PatCandidates/interface/PackedCandidate.h" +#include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h" +#include "../interface/sorting_modules.h" + + +#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h" +#include "TrackingTools/IPTools/interface/IPTools.h" +#include "TrackingTools/Records/interface/TransientTrackRecord.h" +#include "RecoVertex/VertexTools/interface/VertexDistance3D.h" +#include "TVector3.h" + +#include "DataFormats/GeometrySurface/interface/Line.h" +#include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h" +#include "TrackingTools/GeomPropagators/interface/AnalyticalTrajectoryExtrapolatorToLine.h" +#include "TrackingTools/GeomPropagators/interface/AnalyticalImpactPointExtrapolator.h" +#include "DataFormats/GeometryCommonDetAlgo/interface/Measurement1D.h" +#include "RecoVertex/VertexTools/interface/VertexDistanceXY.h" +#include "RecoVertex/VertexPrimitives/interface/ConvertToFromReco.h" + +class TrackInfoBuilder{ +public: + TrackInfoBuilder(edm::ESHandle & build): + builder(build), + trackMomentum_(0), + trackEta_(0), + trackEtaRel_(0), + trackPtRel_(0), + trackPPar_(0), + trackDeltaR_(0), + trackPtRatio_(0), + trackPParRatio_(0), + trackSip2dVal_(0), + trackSip2dSig_(0), + trackSip3dVal_(0), + trackSip3dSig_(0), + + trackJetDecayLen_(0), + trackJetDistVal_(0), + trackJetDistSig_(0), + ttrack_(0) + { + + + } + + void buildTrackInfo(const pat::PackedCandidate* PackedCandidate_ ,const math::XYZVector& jetDir, GlobalVector refjetdirection, const reco::Vertex & pv){ + TVector3 jetDir3(jetDir.x(),jetDir.y(),jetDir.z()); + if(!PackedCandidate_->hasTrackDetails()) { + TVector3 trackMom3( + PackedCandidate_->momentum().x(), + PackedCandidate_->momentum().y(), + PackedCandidate_->momentum().z() + ); + trackMomentum_=PackedCandidate_->p(); + trackEta_= PackedCandidate_->eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, PackedCandidate_->momentum()); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(PackedCandidate_->momentum()); + trackDeltaR_=reco::deltaR(PackedCandidate_->momentum(), jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / PackedCandidate_->p(); + trackPParRatio_=jetDir.Dot(PackedCandidate_->momentum()) / PackedCandidate_->p(); + trackSip2dVal_=0.; + trackSip2dSig_=0.; + trackSip3dVal_=0.; + trackSip3dSig_=0.; + trackJetDecayLen_=0.; + trackJetDistVal_=0.; + trackJetDistSig_=0.; + return; + } + + const reco::Track & PseudoTrack = PackedCandidate_->pseudoTrack(); + + reco::TransientTrack transientTrack; + transientTrack=builder->build(PseudoTrack); + Measurement1D meas_ip2d=IPTools::signedTransverseImpactParameter(transientTrack, refjetdirection, pv).second; + Measurement1D meas_ip3d=IPTools::signedImpactParameter3D(transientTrack, refjetdirection, pv).second; + Measurement1D jetdist=IPTools::jetTrackDistance(transientTrack, refjetdirection, pv).second; + Measurement1D decayl = IPTools::signedDecayLength3D(transientTrack, refjetdirection, pv).second; + math::XYZVector trackMom = PseudoTrack.momentum(); + double trackMag = std::sqrt(trackMom.Mag2()); + TVector3 trackMom3(trackMom.x(),trackMom.y(),trackMom.z()); + + + trackMomentum_=std::sqrt(trackMom.Mag2()); + trackEta_= trackMom.Eta(); + trackEtaRel_=reco::btau::etaRel(jetDir, trackMom); + trackPtRel_=trackMom3.Perp(jetDir3); + trackPPar_=jetDir.Dot(trackMom); + trackDeltaR_=reco::deltaR(trackMom, jetDir); + trackPtRatio_=trackMom3.Perp(jetDir3) / trackMag; + trackPParRatio_=jetDir.Dot(trackMom) / trackMag; + + trackSip2dVal_=(meas_ip2d.value()); + trackSip2dSig_=(meas_ip2d.significance()); + trackSip3dVal_=(meas_ip3d.value()); + trackSip3dSig_=meas_ip3d.significance(); + + trackJetDecayLen_= decayl.value(); + trackJetDistVal_= jetdist.value(); + trackJetDistSig_= jetdist.significance(); + + ttrack_ = transientTrack; + + } + + const float& getTrackDeltaR() const {return trackDeltaR_;} + const float& getTrackEta() const {return trackEta_;} + const float& getTrackEtaRel() const {return trackEtaRel_;} + const float& getTrackJetDecayLen() const {return trackJetDecayLen_;} + const float& getTrackJetDistSig() const {return trackJetDistSig_;} + const float& getTrackJetDistVal() const {return trackJetDistVal_;} + const float& getTrackMomentum() const {return trackMomentum_;} + const float& getTrackPPar() const {return trackPPar_;} + const float& getTrackPParRatio() const {return trackPParRatio_;} + const float& getTrackPtRatio() const {return trackPtRatio_;} + const float& getTrackPtRel() const {return trackPtRel_;} + const float& getTrackSip2dSig() const {return trackSip2dSig_;} + const float& getTrackSip2dVal() const {return trackSip2dVal_;} + const float& getTrackSip3dSig() const {return trackSip3dSig_;} + const float& getTrackSip3dVal() const {return trackSip3dVal_;} + const reco::TransientTrack getTTrack() const {return ttrack_;} + +private: + + edm::ESHandle& builder; + + float trackMomentum_; + float trackEta_; + float trackEtaRel_; + float trackPtRel_; + float trackPPar_; + float trackDeltaR_; + float trackPtRatio_; + float trackPParRatio_; + float trackSip2dVal_; + float trackSip2dSig_; + float trackSip3dVal_; + float trackSip3dSig_; + + float trackJetDecayLen_; + float trackJetDistVal_; + float trackJetDistSig_; + reco::TransientTrack ttrack_; + +}; + +void ntuple_LT::readConfig(const edm::ParameterSet& iConfig, edm::ConsumesCollector&& cc) { + ltToken_ = cc.consumes>(iConfig.getParameter("losttracks")); +} + +void ntuple_LT::readSetup(const edm::EventSetup& iSetup){ + iSetup.get().get("TransientTrackBuilder", builder); +} + +void ntuple_LT::getInput(const edm::ParameterSet& iConfig){ + min_candidate_pt_ = (iConfig.getParameter("minCandidatePt")); +} + +void ntuple_LT::initBranches(TTree* tree){ + + addBranch(tree,"n_LT", &n_LT_,"n_LT_/I"); + + addBranch(tree,"LT_pt", <_pt_,"LT_pt_[n_Cpfcand_]/F"); + addBranch(tree,"LT_eta", <_eta_,"LT_eta_[n_Cpfcand_]/F"); + addBranch(tree,"LT_phi", <_phi_,"LT_phi_[n_Cpfcand_]/F"); + addBranch(tree,"LT_e", <_e_,"LT_e_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_puppiw",<_puppiw_,"LT_puppiw_[n_Cpfcand_]/F"); + addBranch(tree,"LT_dz",<_dz_,"LT_dz_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_drminsv",<_drminsv_,"LT_drminsv_[n_Cpfcand_]/F"); + addBranch(tree,"LT_distminsvold",<_distminsvold_,"LT_distminsvold_[n_Cpfcand_]/F"); + addBranch(tree,"LT_distminsv",<_distminsv_,"LT_distminsv_[n_Cpfcand_]/F"); + addBranch(tree,"LT_distminsv2",<_distminsv2_,"LT_distminsv2_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_BtagPf_trackEtaRel",<_BtagPf_trackEtaRel_,"LT_BtagPf_trackEtaRel_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackPtRel",<_BtagPf_trackPtRel_,"LT_BtagPf_trackPtRel_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackPPar",<_BtagPf_trackPPar_,"LT_BtagPf_trackPPar_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackDeltaR",<_BtagPf_trackDeltaR_,"LT_BtagPf_trackDeltaR_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackPParRatio",<_BtagPf_trackPParRatio_,"LT_BtagPf_trackPParRatio[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackSip3dVal",<_BtagPf_trackSip3dVal_,"LT_BtagPf_trackSip3dVal_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackSip3dSig",<_BtagPf_trackSip3dSig_,"LT_BtagPf_trackSip3dSig_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackSip2dVal",<_BtagPf_trackSip2dVal_,"LT_BtagPf_trackSip2dVal_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackSip2dSig",<_BtagPf_trackSip2dSig_,"LT_BtagPf_trackSip2dSig_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackDecayLen",<_BtagPf_trackDecayLen_,"LT_BtagPf_trackDecayLen_[n_Cpfcand_]/F"); + addBranch(tree,"LT_BtagPf_trackJetDistVal",<_BtagPf_trackJetDistVal_,"LT_BtagPf_trackJetDistVal_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_charge",<_charge_,"LT_charge_[n_Cpfcand_]/F"); + addBranch(tree,"LT_chi2",<_chi2_,"LT_chi2_[n_Cpfcand_]/F"); + addBranch(tree,"LT_quality",<_quality_,"LT_quality_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_nhitpixelBarrelLayer1",<_nhitpixelBarrelLayer1_,"LT_nhitpixelBarrelLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"LT_nhitpixelBarrelLayer2",<_nhitpixelBarrelLayer2_,"LT_nhitpixelBarrelLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"LT_nhitpixelBarrelLayer3",<_nhitpixelBarrelLayer3_,"LT_nhitpixelBarrelLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"LT_nhitpixelBarrelLayer4",<_nhitpixelBarrelLayer4_,"LT_nhitpixelBarrelLayer4_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_nhitpixelEndcapLayer1",<_nhitpixelEndcapLayer1_,"LT_nhitpixelEndcapLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"LT_nhitpixelEndcapLayer2",<_nhitpixelEndcapLayer2_,"LT_nhitpixelEndcapLayer2_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_numberOfValidHits",<_numberOfValidHits_,"LT_numberOfValidHits_[n_Cpfcand_]/F"); + addBranch(tree,"LT_numberOfValidPixelHits",<_numberOfValidPixelHits_,"LT_numberOfValidPixelHits_[n_Cpfcand_]/F"); + addBranch(tree,"LT_numberOfValidStripHits",<_numberOfValidStripHits_,"LT_numberOfValidStripHits_[n_Cpfcand_]/F"); + addBranch(tree,"LT_numberOfValidStripTIBHits",<_numberOfValidStripTIBHits_,"LT_numberOfValidStripTIBHits_[n_Cpfcand_]/F"); + addBranch(tree,"LT_numberOfValidStripTIDHits",<_numberOfValidStripTIDHits_,"LT_numberOfValidStripTIDHits_[n_Cpfcand_]/F"); + addBranch(tree,"LT_numberOfValidStripTOBHits",<_numberOfValidStripTOBHits_,"LT_numberOfValidStripTOBHits_[n_Cpfcand_]/F"); + addBranch(tree,"LT_numberOfValidStripTECHits",<_numberOfValidStripTECHits_,"LT_numberOfValidStripTECHits_[n_Cpfcand_]/F"); + + addBranch(tree,"LT_pdgID",<_pdgID_,"LT_pdgID_[n_Cpfcand_]/F"); + addBranch(tree,"LT_HadFrac",<_HadFrac_,"LT_HadFrac_[n_Cpfcand_]/F"); + addBranch(tree,"LT_CaloFrac",<_CaloFrac_,"LT_CaloFrac_[n_Cpfcand_]/F"); + +} + +void ntuple_LT::readEvent(const edm::Event& iEvent){ + + iEvent.getByToken(ltToken_, LTs); + n_Npfcand_=0; + n_Cpfcand_=0; + +} + + + +//use either of these functions + +bool ntuple_LT::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ + + math::XYZVector jetDir = jet.momentum().Unit(); + GlobalVector jetRefTrackDir(jet.px(),jet.py(),jet.pz()); + const reco::Vertex & pv = vertices()->at(0); + + std::vector > sortedcharged; + + const float jet_uncorr_pt=jet.correctedJet("Uncorrected").pt(); + const float jet_uncorr_e=jet.correctedJet("Uncorrected").energy(); + + TrackInfoBuilder trackinfo(builder); + int n_lts = 0; + + std::vector cpfPtrs; + + for (size_t i = 0; i < LTs->size(); ++i) { + auto cand = LTs->ptrAt(i); + if (reco::deltaR(*cand, jet) < jetradius_) { + const auto *PackedCandidate = dynamic_cast(&(*cand)); + if(PackedCandidate){ + if(PackedCandidate->pt() < min_candidate_pt_) continue; + trackinfo.buildTrackInfo(PackedCandidate,jetDir,jetRefTrackDir,pv); + sortedcharged.push_back(sorting::sortingClass + (i, trackinfo.getTrackSip2dSig(), + -mindrsvpfcand(PackedCandidate), PackedCandidate->pt()/jet_uncorr_pt)); + cpfPtrs.push_back(cand); + n_lts++; + } + } + } + + std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); + n_Cpfcand_ = std::min(sortedcharged.size(),max_pfcand_); + + std::vector sortedchargedindices; + sortedchargedindices=sorting::invertSortingVector(sortedcharged); + + for (unsigned int i = 0; i < (unsigned int)n_Cpfcand_; i++){ + const auto *PackedCandidate_ = dynamic_cast(&(*cpfPtrs.at(i))); + //const auto& PackedCandidate_=s.get(); + if(!PackedCandidate_) continue; + if(PackedCandidate_->pt() < min_candidate_pt_) continue; + + // get the dr with the closest sv + float drminpfcandsv_ = mindrsvpfcand(PackedCandidate_); + + float pdgid_; + if (abs(PackedCandidate_->pdgId()) == 11 and PackedCandidate_->charge() != 0){ + pdgid_ = 0.0; + } + else if (abs(PackedCandidate_->pdgId()) == 13 and PackedCandidate_->charge() != 0){ + pdgid_ = 1.0; + } + else if (abs(PackedCandidate_->pdgId()) == 22 and PackedCandidate_->charge() == 0){ + pdgid_ = 2.0; + } + else if (abs(PackedCandidate_->pdgId()) != 22 and PackedCandidate_->charge() == 0 and abs(PackedCandidate_->pdgId()) != 1 and abs(PackedCandidate_->pdgId()) != 2){ + pdgid_ = 3.0; + } + else if (abs(PackedCandidate_->pdgId()) != 11 and abs(PackedCandidate_->pdgId()) != 13 and PackedCandidate_->charge() != 0){ + pdgid_ = 4.0; + } + else if (PackedCandidate_->charge() == 0 and abs(PackedCandidate_->pdgId()) == 1){ + pdgid_ = 5.0; + } + else if (PackedCandidate_->charge() == 0 and abs(PackedCandidate_->pdgId()) == 2){ + pdgid_ = 6.0; + } + else{ + pdgid_ = 7.0; + } + + /// This might include more than PF candidates, e.g. Reco muons and could + /// be double counting. Needs to be checked.!!!! + /// + /// Split to charged and neutral candidates + if(PackedCandidate_->charge()!=0 ){ + + size_t fillntupleentry= sortedchargedindices.at(i); + if(fillntupleentry>=max_pfcand_) continue; + + LT_pt_[fillntupleentry] = PackedCandidate_->pt(); + LT_eta_[fillntupleentry] = PackedCandidate_->eta(); + LT_phi_[fillntupleentry] = PackedCandidate_->phi(); + LT_e_[fillntupleentry] = PackedCandidate_->energy(); + + LT_puppiw_[fillntupleentry] = PackedCandidate_->puppiWeight(); + LT_dz_[fillntupleentry] = PackedCandidate_->dz(); + LT_VTX_ass_[fillntupleentry] = PackedCandidate_->pvAssociationQuality(); + + float tempdontopt=PackedCandidate_->vx(); + tempdontopt++; + + LT_pdgID_[fillntupleentry] = pdgid_; + LT_CaloFrac_[fillntupleentry] = PackedCandidate_->caloFraction(); + LT_HadFrac_[fillntupleentry] = PackedCandidate_->hcalFraction(); + + + trackinfo.buildTrackInfo(PackedCandidate_,jetDir,jetRefTrackDir,pv); + + const reco::TransientTrack ttrack = trackinfo.getTTrack(); + float mindistsvold = mindistsvpfcandold(ttrack); + + LT_distminsvold_[fillntupleentry] = mindistsvold; + + float mindistsv = mindistsvpfcand(ttrack); + float eng_mindistsv = std::log(std::fabs(mindistsv)+1.0); + + LT_distminsv_[fillntupleentry] = mindistsv; + LT_distminsv2_[fillntupleentry] = eng_mindistsv; + + LT_BtagPf_trackEtaRel_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackEtaRel(), 0,-5,15); + LT_BtagPf_trackPtRel_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackPtRel(), 0,-1,4); + LT_BtagPf_trackPPar_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackPPar(), 0,-1e5,1e5 ); + LT_BtagPf_trackDeltaR_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackDeltaR(), 0,-5,5 ); + LT_BtagPf_trackPParRatio_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackPParRatio(),0,-10,100); + LT_BtagPf_trackSip3dVal_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip3dVal(), 0, -1,1e5 ); + LT_BtagPf_trackSip3dSig_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip3dSig(), 0, -1,4e4 ); + LT_BtagPf_trackSip2dVal_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip2dVal(), 0, -1,70 ); + LT_BtagPf_trackSip2dSig_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackSip2dSig(), 0, -1,4e4 ); + LT_BtagPf_trackDecayLen_[fillntupleentry] =trackinfo.getTrackJetDecayLen(); + LT_BtagPf_trackJetDistVal_[fillntupleentry] =catchInfsAndBound(trackinfo.getTrackJetDistVal(),0,-20,1 ); + + float cand_charge_ = PackedCandidate_->charge(); + LT_charge_[fillntupleentry] = cand_charge_; + + LT_drminsv_[fillntupleentry] = catchInfsAndBound(drminpfcandsv_,0,-0.4,0,-0.4); + + //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h + //get track associated to a jet constituent + const reco::Track *track_ptr = nullptr; + auto pf_candidate = dynamic_cast(PackedCandidate_); + auto packed_candidate = dynamic_cast(PackedCandidate_); + if(pf_candidate){ + track_ptr = pf_candidate->bestTrack(); //trackRef was sometimes null + }else if(packed_candidate && packed_candidate->hasTrackDetails()){//if PackedCandidate does not have TrackDetails this gives an Exception because unpackCovariance might be called for pseudoTrack/bestTrack + track_ptr = &(packed_candidate->pseudoTrack()); + } + //get hit pattern information + if(track_ptr){ + const reco::HitPattern &p = track_ptr->hitPattern(); + //Tracker per layer + //Pixel barrel + int Cpfcan_nhitpixelBarrelLayer1 = 0; + int Cpfcan_nhitpixelBarrelLayer2 = 0; + int Cpfcan_nhitpixelBarrelLayer3 = 0; + int Cpfcan_nhitpixelBarrelLayer4 = 0; + //Pixel Endcap + int Cpfcan_nhitpixelEndcapLayer1 = 0; + int Cpfcan_nhitpixelEndcapLayer2 = 0; + // loop over the hits of the track. + //const static unsigned short LayerOffset = 3; + //const static unsigned short LayerMask = 0xF; + for(int nh = 0; nh < p.numberOfAllHits(reco::HitPattern::TRACK_HITS); nh++){ + uint32_t hit = p.getHitPattern(reco::HitPattern::TRACK_HITS, nh); + if(p.validHitFilter(hit)){// if the hit is valid + //Pixel Barrel // it is in pixel barrel + if(p.pixelBarrelHitFilter(hit)){ + //std::cout << "valid hit found in pixel Barrel layer " << p.getLayer(hit) << std::endl; + //if(p.getLayer(hit)==1){ + // std::cout<< (hit >> LayerOffset) << " " << ((hit >> LayerOffset) & LayerMask) << std::endl; + //} + if(p.getLayer(hit)==1) Cpfcan_nhitpixelBarrelLayer1 = Cpfcan_nhitpixelBarrelLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitpixelBarrelLayer2 = Cpfcan_nhitpixelBarrelLayer2+1; + if(p.getLayer(hit)==3) Cpfcan_nhitpixelBarrelLayer3 = Cpfcan_nhitpixelBarrelLayer3+1; + if(p.getLayer(hit)==4) Cpfcan_nhitpixelBarrelLayer4 = Cpfcan_nhitpixelBarrelLayer4+1; + } + //Pixel Endcap + if(p.pixelEndcapHitFilter(hit)){ + //std::cout << "valid hit found in pixel Endcap layer " << p.getLayer(hit) << std::endl; + if(p.getLayer(hit)==1) Cpfcan_nhitpixelEndcapLayer1 = Cpfcan_nhitpixelEndcapLayer1+1; + if(p.getLayer(hit)==2) Cpfcan_nhitpixelEndcapLayer2 = Cpfcan_nhitpixelEndcapLayer2+1; + } + } + } + //Pixel Barrel + LT_nhitpixelBarrelLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer1,-1,0,100,0) : -1; + LT_nhitpixelBarrelLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer2,-1,0,100,0) : -1; + LT_nhitpixelBarrelLayer3_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer3,-1,0,100,0) : -1; + LT_nhitpixelBarrelLayer4_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer4,-1,0,100,0) : -1; + + LT_nhitpixelEndcapLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelEndcapHits()) ? catchInfsAndBound(Cpfcan_nhitpixelEndcapLayer1,-1,0,100,0) : -1; + LT_nhitpixelEndcapLayer2_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelEndcapHits()) ? catchInfsAndBound(Cpfcan_nhitpixelEndcapLayer2,-1,0,100,0) : -1; + //Tracker all layers together + //Valid hits + LT_numberOfValidHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidHits(),-1,0,100,0) : -1; + LT_numberOfValidPixelHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidPixelHits(),-1,0,100,0) : -1; + LT_numberOfValidStripHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripHits(),-1,0,100,0) : -1; + LT_numberOfValidStripTIBHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIBHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTIBHits(),-1,0,100,0) : -1; + LT_numberOfValidStripTIDHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTIDHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTIDHits(),-1,0,100,0) : -1; + LT_numberOfValidStripTOBHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTOBHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTOBHits(),-1,0,100,0) : -1; + LT_numberOfValidStripTECHits_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidStripTECHits()) ? catchInfsAndBound(track_ptr->hitPattern().numberOfValidStripTECHits(),-1,0,100,0) : -1; + } + else{ + //Tracker per layer + //Pixel barrel + LT_nhitpixelBarrelLayer1_[fillntupleentry] = -1; + LT_nhitpixelBarrelLayer2_[fillntupleentry] = -1; + LT_nhitpixelBarrelLayer3_[fillntupleentry] = -1; + LT_nhitpixelBarrelLayer4_[fillntupleentry] = -1; + //Pixel Endcap + LT_nhitpixelEndcapLayer1_[fillntupleentry] = -1; + LT_nhitpixelEndcapLayer2_[fillntupleentry] = -1; + + LT_numberOfValidHits_[fillntupleentry] = -1; + LT_numberOfValidPixelHits_[fillntupleentry] = -1; + LT_numberOfValidStripHits_[fillntupleentry] = -1; + LT_numberOfValidStripTIBHits_[fillntupleentry] = -1; + LT_numberOfValidStripTIDHits_[fillntupleentry] = -1; + LT_numberOfValidStripTOBHits_[fillntupleentry] = -1; + LT_numberOfValidStripTECHits_[fillntupleentry] = -1; + } + } + } + + n_LT_ = n_lts; + + return true; +} + + +float ntuple_LT::mindrsvpfcand(const pat::PackedCandidate* pfcand) { + + float mindr_ = jetradius_; + for (unsigned int i=0; isize(); ++i) { + if(!pfcand) continue; + //if(!svs.at(i)) continue; + float tempdr_ = reco::deltaR(secVertices()->at(i),*pfcand); + if (tempdr_size(); ++i) { + if (!track.isValid()) {continue;} + reco::Vertex::CovarianceMatrix csv; secVertices()->at(i).fillVertexCovariance(csv); + reco::Vertex vertex(secVertices()->at(i).vertex(), csv); + if (!vertex.isValid()) {continue;} + + GlobalVector direction(secVertices()->at(i).px(),secVertices()->at(i).py(),secVertices()->at(i).pz()); + + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (!tsos.isValid()) {continue;} + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (!result.first) {continue;} + + GlobalPoint impactPoint = tsos.globalPosition(); + GlobalVector IPVec(impactPoint.x() - vertex.x(), impactPoint.y() - vertex.y(), impactPoint.z() - vertex.z()); + double prod = IPVec.dot(direction); + double sign = (prod >= 0) ? 1. : -1.; + + if(result.second.value() < mindist_){ + out_dist = sign * result.second.value(); + mindist_ = result.second.value(); + } + } + return out_dist; +} + +GlobalPoint ntuple_LT::mingpsvpfcand(const reco::TransientTrack track) { + + float mindist_ = 999.999; + GlobalPoint out_dist(0.0,0.0,0.0); + GlobalPoint pca; + for (unsigned int i=0; isize(); ++i) { + if (!track.isValid()) {continue;} + + reco::Vertex::CovarianceMatrix csv; secVertices()->at(i).fillVertexCovariance(csv); + reco::Vertex vertex(secVertices()->at(i).vertex(), csv); + if (!vertex.isValid()) {continue;} + + GlobalVector direction(secVertices()->at(i).px(),secVertices()->at(i).py(),secVertices()->at(i).pz()); + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (!tsos.isValid()) {continue;} + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (!result.first) {continue;} + + pca = tsos.globalPosition(); + + if(result.second.value() < mindist_){ + out_dist = pca; + mindist_ = result.second.value(); + } + } + return out_dist; +} + +GlobalPoint ntuple_LT::gppvpfcand(const reco::TransientTrack track, const GlobalVector direction, const reco::Vertex vertex) { + + float mindist_ = 999.999; + float dist = 0.; + GlobalPoint out_dist(0.0,0.0,0.0); + GlobalPoint pca; + if ((track.isValid()) && (vertex.isValid())){ + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (tsos.isValid()) { + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (result.first) { + pca = tsos.globalPosition(); + } + } + } + out_dist = pca; + return out_dist; +} + +float ntuple_LT::mindistsvpfcand(const reco::TransientTrack track) { + + float mindist_ = 999.999; + float out_dist = 0.0; + for (unsigned int i=0; isize(); ++i) { + if (!track.isValid()) {continue;} + reco::Vertex::CovarianceMatrix csv; secVertices()->at(i).fillVertexCovariance(csv); + reco::Vertex vertex(secVertices()->at(i).vertex(), csv); + if (!vertex.isValid()) {continue;} + + GlobalVector direction(secVertices()->at(i).px(),secVertices()->at(i).py(),secVertices()->at(i).pz()); + + + AnalyticalImpactPointExtrapolator extrapolator(track.field()); + TrajectoryStateOnSurface tsos = extrapolator.extrapolate(track.impactPointState(), RecoVertex::convertPos(vertex.position())); + + VertexDistance3D dist; + + if (!tsos.isValid()) {continue;} + GlobalPoint refPoint = tsos.globalPosition(); + GlobalError refPointErr = tsos.cartesianError().position(); + GlobalPoint vertexPosition = RecoVertex::convertPos(vertex.position()); + GlobalError vertexPositionErr = RecoVertex::convertError(vertex.error()); + + std::pair result(true, dist.distance(VertexState(vertexPosition, vertexPositionErr), VertexState(refPoint, refPointErr))); + if (!result.first) {continue;} + + GlobalPoint impactPoint = tsos.globalPosition(); + GlobalVector IPVec(impactPoint.x() - vertex.x(), impactPoint.y() - vertex.y(), impactPoint.z() - vertex.z()); + double prod = IPVec.dot(direction); + double sign = (prod >= 0) ? 1. : -1.; + + if(result.second.value() < mindist_){ + float inv_dist = 1.0 / (sign * result.second.value() + 0.001); + out_dist = inv_dist; + mindist_ = result.second.value(); + } + } + return out_dist; +} diff --git a/DeepNtuplizer/src/ntuple_pfCands.cc b/DeepNtuplizer/src/ntuple_pfCands.cc index d3ccf0c64c8..2178e23d104 100644 --- a/DeepNtuplizer/src/ntuple_pfCands.cc +++ b/DeepNtuplizer/src/ntuple_pfCands.cc @@ -154,6 +154,12 @@ class TrackInfoBuilder{ }; +void ntuple_pfCands::readConfig(const edm::ParameterSet& iConfig, edm::ConsumesCollector&& cc) { + ltToken_ = cc.consumes>(iConfig.getParameter("losttracks")); + packedToken_ = cc.consumes>(iConfig.getParameter("packed")); + prunedToken_ = cc.consumes>(iConfig.getParameter("pruned")); +} + void ntuple_pfCands::readSetup(const edm::EventSetup& iSetup){ iSetup.get().get("TransientTrackBuilder", builder); } @@ -164,204 +170,190 @@ void ntuple_pfCands::getInput(const edm::ParameterSet& iConfig){ void ntuple_pfCands::initBranches(TTree* tree){ - addBranch(tree,"n_Cpfcand", &n_Cpfcand_,"n_Cpfcand_/I"); - - addBranch(tree,"nCpfcand", &nCpfcand_,"nCpfcand_/F"); - - addBranch(tree,"Cpfcan_pt", &Cpfcan_pt_,"Cpfcan_pt_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_eta", &Cpfcan_eta_,"Cpfcan_eta_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_phi", &Cpfcan_phi_,"Cpfcan_phi_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_ptrel", &Cpfcan_ptrel_,"Cpfcan_ptrel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_e", &Cpfcan_e_,"Cpfcan_e_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_erel", &Cpfcan_erel_,"Cpfcan_erel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_phirel",&Cpfcan_phirel_,"Cpfcan_phirel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_etarel",&Cpfcan_etarel_,"Cpfcan_etarel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_deltaR",&Cpfcan_deltaR_,"Cpfcan_deltaR_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_puppiw",&Cpfcan_puppiw_,"Cpfcan_puppiw_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dxy",&Cpfcan_dxy_,"Cpfcan_dxy_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_dxyerrinv",&Cpfcan_dxyerrinv_,"Cpfcan_dxyerrinv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dxysig",&Cpfcan_dxysig_,"Cpfcan_dxysig_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_dz",&Cpfcan_dz_,"Cpfcan_dz_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_VTX_ass",&Cpfcan_VTX_ass_,"Cpfcan_VTX_ass_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_fromPV",&Cpfcan_fromPV_,"Cpfcan_fromPV_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_drminsv",&Cpfcan_drminsv_,"Cpfcan_drminsv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_distminsvold",&Cpfcan_distminsvold_,"Cpfcan_distminsvold_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_distminsv",&Cpfcan_distminsv_,"Cpfcan_distminsv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_distminsv2",&Cpfcan_distminsv2_,"Cpfcan_distminsv2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dxminsv",&Cpfcan_dxminsv_,"Cpfcan_dxminsv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dyminsv",&Cpfcan_dyminsv_,"Cpfcan_dyminsv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dzminsv",&Cpfcan_dzminsv_,"Cpfcan_dzminsv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dxpv",&Cpfcan_dxpv_,"Cpfcan_dxpv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dypv",&Cpfcan_dypv_,"Cpfcan_dypv_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_dzpv",&Cpfcan_dzpv_,"Cpfcan_dzpv_[n_Cpfcand_]/F"); - - //commented ones don't work - /**///addBranch(tree,"Cpfcan_vertexChi2",&Cpfcan_vertexChi2_,"Cpfcan_vertexChi2_[n_Cpfcand_]/f"); - /**///addBranch(tree,"Cpfcan_vertexNdof",&Cpfcan_vertexNdof_,"Cpfcan_vertexNdof_[n_Cpfcand_]/f"); - /**///addBranch(tree,"Cpfcan_vertexNormalizedChi2",&Cpfcan_vertexNormalizedChi2_,"Cpfcan_vertexNormalizedChi2_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_vertex_rho",&Cpfcan_vertex_rho_,"Cpfcan_vertex_rho_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_vertex_phirel",&Cpfcan_vertex_phirel_,"Cpfcan_vertex_phirel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_vertex_etarel",&Cpfcan_vertex_etarel_,"Cpfcan_vertex_etarel_[n_Cpfcand_]/F"); - /**///addBranch(tree,"Cpfcan_vertexRef_mass",&Cpfcan_vertexRef_mass_,"Cpfcan_vertexRef_mass_[n_Cpfcand_]/f"); - - /* - addBranch(tree,"Cpfcan_dptdpt",&Cpfcan_dptdpt_,"Cpfcan_dptdpt_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_detadeta",&Cpfcan_detadeta_,"Cpfcan_detadeta_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dphidphi",&Cpfcan_dphidphi_,"Cpfcan_dphidphi_[n_Cpfcand_]/f"); - - - addBranch(tree,"Cpfcan_dxydxy",&Cpfcan_dxydxy_,"Cpfcan_dxydxy_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dzdz",&Cpfcan_dzdz_,"Cpfcan_dzdz_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dxydz",&Cpfcan_dxydz_,"Cpfcan_dxydz_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dphidxy",&Cpfcan_dphidxy_,"Cpfcan_dphidxy_[n_Cpfcand_]/f"); - addBranch(tree,"Cpfcan_dlambdadz",&Cpfcan_dlambdadz_,"Cpfcan_dlambdadz_[n_Cpfcand_]/f"); - */ - - - - addBranch(tree,"Cpfcan_BtagPf_trackMomentum",&Cpfcan_BtagPf_trackMomentum_,"Cpfcan_BtagPf_trackMomentum_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackEta",&Cpfcan_BtagPf_trackEta_,"Cpfcan_BtagPf_trackEta_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackEtaRel",&Cpfcan_BtagPf_trackEtaRel_,"Cpfcan_BtagPf_trackEtaRel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackPtRel",&Cpfcan_BtagPf_trackPtRel_,"Cpfcan_BtagPf_trackPtRel_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackPPar",&Cpfcan_BtagPf_trackPPar_,"Cpfcan_BtagPf_trackPPar_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackDeltaR",&Cpfcan_BtagPf_trackDeltaR_,"Cpfcan_BtagPf_trackDeltaR_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackPtRatio",&Cpfcan_BtagPf_trackPtRatio_,"Cpfcan_BtagPf_trackPtRatio_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackPParRatio",&Cpfcan_BtagPf_trackPParRatio_,"Cpfcan_BtagPf_trackPParRatio[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackSip3dVal",&Cpfcan_BtagPf_trackSip3dVal_,"Cpfcan_BtagPf_trackSip3dVal_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackSip3dSig",&Cpfcan_BtagPf_trackSip3dSig_,"Cpfcan_BtagPf_trackSip3dSig_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackSip2dVal",&Cpfcan_BtagPf_trackSip2dVal_,"Cpfcan_BtagPf_trackSip2dVal_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackSip2dSig",&Cpfcan_BtagPf_trackSip2dSig_,"Cpfcan_BtagPf_trackSip2dSig_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackDecayLen",&Cpfcan_BtagPf_trackDecayLen_,"Cpfcan_BtagPf_trackDecayLen_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackJetDistVal",&Cpfcan_BtagPf_trackJetDistVal_,"Cpfcan_BtagPf_trackJetDistVal_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_BtagPf_trackJetDistSig",&Cpfcan_BtagPf_trackJetDistSig_,"Cpfcan_BtagPf_trackJetDistSig_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_isMu",&Cpfcan_isMu_,"Cpfcan_isMu_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_isEl",&Cpfcan_isEl_,"Cpfcan_isEl_[n_Cpfcand_]/F"); - // did not give integers !! - addBranch(tree,"Cpfcan_charge",&Cpfcan_charge_,"Cpfcan_charge_[n_Cpfcand_]/F"); - - //in16 conversion broken - addBranch(tree,"Cpfcan_lostInnerHits",&Cpfcan_lostInnerHits_,"Cpfcan_lostInnerHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfPixelHits",&Cpfcan_numberOfPixelHits_,"Cpfcan_numberOfPixelHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_chi2",&Cpfcan_chi2_,"Cpfcan_chi2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_quality",&Cpfcan_quality_,"Cpfcan_quality_[n_Cpfcand_]/F"); - //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h - //Tracker per layer - //Pixel barrel - addBranch(tree,"Cpfcan_nhitpixelBarrelLayer1",&Cpfcan_nhitpixelBarrelLayer1_,"Cpfcan_nhitpixelBarrelLayer1_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitpixelBarrelLayer2",&Cpfcan_nhitpixelBarrelLayer2_,"Cpfcan_nhitpixelBarrelLayer2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitpixelBarrelLayer3",&Cpfcan_nhitpixelBarrelLayer3_,"Cpfcan_nhitpixelBarrelLayer3_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitpixelBarrelLayer4",&Cpfcan_nhitpixelBarrelLayer4_,"Cpfcan_nhitpixelBarrelLayer4_[n_Cpfcand_]/F"); - //Pixel Endcap - addBranch(tree,"Cpfcan_nhitpixelEndcapLayer1",&Cpfcan_nhitpixelEndcapLayer1_,"Cpfcan_nhitpixelEndcapLayer1_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitpixelEndcapLayer2",&Cpfcan_nhitpixelEndcapLayer2_,"Cpfcan_nhitpixelEndcapLayer2_[n_Cpfcand_]/F"); - //Strip TIB - addBranch(tree,"Cpfcan_nhitstripTIBLayer1",&Cpfcan_nhitstripTIBLayer1_,"Cpfcan_nhitstripTIBLayer1_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTIBLayer2",&Cpfcan_nhitstripTIBLayer2_,"Cpfcan_nhitstripTIBLayer2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTIBLayer3",&Cpfcan_nhitstripTIBLayer3_,"Cpfcan_nhitstripTIBLayer3_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTIBLayer4",&Cpfcan_nhitstripTIBLayer4_,"Cpfcan_nhitstripTIBLayer4_[n_Cpfcand_]/F"); - //Strip TID - addBranch(tree,"Cpfcan_nhitstripTIDLayer1",&Cpfcan_nhitstripTIDLayer1_,"Cpfcan_nhitstripTIDLayer1_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTIDLayer2",&Cpfcan_nhitstripTIDLayer2_,"Cpfcan_nhitstripTIDLayer2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTIDLayer3",&Cpfcan_nhitstripTIDLayer3_,"Cpfcan_nhitstripTIDLayer3_[n_Cpfcand_]/F"); - //Strip TOB - addBranch(tree,"Cpfcan_nhitstripTOBLayer1",&Cpfcan_nhitstripTOBLayer1_,"Cpfcan_nhitstripTOBLayer1_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTOBLayer2",&Cpfcan_nhitstripTOBLayer2_,"Cpfcan_nhitstripTOBLayer2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTOBLayer3",&Cpfcan_nhitstripTOBLayer3_,"Cpfcan_nhitstripTOBLayer3_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTOBLayer4",&Cpfcan_nhitstripTOBLayer4_,"Cpfcan_nhitstripTOBLayer4_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTOBLayer5",&Cpfcan_nhitstripTOBLayer5_,"Cpfcan_nhitstripTOBLayer5_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTOBLayer6",&Cpfcan_nhitstripTOBLayer6_,"Cpfcan_nhitstripTOBLayer6_[n_Cpfcand_]/F"); - //Strip TEC - addBranch(tree,"Cpfcan_nhitstripTECLayer1",&Cpfcan_nhitstripTECLayer1_,"Cpfcan_nhitstripTECLayer1_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer2",&Cpfcan_nhitstripTECLayer2_,"Cpfcan_nhitstripTECLayer2_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer3",&Cpfcan_nhitstripTECLayer3_,"Cpfcan_nhitstripTECLayer3_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer4",&Cpfcan_nhitstripTECLayer4_,"Cpfcan_nhitstripTECLayer4_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer5",&Cpfcan_nhitstripTECLayer5_,"Cpfcan_nhitstripTECLayer5_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer6",&Cpfcan_nhitstripTECLayer6_,"Cpfcan_nhitstripTECLayer6_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer7",&Cpfcan_nhitstripTECLayer7_,"Cpfcan_nhitstripTECLayer7_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer8",&Cpfcan_nhitstripTECLayer8_,"Cpfcan_nhitstripTECLayer8_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_nhitstripTECLayer9",&Cpfcan_nhitstripTECLayer9_,"Cpfcan_nhitstripTECLayer9_[n_Cpfcand_]/F"); - //Tracker all layers together - //Valid hits - addBranch(tree,"Cpfcan_numberOfValidHits",&Cpfcan_numberOfValidHits_,"Cpfcan_numberOfValidHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidTrackerHits",&Cpfcan_numberOfValidTrackerHits_,"Cpfcan_numberOfValidTrackerHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidPixelHits",&Cpfcan_numberOfValidPixelHits_,"Cpfcan_numberOfValidPixelHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidPixelBarrelHits",&Cpfcan_numberOfValidPixelBarrelHits_,"Cpfcan_numberOfValidPixelBarrelHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidPixelEndcapHits",&Cpfcan_numberOfValidPixelEndcapHits_,"Cpfcan_numberOfValidPixelEndcapHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidStripHits",&Cpfcan_numberOfValidStripHits_,"Cpfcan_numberOfValidStripHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidStripTIBHits",&Cpfcan_numberOfValidStripTIBHits_,"Cpfcan_numberOfValidStripTIBHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidStripTIDHits",&Cpfcan_numberOfValidStripTIDHits_,"Cpfcan_numberOfValidStripTIDHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidStripTOBHits",&Cpfcan_numberOfValidStripTOBHits_,"Cpfcan_numberOfValidStripTOBHits_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_numberOfValidStripTECHits",&Cpfcan_numberOfValidStripTECHits_,"Cpfcan_numberOfValidStripTECHits_[n_Cpfcand_]/F"); - //LayersWithMeasuremen - addBranch(tree,"Cpfcan_trackerLayersWithMeasurementOld",&Cpfcan_trackerLayersWithMeasurementOld_,"Cpfcan_trackerLayersWithMeasurementOld_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_trackerLayersWithMeasurement",&Cpfcan_trackerLayersWithMeasurement_,"Cpfcan_trackerLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelLayersWithMeasurementOld",&Cpfcan_pixelLayersWithMeasurementOld_,"Cpfcan_pixelLayersWithMeasurementOld_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelLayersWithMeasurement",&Cpfcan_pixelLayersWithMeasurement_,"Cpfcan_pixelLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripLayersWithMeasurement",&Cpfcan_stripLayersWithMeasurement_,"Cpfcan_stripLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelBarrelLayersWithMeasurement",&Cpfcan_pixelBarrelLayersWithMeasurement_,"Cpfcan_pixelBarrelLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelEndcapLayersWithMeasurement",&Cpfcan_pixelEndcapLayersWithMeasurement_,"Cpfcan_pixelEndcapLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTIBLayersWithMeasurement",&Cpfcan_stripTIBLayersWithMeasurement_,"Cpfcan_stripTIBLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTIDLayersWithMeasurement",&Cpfcan_stripTIDLayersWithMeasurement_,"Cpfcan_stripTIDLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTOBLayersWithMeasurement",&Cpfcan_stripTOBLayersWithMeasurement_,"Cpfcan_stripTOBLayersWithMeasurement_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTECLayersWithMeasurement",&Cpfcan_stripTECLayersWithMeasurement_,"Cpfcan_stripTECLayersWithMeasurement_[n_Cpfcand_]/F"); - //Null - addBranch(tree,"Cpfcan_trackerLayersNull",&Cpfcan_trackerLayersNull_,"Cpfcan_trackerLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelLayersNull",&Cpfcan_pixelLayersNull_,"Cpfcan_pixelLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripLayersNull",&Cpfcan_stripLayersNull_,"Cpfcan_stripLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelBarrelLayersNull",&Cpfcan_pixelBarrelLayersNull_,"Cpfcan_pixelBarrelLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_pixelEndcapLayersNull",&Cpfcan_pixelEndcapLayersNull_,"Cpfcan_pixelEndcapLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTIBLayersNull",&Cpfcan_stripTIBLayersNull_,"Cpfcan_stripTIBLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTIDLayersNull",&Cpfcan_stripTIDLayersNull_,"Cpfcan_stripTIDLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTOBLayersNull",&Cpfcan_stripTOBLayersNull_,"Cpfcan_stripTOBLayersNull_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_stripTECLayersNull",&Cpfcan_stripTECLayersNull_,"Cpfcan_stripTECLayersNull_[n_Cpfcand_]/F"); - - //Neutral Pf candidates - addBranch(tree,"n_Npfcand", &n_Npfcand_,"n_Npfcand_/I"); - addBranch(tree,"nNpfcand", &nNpfcand_,"nNpfcand/F"); - - addBranch(tree,"Npfcan_pt", &Npfcan_pt_,"Npfcan_pt_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_eta", &Npfcan_eta_,"Npfcan_eta_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_phi", &Npfcan_phi_,"Npfcan_phi_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_ptrel", &Npfcan_ptrel_,"Npfcan_ptrel_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_e", &Npfcan_e_,"Npfcan_e_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_erel", &Npfcan_erel_,"Npfcan_erel_[n_Npfcand_]/F"); - - addBranch(tree,"Npfcan_puppiw", &Npfcan_puppiw_,"Npfcan_puppiw_[n_Npfcand_]/F"); - - - addBranch(tree,"Npfcan_phirel",&Npfcan_phirel_,"Npfcan_phirel_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_etarel",&Npfcan_etarel_,"Npfcan_etarel_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_deltaR",&Npfcan_deltaR_,"Npfcan_deltaR_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_isGamma",&Npfcan_isGamma_,"Npfcan_isGamma_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_HadFrac",&Npfcan_HadFrac_,"Npfcan_HadFrac_[n_Npfcand_]/F"); - addBranch(tree,"Npfcan_drminsv",&Npfcan_drminsv_,"Npfcan_drminsv_[n_Npfcand_]/F"); - - addBranch(tree,"Npfcan_pdgID",&Npfcan_pdgID_,"Npfcan_pdgID_[n_Npfcand_]/F"); - addBranch(tree,"Cpfcan_pdgID",&Cpfcan_pdgID_,"Cpfcan_pdgID_[n_Cpfcand_]/F"); - - addBranch(tree,"Cpfcan_HadFrac",&Cpfcan_HadFrac_,"Cpfcan_HadFrac_[n_Cpfcand_]/F"); - addBranch(tree,"Cpfcan_CaloFrac",&Cpfcan_CaloFrac_,"Cpfcan_CaloFrac_[n_Cpfcand_]/F"); + addBranch(tree,"n_Cpfcand", &n_Cpfcand_,"n_Cpfcand_/I"); + + addBranch(tree,"nCpfcand", &nCpfcand_,"nCpfcand_/F"); + + addBranch(tree,"Cpfcan_pt", &Cpfcan_pt_,"Cpfcan_pt_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_eta", &Cpfcan_eta_,"Cpfcan_eta_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_phi", &Cpfcan_phi_,"Cpfcan_phi_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_ptrel", &Cpfcan_ptrel_,"Cpfcan_ptrel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_e", &Cpfcan_e_,"Cpfcan_e_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_erel", &Cpfcan_erel_,"Cpfcan_erel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_phirel",&Cpfcan_phirel_,"Cpfcan_phirel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_etarel",&Cpfcan_etarel_,"Cpfcan_etarel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_deltaR",&Cpfcan_deltaR_,"Cpfcan_deltaR_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_puppiw",&Cpfcan_puppiw_,"Cpfcan_puppiw_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxy",&Cpfcan_dxy_,"Cpfcan_dxy_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_dxyerrinv",&Cpfcan_dxyerrinv_,"Cpfcan_dxyerrinv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxysig",&Cpfcan_dxysig_,"Cpfcan_dxysig_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dz",&Cpfcan_dz_,"Cpfcan_dz_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_VTX_ass",&Cpfcan_VTX_ass_,"Cpfcan_VTX_ass_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_fromPV",&Cpfcan_fromPV_,"Cpfcan_fromPV_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_drminsv",&Cpfcan_drminsv_,"Cpfcan_drminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_distminsvold",&Cpfcan_distminsvold_,"Cpfcan_distminsvold_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_distminsv",&Cpfcan_distminsv_,"Cpfcan_distminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_distminsv2",&Cpfcan_distminsv2_,"Cpfcan_distminsv2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxminsv",&Cpfcan_dxminsv_,"Cpfcan_dxminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dyminsv",&Cpfcan_dyminsv_,"Cpfcan_dyminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dzminsv",&Cpfcan_dzminsv_,"Cpfcan_dzminsv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dxpv",&Cpfcan_dxpv_,"Cpfcan_dxpv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dypv",&Cpfcan_dypv_,"Cpfcan_dypv_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_dzpv",&Cpfcan_dzpv_,"Cpfcan_dzpv_[n_Cpfcand_]/F"); + + //commented ones don't work + addBranch(tree,"Cpfcan_vertex_rho",&Cpfcan_vertex_rho_,"Cpfcan_vertex_rho_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_vertex_phirel",&Cpfcan_vertex_phirel_,"Cpfcan_vertex_phirel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_vertex_etarel",&Cpfcan_vertex_etarel_,"Cpfcan_vertex_etarel_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_BtagPf_trackMomentum",&Cpfcan_BtagPf_trackMomentum_,"Cpfcan_BtagPf_trackMomentum_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackEta",&Cpfcan_BtagPf_trackEta_,"Cpfcan_BtagPf_trackEta_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackEtaRel",&Cpfcan_BtagPf_trackEtaRel_,"Cpfcan_BtagPf_trackEtaRel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPtRel",&Cpfcan_BtagPf_trackPtRel_,"Cpfcan_BtagPf_trackPtRel_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPPar",&Cpfcan_BtagPf_trackPPar_,"Cpfcan_BtagPf_trackPPar_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackDeltaR",&Cpfcan_BtagPf_trackDeltaR_,"Cpfcan_BtagPf_trackDeltaR_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPtRatio",&Cpfcan_BtagPf_trackPtRatio_,"Cpfcan_BtagPf_trackPtRatio_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackPParRatio",&Cpfcan_BtagPf_trackPParRatio_,"Cpfcan_BtagPf_trackPParRatio[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip3dVal",&Cpfcan_BtagPf_trackSip3dVal_,"Cpfcan_BtagPf_trackSip3dVal_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip3dSig",&Cpfcan_BtagPf_trackSip3dSig_,"Cpfcan_BtagPf_trackSip3dSig_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip2dVal",&Cpfcan_BtagPf_trackSip2dVal_,"Cpfcan_BtagPf_trackSip2dVal_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackSip2dSig",&Cpfcan_BtagPf_trackSip2dSig_,"Cpfcan_BtagPf_trackSip2dSig_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackDecayLen",&Cpfcan_BtagPf_trackDecayLen_,"Cpfcan_BtagPf_trackDecayLen_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackJetDistVal",&Cpfcan_BtagPf_trackJetDistVal_,"Cpfcan_BtagPf_trackJetDistVal_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_BtagPf_trackJetDistSig",&Cpfcan_BtagPf_trackJetDistSig_,"Cpfcan_BtagPf_trackJetDistSig_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_isMu",&Cpfcan_isMu_,"Cpfcan_isMu_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_isEl",&Cpfcan_isEl_,"Cpfcan_isEl_[n_Cpfcand_]/F"); + // did not give integers !! + addBranch(tree,"Cpfcan_charge",&Cpfcan_charge_,"Cpfcan_charge_[n_Cpfcand_]/F"); + + //in16 conversion broken + addBranch(tree,"Cpfcan_lostInnerHits",&Cpfcan_lostInnerHits_,"Cpfcan_lostInnerHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfPixelHits",&Cpfcan_numberOfPixelHits_,"Cpfcan_numberOfPixelHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_chi2",&Cpfcan_chi2_,"Cpfcan_chi2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_quality",&Cpfcan_quality_,"Cpfcan_quality_[n_Cpfcand_]/F"); + //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h + //Tracker per layer + //Pixel barrel + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer1",&Cpfcan_nhitpixelBarrelLayer1_,"Cpfcan_nhitpixelBarrelLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer2",&Cpfcan_nhitpixelBarrelLayer2_,"Cpfcan_nhitpixelBarrelLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer3",&Cpfcan_nhitpixelBarrelLayer3_,"Cpfcan_nhitpixelBarrelLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelBarrelLayer4",&Cpfcan_nhitpixelBarrelLayer4_,"Cpfcan_nhitpixelBarrelLayer4_[n_Cpfcand_]/F"); + //Pixel Endcap + addBranch(tree,"Cpfcan_nhitpixelEndcapLayer1",&Cpfcan_nhitpixelEndcapLayer1_,"Cpfcan_nhitpixelEndcapLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitpixelEndcapLayer2",&Cpfcan_nhitpixelEndcapLayer2_,"Cpfcan_nhitpixelEndcapLayer2_[n_Cpfcand_]/F"); + //Strip TIB + addBranch(tree,"Cpfcan_nhitstripTIBLayer1",&Cpfcan_nhitstripTIBLayer1_,"Cpfcan_nhitstripTIBLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIBLayer2",&Cpfcan_nhitstripTIBLayer2_,"Cpfcan_nhitstripTIBLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIBLayer3",&Cpfcan_nhitstripTIBLayer3_,"Cpfcan_nhitstripTIBLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIBLayer4",&Cpfcan_nhitstripTIBLayer4_,"Cpfcan_nhitstripTIBLayer4_[n_Cpfcand_]/F"); + //Strip TID + addBranch(tree,"Cpfcan_nhitstripTIDLayer1",&Cpfcan_nhitstripTIDLayer1_,"Cpfcan_nhitstripTIDLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIDLayer2",&Cpfcan_nhitstripTIDLayer2_,"Cpfcan_nhitstripTIDLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTIDLayer3",&Cpfcan_nhitstripTIDLayer3_,"Cpfcan_nhitstripTIDLayer3_[n_Cpfcand_]/F"); + //Strip TOB + addBranch(tree,"Cpfcan_nhitstripTOBLayer1",&Cpfcan_nhitstripTOBLayer1_,"Cpfcan_nhitstripTOBLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer2",&Cpfcan_nhitstripTOBLayer2_,"Cpfcan_nhitstripTOBLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer3",&Cpfcan_nhitstripTOBLayer3_,"Cpfcan_nhitstripTOBLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer4",&Cpfcan_nhitstripTOBLayer4_,"Cpfcan_nhitstripTOBLayer4_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer5",&Cpfcan_nhitstripTOBLayer5_,"Cpfcan_nhitstripTOBLayer5_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTOBLayer6",&Cpfcan_nhitstripTOBLayer6_,"Cpfcan_nhitstripTOBLayer6_[n_Cpfcand_]/F"); + //Strip TEC + addBranch(tree,"Cpfcan_nhitstripTECLayer1",&Cpfcan_nhitstripTECLayer1_,"Cpfcan_nhitstripTECLayer1_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer2",&Cpfcan_nhitstripTECLayer2_,"Cpfcan_nhitstripTECLayer2_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer3",&Cpfcan_nhitstripTECLayer3_,"Cpfcan_nhitstripTECLayer3_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer4",&Cpfcan_nhitstripTECLayer4_,"Cpfcan_nhitstripTECLayer4_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer5",&Cpfcan_nhitstripTECLayer5_,"Cpfcan_nhitstripTECLayer5_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer6",&Cpfcan_nhitstripTECLayer6_,"Cpfcan_nhitstripTECLayer6_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer7",&Cpfcan_nhitstripTECLayer7_,"Cpfcan_nhitstripTECLayer7_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer8",&Cpfcan_nhitstripTECLayer8_,"Cpfcan_nhitstripTECLayer8_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_nhitstripTECLayer9",&Cpfcan_nhitstripTECLayer9_,"Cpfcan_nhitstripTECLayer9_[n_Cpfcand_]/F"); + //Tracker all layers together + //Valid hits + addBranch(tree,"Cpfcan_numberOfValidHits",&Cpfcan_numberOfValidHits_,"Cpfcan_numberOfValidHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidTrackerHits",&Cpfcan_numberOfValidTrackerHits_,"Cpfcan_numberOfValidTrackerHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidPixelHits",&Cpfcan_numberOfValidPixelHits_,"Cpfcan_numberOfValidPixelHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidPixelBarrelHits",&Cpfcan_numberOfValidPixelBarrelHits_,"Cpfcan_numberOfValidPixelBarrelHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidPixelEndcapHits",&Cpfcan_numberOfValidPixelEndcapHits_,"Cpfcan_numberOfValidPixelEndcapHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripHits",&Cpfcan_numberOfValidStripHits_,"Cpfcan_numberOfValidStripHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTIBHits",&Cpfcan_numberOfValidStripTIBHits_,"Cpfcan_numberOfValidStripTIBHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTIDHits",&Cpfcan_numberOfValidStripTIDHits_,"Cpfcan_numberOfValidStripTIDHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTOBHits",&Cpfcan_numberOfValidStripTOBHits_,"Cpfcan_numberOfValidStripTOBHits_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_numberOfValidStripTECHits",&Cpfcan_numberOfValidStripTECHits_,"Cpfcan_numberOfValidStripTECHits_[n_Cpfcand_]/F"); + //LayersWithMeasuremen + addBranch(tree,"Cpfcan_trackerLayersWithMeasurementOld",&Cpfcan_trackerLayersWithMeasurementOld_,"Cpfcan_trackerLayersWithMeasurementOld_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_trackerLayersWithMeasurement",&Cpfcan_trackerLayersWithMeasurement_,"Cpfcan_trackerLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelLayersWithMeasurementOld",&Cpfcan_pixelLayersWithMeasurementOld_,"Cpfcan_pixelLayersWithMeasurementOld_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelLayersWithMeasurement",&Cpfcan_pixelLayersWithMeasurement_,"Cpfcan_pixelLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripLayersWithMeasurement",&Cpfcan_stripLayersWithMeasurement_,"Cpfcan_stripLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelBarrelLayersWithMeasurement",&Cpfcan_pixelBarrelLayersWithMeasurement_,"Cpfcan_pixelBarrelLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelEndcapLayersWithMeasurement",&Cpfcan_pixelEndcapLayersWithMeasurement_,"Cpfcan_pixelEndcapLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIBLayersWithMeasurement",&Cpfcan_stripTIBLayersWithMeasurement_,"Cpfcan_stripTIBLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIDLayersWithMeasurement",&Cpfcan_stripTIDLayersWithMeasurement_,"Cpfcan_stripTIDLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTOBLayersWithMeasurement",&Cpfcan_stripTOBLayersWithMeasurement_,"Cpfcan_stripTOBLayersWithMeasurement_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTECLayersWithMeasurement",&Cpfcan_stripTECLayersWithMeasurement_,"Cpfcan_stripTECLayersWithMeasurement_[n_Cpfcand_]/F"); + //Null + addBranch(tree,"Cpfcan_trackerLayersNull",&Cpfcan_trackerLayersNull_,"Cpfcan_trackerLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelLayersNull",&Cpfcan_pixelLayersNull_,"Cpfcan_pixelLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripLayersNull",&Cpfcan_stripLayersNull_,"Cpfcan_stripLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelBarrelLayersNull",&Cpfcan_pixelBarrelLayersNull_,"Cpfcan_pixelBarrelLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_pixelEndcapLayersNull",&Cpfcan_pixelEndcapLayersNull_,"Cpfcan_pixelEndcapLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIBLayersNull",&Cpfcan_stripTIBLayersNull_,"Cpfcan_stripTIBLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTIDLayersNull",&Cpfcan_stripTIDLayersNull_,"Cpfcan_stripTIDLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTOBLayersNull",&Cpfcan_stripTOBLayersNull_,"Cpfcan_stripTOBLayersNull_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_stripTECLayersNull",&Cpfcan_stripTECLayersNull_,"Cpfcan_stripTECLayersNull_[n_Cpfcand_]/F"); + + //Neutral Pf candidates + addBranch(tree,"n_Npfcand", &n_Npfcand_,"n_Npfcand_/I"); + addBranch(tree,"nNpfcand", &nNpfcand_,"nNpfcand/F"); + + addBranch(tree,"Npfcan_pt", &Npfcan_pt_,"Npfcan_pt_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_eta", &Npfcan_eta_,"Npfcan_eta_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_phi", &Npfcan_phi_,"Npfcan_phi_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_ptrel", &Npfcan_ptrel_,"Npfcan_ptrel_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_e", &Npfcan_e_,"Npfcan_e_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_erel", &Npfcan_erel_,"Npfcan_erel_[n_Npfcand_]/F"); + + addBranch(tree,"Npfcan_puppiw", &Npfcan_puppiw_,"Npfcan_puppiw_[n_Npfcand_]/F"); + + addBranch(tree,"Npfcan_phirel",&Npfcan_phirel_,"Npfcan_phirel_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_etarel",&Npfcan_etarel_,"Npfcan_etarel_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_deltaR",&Npfcan_deltaR_,"Npfcan_deltaR_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_isGamma",&Npfcan_isGamma_,"Npfcan_isGamma_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_HadFrac",&Npfcan_HadFrac_,"Npfcan_HadFrac_[n_Npfcand_]/F"); + addBranch(tree,"Npfcan_drminsv",&Npfcan_drminsv_,"Npfcan_drminsv_[n_Npfcand_]/F"); + + addBranch(tree,"Npfcan_pdgID",&Npfcan_pdgID_,"Npfcan_pdgID_[n_Npfcand_]/F"); + addBranch(tree,"Cpfcan_pdgID",&Cpfcan_pdgID_,"Cpfcan_pdgID_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_HadFrac",&Cpfcan_HadFrac_,"Cpfcan_HadFrac_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_CaloFrac",&Cpfcan_CaloFrac_,"Cpfcan_CaloFrac_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_b_tag",&Cpfcan_b_tag_,"Cpfcan_b_tag_[n_Cpfcand_]/I"); + addBranch(tree,"Cpfcan_c_tag",&Cpfcan_c_tag_,"Cpfcan_c_tag_[n_Cpfcand_]/I"); + addBranch(tree,"Cpfcan_g_tag",&Cpfcan_g_tag_,"Cpfcan_g_tag_[n_Cpfcand_]/I"); + + addBranch(tree,"Cpfcan_vtx_x",&Cpfcan_vtx_x_,"Cpfcan_vtx_x_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_vtx_y",&Cpfcan_vtx_y_,"Cpfcan_vtx_y_[n_Cpfcand_]/F"); + addBranch(tree,"Cpfcan_vtx_z",&Cpfcan_vtx_z_,"Cpfcan_vtx_z_[n_Cpfcand_]/F"); + + addBranch(tree,"Cpfcan_dist_from_pv",&Cpfcan_dist_from_pv_,"Cpfcan_dist_from_pv_[n_Cpfcand_]/F"); } void ntuple_pfCands::readEvent(const edm::Event& iEvent){ - + iEvent.getByToken(ltToken_, LTs); + iEvent.getByToken(packedToken_, packed); + iEvent.getByToken(prunedToken_, pruned); n_Npfcand_=0; n_Cpfcand_=0; } - - //use either of these functions - bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, const edm::View * coll){ float etasign = 1.; if (jet.eta()<0) etasign =-1.; @@ -369,7 +361,9 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co GlobalVector jetRefTrackDir(jet.px(),jet.py(),jet.pz()); const reco::Vertex & pv = vertices()->at(0); - + for(const auto &pruned_part : *pruned){ + if(pruned_part.pdgId()!=2212) { + const auto pv_0 = pruned_part.vertex(); std::vector > sortedcharged, sortedneutrals; @@ -394,14 +388,15 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co } } } - std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); + + std::sort(sortedcharged.begin(),sortedcharged.end(),sorting::sortingClass::compareByABCInv); n_Cpfcand_ = std::min(sortedcharged.size(),max_pfcand_); std::sort(sortedneutrals.begin(),sortedneutrals.end(),sorting::sortingClass::compareByABCInv); std::vector sortedchargedindices,sortedneutralsindices; n_Npfcand_ = std::min(sortedneutrals.size(),max_pfcand_); - sortedchargedindices=sorting::invertSortingVector(sortedcharged); - sortedneutralsindices=sorting::invertSortingVector(sortedneutrals); + sortedchargedindices=sorting::invertSortingVector(sortedcharged); + sortedneutralsindices=sorting::invertSortingVector(sortedneutrals); for (unsigned int i = 0; i < jet.numberOfDaughters(); i++){ const pat::PackedCandidate* PackedCandidate_ = dynamic_cast(jet.daughter(i)); @@ -447,6 +442,46 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co size_t fillntupleentry= sortedchargedindices.at(i); if(fillntupleentry>=max_pfcand_) continue; + int b_tag=-1, c_tag=-1, g_tag=-1; + float dist_from_pv=-1; + float vtx_x=0, vtx_y=0, vtx_z=0; + + double dR_min=pow10(6); + + const reco::Candidate * pruned_part_match=nullptr; + for (const auto &packed_part : *packed){ + double dR = reco::deltaR(*PackedCandidate_, packed_part); + double dpt = std::abs((PackedCandidate_->pt()- packed_part.pt())/PackedCandidate_->pt()); + + if(dR<0.01 && dpt<0.1 && PackedCandidate_->charge()==packed_part.charge()){ + if (dRvertex()).mag2()); + + vtx_x=pruned_part_match->vertex().x(); + vtx_y=pruned_part_match->vertex().y(); + vtx_z=pruned_part_match->vertex().z(); + } + + Cpfcan_c_tag_[fillntupleentry] = c_tag; + Cpfcan_b_tag_[fillntupleentry] = b_tag; + Cpfcan_g_tag_[fillntupleentry] = g_tag; + + Cpfcan_vtx_x_[fillntupleentry] = vtx_x; + Cpfcan_vtx_y_[fillntupleentry] = vtx_y; + Cpfcan_vtx_z_[fillntupleentry] = vtx_z; + + Cpfcan_dist_from_pv_[fillntupleentry] = dist_from_pv; + Cpfcan_pdgID_[fillntupleentry] = pdgid_; Cpfcan_pt_[fillntupleentry] = PackedCandidate_->pt(); Cpfcan_eta_[fillntupleentry] = PackedCandidate_->eta(); @@ -538,14 +573,11 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Cpfcan_charge_[fillntupleentry] = cand_charge_; Cpfcan_lostInnerHits_[fillntupleentry] = catchInfs(PackedCandidate_->lostInnerHits(),2); Cpfcan_numberOfPixelHits_[fillntupleentry] = catchInfs(PackedCandidate_->numberOfPixelHits(),-1); - //std::cout << PackedCandidate_->lostInnerHits()<< " inner hits " <numberOfPixelHits()<< " Pixel hits + masked " <pixelLayersWithMeasurement()<< " Pixel hits " <hasTrackDetails() ? \ - catchInfsAndBound(PackedCandidate_->pseudoTrack().normalizedChi2(),300,-1,300) : -1; - //for some reason this returns the quality enum not a mask. - Cpfcan_quality_[fillntupleentry] = PackedCandidate_->hasTrackDetails() ? - PackedCandidate_->pseudoTrack().qualityMask() : (1 << reco::TrackBase::loose); + Cpfcan_chi2_[fillntupleentry] = PackedCandidate_->hasTrackDetails() ? \ + catchInfsAndBound(PackedCandidate_->pseudoTrack().normalizedChi2(),300,-1,300) : -1; + //for some reason this returns the quality enum not a mask. + Cpfcan_quality_[fillntupleentry] = PackedCandidate_->hasTrackDetails() ? + PackedCandidate_->pseudoTrack().qualityMask() : (1 << reco::TrackBase::loose); Cpfcan_drminsv_[fillntupleentry] = catchInfsAndBound(drminpfcandsv_,0,-0.4,0,-0.4); //hit pattern variables, as defined here https://github.com/cms-sw/cmssw/blob/master/DataFormats/TrackReco/interface/HitPattern.h //get track associated to a jet constituent @@ -657,13 +689,6 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co if(p.getLayer(hit)==9) Cpfcan_nhitstripTECLayer9 = Cpfcan_nhitstripTECLayer9+1; } } - //// expert level: printout the hit in 11-bit binary format - //std::cout << "hit in 11-bit binary format = "; - //for (int j = 10; j >= 0; j--){ - // int bit = (hit >> j) & 0x1; - // std::cout << bit; - //} - //std::cout << std::endl; } //Pixel Barrel Cpfcan_nhitpixelBarrelLayer1_[fillntupleentry] = (track_ptr->hitPattern().numberOfValidPixelBarrelHits()) ? catchInfsAndBound(Cpfcan_nhitpixelBarrelLayer1,-1,0,100,0) : -1; @@ -823,29 +848,16 @@ bool ntuple_pfCands::fillBranches(const pat::Jet & jet, const size_t& jetidx, co Npfcan_deltaR_[fillntupleentry] = catchInfsAndBound(reco::deltaR(*PackedCandidate_,jet),0,-0.6,0,-0.6); Npfcan_isGamma_[fillntupleentry] = 0; if(fabs(PackedCandidate_->pdgId())==22) Npfcan_isGamma_[fillntupleentry] = 1; - //Npfcan_CaloFrac_[fillntupleentry] = PackedCandidate_->caloFraction(); Npfcan_HadFrac_[fillntupleentry] = PackedCandidate_->hcalFraction(); Npfcan_pdgID_[fillntupleentry] = pdgid_; Npfcan_drminsv_[fillntupleentry] = catchInfsAndBound(drminpfcandsv_,0,-0.4,0,-0.4); } - - } // end loop over jet.numberOfDaughters() - - /* - std::cout <<"numbers charged/neutrals"<pdgId())==pdgid) return true; + for(size_t i=0;i< pruned_part->numberOfMothers();i++){ + if (containParton(pruned_part->mother(i), pdgid)) return true; + } + return false; +} From 398bb2e883d1640f2c61a68fe3bc267ee3710345 Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Tue, 20 Jun 2023 11:44:41 +0200 Subject: [PATCH 19/21] Add gen 2 track pair distance for auxiliary training --- DeepNtuplizer/src/ntuple_pairwise.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/DeepNtuplizer/src/ntuple_pairwise.cc b/DeepNtuplizer/src/ntuple_pairwise.cc index 6610b1b76bf..72ddb663f6f 100644 --- a/DeepNtuplizer/src/ntuple_pairwise.cc +++ b/DeepNtuplizer/src/ntuple_pairwise.cc @@ -105,6 +105,8 @@ void ntuple_pairwise::initBranches(TTree* tree){ addBranch(tree,"pair_pca_jetAxis_dEta", &pair_pca_jetAxis_dEta_,"pair_pca_jetAxis_dEta_[n_Cpfpairs_]/F"); addBranch(tree,"pair_pca_jetAxis_dPhi", &pair_pca_jetAxis_dPhi_,"pair_pca_jetAxis_dPhi_[n_Cpfpairs_]/F"); + addBranch(tree,"pfcand_dist_vtx_12", &pfcand_dist_vtx_12_,"pfcand_dist_vtx_12_[n_Cpfpairs_]/F"); + } void ntuple_pairwise::readEvent(const edm::Event& iEvent){ @@ -180,6 +182,10 @@ bool ntuple_pairwise::fillBranches(const pat::Jet & jet, const size_t& jetidx, c trkpairinfo.buildTrackPairInfo(it,tt,vertices()->at(0),jet); + const reco::Candidate * pruned_part_match1 = Part_i_.lastPrunedRef().get(); + const reco::Candidate * pruned_part_match2 = Part_j_.lastPrunedRef().get(); + float dist_vtx_12 = sqrt((pruned_part_match1->vertex()- pruned_part_match2->vertex()).mag2()); + pair_pca_distance_[counter] = trkpairinfo.pca_distance(); pair_pca_significance_[counter] = trkpairinfo.pca_significance(); @@ -214,6 +220,8 @@ bool ntuple_pairwise::fillBranches(const pat::Jet & jet, const size_t& jetidx, c pair_pca_jetAxis_dotprod_[counter] = trkpairinfo.pca_jetAxis_dotprod(); pair_pca_jetAxis_dEta_[counter] = trkpairinfo.pca_jetAxis_dEta(); pair_pca_jetAxis_dPhi_[counter] = trkpairinfo.pca_jetAxis_dPhi(); + + pfcand_dist_vtx_12_[counter] = dist_vtx_12; counter++; } From 631070f1322e480d029e34a808db2c8355e5bd2b Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Tue, 20 Jun 2023 11:45:24 +0200 Subject: [PATCH 20/21] Add pairwise aux training --- DeepNtuplizer/interface/ntuple_pairwise.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DeepNtuplizer/interface/ntuple_pairwise.h b/DeepNtuplizer/interface/ntuple_pairwise.h index 891c9183251..522c5d78ce7 100644 --- a/DeepNtuplizer/interface/ntuple_pairwise.h +++ b/DeepNtuplizer/interface/ntuple_pairwise.h @@ -79,6 +79,8 @@ class ntuple_pairwise: public ntuple_content{ float pair_pca_jetAxis_dEta_[max_pfcand_]; float pair_pca_jetAxis_dPhi_[max_pfcand_]; + float pfcand_dist_vtx_12_[max_pfcand_]; + float mindrsvpfcand(const pat::PackedCandidate* pfcand); }; From 801a86981dc0f64bf326e4be7b9abbc52e1f952f Mon Sep 17 00:00:00 2001 From: Alexandre De Moor <70885737+AlexDeMoor@users.noreply.github.com> Date: Thu, 2 Nov 2023 09:01:09 +0100 Subject: [PATCH 21/21] Update ntuple_pairwise.cc remove not working secondary target atm --- DeepNtuplizer/src/ntuple_pairwise.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DeepNtuplizer/src/ntuple_pairwise.cc b/DeepNtuplizer/src/ntuple_pairwise.cc index 72ddb663f6f..beb2f68ba87 100644 --- a/DeepNtuplizer/src/ntuple_pairwise.cc +++ b/DeepNtuplizer/src/ntuple_pairwise.cc @@ -182,10 +182,10 @@ bool ntuple_pairwise::fillBranches(const pat::Jet & jet, const size_t& jetidx, c trkpairinfo.buildTrackPairInfo(it,tt,vertices()->at(0),jet); - const reco::Candidate * pruned_part_match1 = Part_i_.lastPrunedRef().get(); - const reco::Candidate * pruned_part_match2 = Part_j_.lastPrunedRef().get(); - float dist_vtx_12 = sqrt((pruned_part_match1->vertex()- pruned_part_match2->vertex()).mag2()); - + //const reco::Candidate * pruned_part_match1 = Part_i_.lastPrunedRef().get(); + //const reco::Candidate * pruned_part_match2 = Part_j_.lastPrunedRef().get(); + float dist_vtx_12 = -1.0; //sqrt((pruned_part_match1->vertex()- pruned_part_match2->vertex()).mag2()); + pair_pca_distance_[counter] = trkpairinfo.pca_distance(); pair_pca_significance_[counter] = trkpairinfo.pca_significance();